1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
|
<?php
/**
* category.php - contains Resources_CategoryController
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* @author Moritz Strohm <strohm@data-quest.de>
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
* @copyright 2017
* @category Stud.IP
* @since 4.1
*/
/**
* Resources_CategoryController contains actions for resource categories.
*/
class Resources_CategoryController extends AuthenticatedController
{
protected $_autobind = true;
public function before_filter(&$action, &$args)
{
parent::before_filter($action, $args);
if (!ResourceManager::userHasGlobalPermission(User::findCurrent(), 'admin')) {
throw new AccessDeniedException();
}
}
public function index_action($category_id = '')
{
$this->category = ResourceCategory::find($category_id);
}
public function details_action(ResourceCategory $category)
{
PageLayout::setTitle(_('Details anzeigen'));
}
public function add_action()
{
//These three variables are needed in the _add_edit_form template:
$this->mode = 'add';
$this->previously_set_properties = [];
$this->show_form = false;
$this->set_properties = [];
$this->name = '';
$this->description = '';
$this->class_name = '';
$this->iconnr = '';
$this->class_names = ResourceManager::getAllResourceClassNames();
$this->available_properties = ResourcePropertyDefinition::findBySql(
'TRUE ORDER BY name ASC'
);
//Load the properties:
if (!empty($this->category->property_links)) {
foreach ($this->category->property_links as $link) {
//We want to make sure that only properties that are
//defined are displayed.
if ($link->definition) {
$this->previously_set_properties[$link->definition->id] = [
'id' => $link->definition->id,
'name' => $link->definition->__toString(),
'system' => $link->system,
'requestable' => $link->requestable,
'protected' => $link->protected
];
}
}
}
$this->show_form = true;
if (Request::submitted('confirmed')) {
CSRFProtection::verifyUnsafeRequest();
//Process submitted form:
$this->name = Request::get('name');
$this->description = Request::get('description');
$this->class_name = Request::get('class_name');
$this->iconnr = Request::int('iconnr');
$set_properties = Request::getArray('prop');
$properties_requestable = Request::getArray('prop_requestable');
$properties_protected = Request::getArray('prop_protected');
foreach (array_keys($set_properties) as $key) {
$this->set_properties[$key] = [
'id' => $key,
'requestable' => $properties_requestable[$key],
'protected' => $properties_protected[$key]
];
}
//validation:
if (!$this->name) {
PageLayout::postError(
_('Der Name der Kategorie ist leer!')
);
return;
}
if (!is_a($this->class_name, 'Resource', true)) {
PageLayout::postError(
_('Es wurde keine gültige Ressourcen-Datenklasse ausgewählt!')
);
return;
}
if ($this->category->system) {
//Special validation rules for system categories:
if ($this->class_name != $this->category->class_name) {
PageLayout::postError(
_('Der Klassenname darf bei Systemkategorien nicht geändert werden!')
);
return;
}
//Check if one of the system properties has been deleted:
$system_properties = ResourcePropertyDefinition::findBySql(
"INNER JOIN resource_category_properties rcp
USING (property_id)
WHERE category_id = :category_id
AND rcp.`system` = '1'",
[
'category_id' => $this->category->id
]
);
if ($system_properties) {
$removed_system_property_names = [];
foreach ($system_properties as $property) {
if (!in_array($property->id, array_keys($set_properties))) {
$removed_system_property_names[] = $property->name;
}
}
if ($removed_system_property_names) {
asort($removed_system_property_names);
PageLayout::postError(
_('Die folgenden Systemeigenschaften sind zwingend erforderlich und können nicht entfernt werden:'),
$removed_system_property_names
);
return;
}
}
}
$this->category = null;
switch ($this->class_name) {
case 'Location':
$this->category = ResourceManager::createLocationCategory(
$this->name,
$this->description
);
break;
case 'Building':
$this->category = ResourceManager::createBuildingCategory(
$this->name,
$this->description
);
break;
case 'Room':
$this->category = ResourceManager::createRoomCategory(
$this->name,
$this->description
);
break;
default:
$this->category = ResourceManager::createCategory(
$this->name,
$this->description,
$this->class_name,
false,
$this->iconnr
);
}
if ($this->category instanceof ResourceCategory) {
//Now we store all optional properties:
foreach ($this->set_properties as $set_property) {
$property = ResourcePropertyDefinition::find(
$set_property['id']
);
if ($property) {
$this->category->addProperty(
$property->name,
$property->type,
$set_property['requestable'],
$set_property['protected']
);
}
}
$this->show_form = false;
PageLayout::postSuccess(_('Die Kategorie wurde gespeichert!'));
} else {
PageLayout::postError(_('Fehler beim Speichern der Kategorie!'));
}
}
}
public function edit_action($category_id = null)
{
//These three variables are needed in the _add_edit_form template:
$this->mode = 'edit';
$this->previously_set_properties = [];
$this->show_form = false;
$this->set_properties = [];
$this->category = ResourceCategory::find($category_id);
if (!$this->category) {
PageLayout::postError(
_('Die angegebene Kategorie wurde nicht gefunden!')
);
return;
}
$this->class_names = ResourceManager::getAllResourceClassNames();
$this->available_properties = ResourcePropertyDefinition::findBySql(
'TRUE ORDER BY name ASC'
);
//Load the properties:
if ($this->category->property_links) {
foreach ($this->category->property_links as $link) {
//We want to make sure that only properties that are
//defined are displayed.
if ($link->definition) {
$this->previously_set_properties[$link->definition->id] = [
'id' => $link->definition->id,
'name' => $link->definition->__toString(),
'system' => $link->system,
'requestable' => $link->requestable,
'protected' => $link->protected
];
}
}
}
$this->show_form = true;
if (Request::submitted('confirmed')) {
CSRFProtection::verifyUnsafeRequest();
//Process submitted form:
$this->name = Request::get('name');
$this->description = Request::get('description');
$this->class_name = Request::get('class_name');
$this->iconnr = Request::int('iconnr');
$set_properties = Request::getArray('prop');
$properties_requestable = Request::getArray('prop_requestable');
$properties_protected = Request::getArray('prop_protected');
foreach (array_keys($set_properties) as $key) {
$this->set_properties[$key] = [
'id' => $key,
'requestable' => $properties_requestable[$key] ?? false,
'protected' => $properties_protected[$key] ?? false
];
}
//validation:
if (!$this->name) {
PageLayout::postError(
_('Der Name der Kategorie ist leer!')
);
return;
}
if (!is_a($this->class_name, 'Resource', true)) {
PageLayout::postError(
_('Es wurde keine gültige Ressourcen-Datenklasse ausgewählt!')
);
return;
}
if ($this->category->system) {
//Special validation rules for system categories:
if ($this->class_name != $this->category->class_name) {
PageLayout::postError(
_('Der Klassenname darf bei Systemkategorien nicht geändert werden!')
);
return;
}
//Check if one of the system properties has been deleted:
$system_properties = ResourcePropertyDefinition::findBySql(
"INNER JOIN resource_category_properties rcp
USING (property_id)
WHERE category_id = :category_id
AND rcp.`system` = '1'",
[
'category_id' => $this->category->id
]
);
if ($system_properties) {
$removed_system_property_names = [];
foreach ($system_properties as $property) {
if (!in_array($property->id, array_keys($set_properties))) {
$removed_system_property_names[] = $property->name;
}
}
if ($removed_system_property_names) {
asort($removed_system_property_names);
PageLayout::postError(
_('Die folgenden Systemeigenschaften sind zwingend erforderlich und können nicht entfernt werden:'),
$removed_system_property_names
);
return;
}
}
}
$this->category->name = $this->name;
$this->category->description = $this->description;
$this->category->class_name = $this->class_name;
$this->category->iconnr = $this->iconnr;
if ($this->category->isDirty()) {
$successfully_stored = $this->category->store();
} else {
$successfully_stored = true;
}
if ($successfully_stored) {
//After we have stored the category we must store
//the properties or create them, if necessary.
//First we store all set properties, if they are new
//or we modify existing properties:
foreach ($this->set_properties as $set_property) {
$property = ResourcePropertyDefinition::find(
$set_property['id']
);
if ($property) {
$this->category->addProperty(
$property->name,
$property->type,
$set_property['requestable'],
$set_property['protected']
);
}
}
//Now we must delete all properties which have not been
//set in the form but which may still be in the database:
if (count($this->set_properties)) {
ResourceCategoryProperty::deleteBySql(
'category_id = :category_id
AND property_id NOT IN ( :set_property_ids )',
[
'category_id' => $this->category->id,
'set_property_ids' => array_keys($this->set_properties)
]
);
} else {
ResourceCategoryProperty::deleteBySql(
'category_id = :category_id',
[
'category_id' => $this->category->id
]
);
}
$this->show_form = false;
PageLayout::postSuccess(_('Die Kategorie wurde gespeichert!'));
} else {
PageLayout::postError(_('Fehler beim Speichern der Kategorie!'));
}
}
//Show form with current data:
$this->name = $this->category->name;
$this->description = $this->category->description;
$this->class_name = $this->category->class_name;
$this->iconnr = $this->category->iconnr;
}
public function delete_action($category_id = null)
{
$this->show_form = false;
$this->alternative_categories = [];
$this->category_has_resources = false;
$this->resource_handling = 'reassign';
$this->category = ResourceCategory::find($category_id);
if (!$this->category) {
PageLayout::postError(
_('Die angegebene Kategorie wurde nicht gefunden!')
);
return;
}
if ($this->category->system) {
//The category is a system category.
//Such categories cannot be deleted!
PageLayout::postError(
_('Systemkategorien dürfen nicht gelöscht werden!')
);
return;
}
$this->alternative_categories = ResourceCategory::findBySql(
'class_name = :class_name
AND id <> :this_id
ORDER BY name ASC',
[
'class_name' => $this->category->class_name,
'this_id' => $this->category->id
]
);
//Check if there are resources attached to the category:
$this->category_has_resources = Resource::countByCategory_id($this->category->id) > 0;
if (!$this->alternative_categories && $this->category_has_resources) {
PageLayout::postError(
_('Die Kategorie darf nicht gelöscht werden, da es keine alternative Kategorie für die Ressourcenklasse gibt, der die Ressourcen dieser Kategorie zugewiesen werden könnten!')
);
return;
}
$this->show_form = true;
if (Request::submitted('confirmed')) {
CSRFProtection::verifyUnsafeRequest();
$this->resource_handling = Request::get('resource_handling');
$this->new_category_id = Request::get('new_category_id');
if ($this->resource_handling == 'delete') {
//All resources from this resource category shall be deleted:
Resource::deleteBySql(
'category_id = :category_id',
[
'category_id' => $this->category->id
]
);
} elseif ($this->resource_handling == 'reassign') {
//Check if the selected category is a valid one:
$new_category = ResourceCategory::find($this->new_category_id);
if (!$new_category instanceof ResourceCategory) {
PageLayout::postError(
_('Die gewählte Kategorie wurde nicht gefunden!')
);
return;
}
if ($new_category->class_name != $this->category->class_name) {
PageLayout::postError(
sprintf(
_('Die gewählte Kategorie gehört nicht zur Ressourcenklasse %1$s, sondern zur Klasse %2$s!'),
$this->category->class_name,
$new_category->class_name
)
);
return;
}
//Reassign the resources:
$db = DBManager::get();
$stmt = $db->prepare(
'UPDATE resources SET category_id = :new_category_id
WHERE category_id = :old_category_id'
);
$stmt->execute(
[
'new_category_id' => $new_category->id,
'old_category_id' => $this->category->id
]
);
} elseif ($this->category_has_resources) {
PageLayout::postError(
_('Es wurde keine Behandlung für die Ressourcen ausgewählt, die der zu löschenden Kategorie zugewiesen sind!')
);
return;
}
if ($this->category->delete()) {
$this->show_form = false;
PageLayout::postSuccess(_('Die Kategorie wurde gelöscht!'));
} else {
PageLayout::postError(_('Fehler beim Löschen der Kategorie!'));
}
}
}
public function show_resources_action($category_id = null)
{
$this->category = ResourceCategory::find($category_id);
if (!$this->category) {
PageLayout::postError(
_('Die angegebene Kategorie wurde nicht gefunden!')
);
return;
}
$this->resources = Resource::findBySql(
'category_id = :category_id
ORDER BY name, mkdate ASC',
[
'category_id' => $this->category->id
]
);
}
}
|