-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
edit_categories.php
370 lines (315 loc) · 17.4 KB
/
edit_categories.php
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
<?php
/*
part-db version 0.1
Copyright (C) 2005 Christoph Lechner
http://www.cl-projects.de/
part-db version 0.2+
Copyright (C) 2009 K. Jacobs and others (see authors.php)
http://code.google.com/p/part-db/
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.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
/*
* Please note:
* The files "edit_categories.php", "edit_footprints.php", "edit_manufacturers.php",
* "edit_suppliers.php", "edit_devices.php", "edit_storelocations.php" and "edit_filetypes.php"
* are quite similar.
* If you make changes in one of them, please check if you should change the other files too.
*/
include_once __DIR__ . '/start_session.php';
use PartDB\Category;
use PartDB\Database;
use PartDB\HTML;
use PartDB\Log;
use PartDB\PartProperty\PartNameRegEx;
use PartDB\Permissions\PermissionManager;
use PartDB\Permissions\StructuralPermission;
use PartDB\User;
$messages = array();
$fatal_error = false; // if a fatal error occurs, only the $messages will be printed, but not the site content
/********************************************************************************
*
* Evaluate $_REQUEST
*
* Notes:
* - "$selected_id == 0" means that we will show the form for creating a new category
* - the $new_* variables contains the new values after editing an existing
* or creating a new category
*
*********************************************************************************/
$selected_id = isset($_REQUEST['selected_id']) ? (int)$_REQUEST['selected_id'] : 0;
$new_name = isset($_POST['name']) ? (string)$_POST['name'] : '';
$new_parent_id = isset($_POST['parent_id']) ? (int)$_POST['parent_id'] : 0;
$new_disable_footprints = isset($_POST['disable_footprints']);
$new_disable_manufacturers = isset($_POST['disable_manufacturers']);
$new_disable_autodatasheets = isset($_POST['disable_autodatasheets']);
$new_disable_properties = isset($_POST['disable_properties']);
$add_more = isset($_POST['add_more']);
$new_default_description = isset($_POST['default_description']) ? (string)$_POST['default_description'] : '';
$new_default_comment = isset($_POST['default_comment']) ? (string)$_POST['default_comment'] : '';
$new_partname_regex = isset($_POST['partname_regex']) ? (string)$_POST['partname_regex'] : '';
$new_partname_hint = isset($_POST['partname_hint']) ? (string)$_POST['partname_hint'] : '';
$new_comment = isset($_POST['comment']) ? (string)$_POST['comment'] : '';
$action = 'default';
if (isset($_POST['add'])) {
$action = 'add';
}
if (isset($_POST['delete'])) {
$action = 'delete';
}
if (isset($_POST['delete_confirmed'])) {
$action = 'delete_confirmed';
}
if (isset($_POST['apply'])) {
$action = 'apply';
}
/********************************************************************************
*
* Initialize Objects
*
*********************************************************************************/
$html = new HTML($config['html']['theme'], $user_config['theme'], _('Kategorien'));
try {
$database = new Database();
$log = new Log($database);
$current_user = User::getLoggedInUser($database, $log);
$root_category = Category::getInstance($database, $current_user, $log, 0);
$current_user->tryDo(PermissionManager::CATEGORIES, StructuralPermission::READ);
if ($selected_id > 0) {
$selected_category = Category::getInstance($database, $current_user, $log, $selected_id);
} else {
$selected_category = null;
}
} catch (Exception $e) {
$messages[] = array('text' => nl2br($e->getMessage()), 'strong' => true, 'color' => 'red');
$fatal_error = true;
}
/********************************************************************************
*
* Execute actions
*
*********************************************************************************/
if (! $fatal_error) {
switch ($action) {
case 'add':
try {
$new_category = Category::add(
$database,
$current_user,
$log,
$new_name,
$new_parent_id,
$new_disable_footprints,
$new_disable_manufacturers,
$new_disable_autodatasheets,
$new_disable_properties,
$new_default_description,
$new_default_comment,
$new_comment
);
$new_category->setPartnameRegex($new_partname_regex);
$new_category->setPartnameHint($new_partname_hint);
$html->setVariable('refresh_navigation_frame', true, 'boolean');
if (! $add_more) {
$selected_category = $new_category;
$selected_id = $selected_category->getID();
}
} catch (Exception $e) {
$messages[] = array('text' => _('Die neue Kategorie konnte nicht angelegt werden!'), 'strong' => true, 'color' => 'red');
$messages[] = array('text' => _('Fehlermeldung: ').nl2br($e->getMessage()), 'color' => 'red');
}
break;
case 'delete':
try {
if (! is_object($selected_category)) {
throw new Exception(_('Es ist keine Kategorie markiert oder es trat ein Fehler auf!'));
}
$parts = $selected_category->getParts();
$count = count($parts);
if ($count > 0) {
$messages[] = array('text' => sprintf(_('Es gibt noch %d Bauteile in dieser Kategorie, '.
'daher kann die Kategorie nicht gelöscht werden.'), $count), 'strong' => true, 'color' => 'red');
} else {
$messages[] = array('text' => sprintf(_('Soll die Kategorie "%s'.
'" wirklich unwiederruflich gelöscht werden?'), $selected_category->getFullPath()), 'strong' => true, 'color' => 'red');
$messages[] = array('text' => '<br>'._('Hinweise:'), 'strong' => true);
$messages[] = array('text' => ' • '._('Es gibt keine Bauteile in dieser Kategorie.'));
$messages[] = array('text' => ' • '._('Beinhaltet diese Kategorie noch Unterkategorien, dann werden diese eine Ebene nach oben verschoben.'));
$messages[] = array('html' => '<input type="hidden" name="selected_id" value="'.$selected_category->getID().'">');
$messages[] = array('html' => '<input class="btn btn-secondary" type="submit" name="" value="'._('Nein, nicht löschen').'">', 'no_linebreak' => true);
$messages[] = array('html' => '<input class="btn btn-danger" type="submit" name="delete_confirmed" value="'._('Ja, Kategorie löschen').'">');
}
} catch (Exception $e) {
$messages[] = array('text' => _('Es trat ein Fehler auf!'), 'strong' => true, 'color' => 'red');
$messages[] = array('text' => _('Fehlermeldung: ').nl2br($e->getMessage()), 'color' => 'red');
}
break;
case 'delete_confirmed':
try {
if (! is_object($selected_category)) {
throw new Exception(_('Es ist keine Kategorie markiert oder es trat ein Fehler auf!'));
}
$selected_category->delete();
$selected_category = null;
$html->setVariable('refresh_navigation_frame', true, 'boolean');
} catch (Exception $e) {
$messages[] = array('text' => _('Die Kategorie konnte nicht gelöscht werden!'), 'strong' => true, 'color' => 'red');
$messages[] = array('text' => _('Fehlermeldung: ').nl2br($e->getMessage()), 'color' => 'red');
}
break;
case 'apply':
try {
if (! is_object($selected_category)) {
throw new Exception(_('Es ist keine Kategorie markiert oder es trat ein Fehler auf!'));
}
$selected_category->setAttributes(array('name' => $new_name,
'parent_id' => $new_parent_id,
'disable_footprints' => $new_disable_footprints,
'disable_manufacturers' => $new_disable_manufacturers,
'disable_autodatasheets' => $new_disable_autodatasheets,
'disable_properties' => $new_disable_properties,
'default_description' => $new_default_description,
'default_comment' => $new_default_comment,
'partname_regex' => $new_partname_regex,
'partname_hint' => $new_partname_hint,
'comment' => $new_comment));
$html->setVariable('refresh_navigation_frame', true, 'boolean');
} catch (Exception $e) {
$messages[] = array('text' => _('Die neuen Werte konnten nicht gespeichert werden!'), 'strong' => true, 'color' => 'red');
$messages[] = array('text' => _('Fehlermeldung: ').nl2br($e->getMessage()), 'color' => 'red');
}
break;
}
}
/********************************************************************************
*
* Set the rest of the HTML variables
*
*********************************************************************************/
$html->setVariable('add_more', $add_more, 'boolean');
if (! $fatal_error) {
try {
if (is_object($selected_category)) {
$parent_id = $selected_category->getParentID();
$html->setVariable('id', $selected_category->getID(), 'integer');
$name = $selected_category->getName();
//Default description/comment fields
$default_description = $selected_category->getDefaultDescription(false);
$default_comment = $selected_category->getDefaultComment(false);
$default_description_parent = $selected_category->getDefaultDescription(true);
$default_comment_parent = $selected_category->getDefaultComment(true);
$html->setVariable('default_description_parent', $default_description_parent, 'string');
$html->setVariable('default_comment_parent', $default_comment_parent, 'string');
//Partname fields
$partname_regex = $selected_category->getPartnameRegexRaw(false, true);
$partname_hint = $selected_category->getPartnameHint(false);
$partname_regex_parent = $selected_category->getPartnameRegexRaw(true);
$partname_hint_parent = $selected_category->getPartnameHint(true);
$html->setVariable('partname_regex_parent', $partname_regex_parent, 'string');
$html->setVariable('partname_hint_parent', $partname_hint_parent, 'string');
$comment = $selected_category->getComment(false);
$html->setVariable('datetime_added', $selected_category->getDatetimeAdded(true));
$html->setVariable('last_modified', $selected_category->getLastModified(true));
$last_modified_user = $selected_category->getLastModifiedUser();
$creation_user = $selected_category->getCreationUser();
if ($last_modified_user != null) {
$html->setVariable('last_modified_user', $last_modified_user->getFullName(true), 'string');
$html->setVariable('last_modified_user_id', $last_modified_user->getID(), 'int');
}
if ($creation_user != null) {
$html->setVariable('creation_user', $creation_user->getFullName(true), 'string');
$html->setVariable('creation_user_id', $creation_user->getID(), 'int');
}
//Disable fields
$disable_footprints = $selected_category->getDisableFootprints(true);
$disable_manufacturers = $selected_category->getDisableManufacturers(true);
$disable_autodatasheets = $selected_category->getDisableAutodatasheets(true);
$disable_properties = $selected_category->getDisableProperties(true);
$html->setVariable('parent_disable_footprints', $selected_category->getDisableFootprints(true)
&& (! $selected_category->getDisableFootprints(false)), 'boolean');
$html->setVariable('parent_disable_manufacturers', $selected_category->getDisableManufacturers(true)
&& (! $selected_category->getDisableManufacturers(false)), 'boolean');
$html->setVariable('parent_disable_autodatasheets', $selected_category->getDisableAutodatasheets(true)
&& (! $selected_category->getDisableAutodatasheets(false)), 'boolean');
$html->setVariable('parent_disable_properties', $selected_category->getDisableProperties(true)
&& (! $selected_category->getDisableProperties(false)), 'boolean');
} elseif ($action == 'add') {
$parent_id = $new_parent_id;
$name = $new_name;
$disable_footprints = $new_disable_footprints;
$disable_manufacturers = $new_disable_manufacturers;
$disable_autodatasheets = $new_disable_autodatasheets;
$disable_properties = $new_disable_properties;
$default_description = $new_default_description;
$default_comment = $new_default_comment;
$partname_regex = $new_partname_regex;
$partname_hint = $new_partname_hint;
$comment = $new_comment;
} else {
$parent_id = 0;
$name = '';
$disable_footprints = false;
$disable_manufacturers = false;
$disable_autodatasheets = false;
$disable_properties = false;
$default_description = '';
$default_comment = '';
$partname_hint = '';
$partname_regex = '';
$comment = '';
}
$html->setVariable('name', $name, 'string');
$html->setVariable('disable_footprints', $disable_footprints, 'boolean');
$html->setVariable('disable_manufacturers', $disable_manufacturers, 'boolean');
$html->setVariable('disable_autodatasheets', $disable_autodatasheets, 'boolean');
$html->setVariable('disable_properties', $disable_properties, 'boolean');
$html->setVariable('default_description', $default_description, 'string');
$html->setVariable('default_comment', $default_comment, 'string');
$html->setVariable('partname_regex', $partname_regex, 'string');
$html->setVariable('partname_hint', $partname_hint, 'string');
$html->setVariable('partname_input_pattern', PartNameRegEx::getPattern(true), 'string');
$html->setVariable('comment', $comment, 'string');
$category_list = $root_category->buildHtmlTree($selected_id, true, false);
$html->setVariable('category_list', $category_list, 'string');
$parent_category_list = $root_category->buildHtmlTree($parent_id, true, true);
$html->setVariable('parent_category_list', $parent_category_list, 'string');
} catch (Exception $e) {
$messages[] = array('text' => nl2br($e->getMessage()), 'strong' => true, 'color' => 'red');
$fatal_error = true;
}
}
try {
$html->setVariable('can_delete', $current_user->canDo(PermissionManager::CATEGORIES, StructuralPermission::DELETE));
$html->setVariable('can_edit', $current_user->canDo(PermissionManager::CATEGORIES, StructuralPermission::EDIT));
$html->setVariable('can_create', $current_user->canDo(PermissionManager::CATEGORIES, StructuralPermission::CREATE));
$html->setVariable('can_move', $current_user->canDo(PermissionManager::CATEGORIES, StructuralPermission::MOVE));
$html->setVariable('can_read', $current_user->canDo(PermissionManager::CATEGORIES, StructuralPermission::READ));
$html->setVariable('can_visit_user', $current_user->canDo(PermissionManager::USERS, \PartDB\Permissions\UserPermission::READ));
} catch (Exception $e) {
$messages[] = array('text' => nl2br($e->getMessage()), 'strong' => true, 'color' => 'red');
$fatal_error = true;
}
/********************************************************************************
*
* Generate HTML Output
*
*********************************************************************************/
//If a ajax version is requested, say this the template engine.
if (isset($_REQUEST['ajax'])) {
$html->setVariable('ajax_request', true);
}
$reload_link = $fatal_error ? 'edit_categories.php' : ''; // an empty string means that the...
$html->printHeader($messages, $reload_link); // ...reload-button won't be visible
if (! $fatal_error) {
$html->printTemplate('edit_categories');
}
$html->printFooter();