-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
show_category_parts.php
308 lines (254 loc) · 13.5 KB
/
show_category_parts.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
<?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
*/
include_once __DIR__ . '/start_session.php';
/** @noinspection PhpIncludeInspection */
include_once BASE.'/inc/lib.export.php';
use PartDB\Category;
use PartDB\Database;
use PartDB\Footprint;
use PartDB\HTML;
use PartDB\Log;
use PartDB\Manufacturer;
use PartDB\Part;
use PartDB\Permissions\PartAttributePermission;
use PartDB\Permissions\PartPermission;
use PartDB\Permissions\PermissionManager;
use PartDB\Storelocation;
use PartDB\User;
$messages = array();
$fatal_error = false; // if a fatal error occurs, only the $messages will be printed, but not the site content
$starttime = microtime(true); // this is to measure the time while debugging is active
/********************************************************************************
*
* Evaluate $_REQUEST
*
*********************************************************************************/
$category_id = isset($_REQUEST['cid']) ? (int)$_REQUEST['cid'] : 0;
$with_subcategories = isset($_REQUEST['subcat']) ? (bool)$_REQUEST['subcat'] : $config['table']['default_show_subcategories'];
$table_rowcount = isset($_REQUEST['table_rowcount']) ? (int)$_REQUEST['table_rowcount'] : 0;
$page = isset($_REQUEST['page']) ? (int)$_REQUEST['page'] : 1;
$limit = isset($_REQUEST['limit']) ? (int)$_REQUEST['limit'] : $config['table']['default_limit'];
$export_format_id = isset($_REQUEST['export_format']) ? (int)$_REQUEST['export_format'] : 0;
$action = 'default';
if (isset($_REQUEST['subcat_button'])) {
$action = 'change_subcat_state';
} elseif (isset($_REQUEST['export'])) {
$action = 'export';
} elseif (isset($_POST['multi_action'])) {
$action = 'multi_action';
}
$selected_part_id = 0;
for ($i=0; $i<$table_rowcount; $i++) {
$selected_part_id = isset($_POST['id_'.$i]) ? (int)$_POST['id_'.$i] : 0;
if (isset($_POST['decrement_'.$i])) {
$action = 'decrement';
break;
}
if (isset($_POST['increment_'.$i])) {
$action = 'increment';
break;
}
}
/********************************************************************************
*
* Initialize Objects
*
*********************************************************************************/
$html = new HTML($config['html']['theme'], $user_config['theme'], _('Teileansicht'));
try {
$database = new Database();
$log = new Log($database);
$current_user = User::getLoggedInUser($database, $log);
if ($category_id < 1) {
throw new Exception(_('Es wurde keine gültige Kategorien-ID übermittelt!'));
}
$category = Category::getInstance($database, $current_user, $log, $category_id);
if ($selected_part_id > 0) {
$part = Part::getInstance($database, $current_user, $log, $selected_part_id);
} else {
$part = null;
}
$html->setTitle(_('Teileansicht') . ': ' . $category->getName());
//Remember what page user visited, so user can return there, when he deletes a part.
session_start();
$_SESSION['part_delete_last_link'] = $_SERVER['REQUEST_URI'];
session_write_close();
} catch (Exception $e) {
$messages[] = array('text' => nl2br($e->getMessage()), 'strong' => true, 'color' => 'red');
$fatal_error = true;
}
/********************************************************************************
*
* Execute actions
*
*********************************************************************************/
if (! $fatal_error) {
switch ($action) {
case 'change_subcat_state':
$reload_site = true;
break;
case 'decrement': // remove one part
try {
if (! is_object($part)) {
throw new Exception('Es wurde keine gültige Bauteil-ID übermittelt!');
}
$part->withdrawalParts(1);
$reload_site = true;
} catch (Exception $e) {
$messages[] = array('text' => nl2br($e->getMessage()), 'strong' => true, 'color' => 'red');
}
break;
case 'increment': // add one part
try {
if (! is_object($part)) {
throw new Exception(_('Es wurde keine gültige Bauteil-ID übermittelt!'));
}
$part->addParts(1);
$reload_site = true;
} catch (Exception $e) {
$messages[] = array('text' => nl2br($e->getMessage()), 'strong' => true, 'color' => 'red');
}
break;
case 'multi_action':
try {
if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete') {
$n = substr_count($_REQUEST['selected_ids'], ',') + 1;
$messages[] = array('text' => sprintf(_('Sollen die %d gewählten Bauteile wirklich unwiederruflich gelöscht werden?'), $n),
'strong' => true, 'color' => 'red');
$messages[] = array('text' => _('<br>Hinweise:'), 'strong' => true);
$messages[] = array('text' => _(' • Alle Dateien dieses Bauteiles bleiben weiterhin erhalten.'));
$messages[] = array('html' => '<input type="hidden" name="action" value="delete_confirmed">', 'no_linebreak' => true);
$messages[] = array('html' => '<input type="hidden" name="selected_ids" value="' . $_REQUEST['selected_ids'] . '">');
$messages[] = array('html' => '<input type="hidden" name="target" value="' . $_REQUEST['target'] . '">', 'no_linebreak' => true);
$messages[] = array('html' => '<button class="btn btn-secondary" type="submit" value="">' . _('Nein, nicht löschen') . '</button>', 'no_linebreak' => true);
$messages[] = array('html' => '<button class="btn btn-danger" type="submit" name="multi_action" value="">' . _('Ja, Bauteile löschen') . '</button>');
} else {
parsePartsSelection($database, $current_user, $log, $_REQUEST['selected_ids'], $_REQUEST['action'], $_REQUEST['target']);
}
} catch (Exception $e) {
$messages[] = array('text' => nl2br($e->getMessage()), 'strong' => true, 'color' => 'red');
}
break;
}
}
/*
if (isset($reload_site) && $reload_site && (! $config['debug']['request_debugging_enable'])) {
// reload the site to avoid multiple actions by manual refreshing
header('Location: show_category_parts.php?cid='.$category_id.'&subcat='.$with_subcategories);
}*/
/********************************************************************************
*
* Generate Table
*
*********************************************************************************/
if (! $fatal_error) {
try {
$parts = $category->getParts($with_subcategories, true, $limit, $page);
$table_loop = Part::buildTemplateTableArray($parts, 'category_parts');
$html->setVariable('table_rowcount', count($parts), 'integer');
$html->setVariable('table', $table_loop);
$html->setVariable('pagination', generatePagination("show_category_parts.php?cid=$category_id", $page, $limit, $category->getPartsCount($with_subcategories)));
$html->setVariable('page', $page);
$html->setVariable('limit', $limit);
$html->setVariable('breadcrumb', $category->buildBreadcrumbLoop('show_category_parts.php', 'cid', true, _('Kategorien')));
//Export Parts
if ($action == 'export') {
//When export then get all parts.
$parts = $category->getParts($with_subcategories, true, 0, 0);
$export_parts = $parts;
$export_string = exportParts($export_parts, 'showparts', $export_format_id, true, 'category_parts');
}
} catch (Exception $e) {
$messages[] = array('text' => nl2br($e->getMessage()), 'strong' => true, 'color' => 'red');
$fatal_error = true;
}
}
$php_endtime = microtime(true); // For Debug informations
/********************************************************************************
*
* Set the rest of the HTML variables
*
*********************************************************************************/
if (! $fatal_error) {
try {
$html->setVariable('with_subcategories', $with_subcategories, 'boolean');
$html->setVariable('cid', $category->getID(), 'integer');
$html->setVariable('category_name', $category->getName(), 'string');
$html->setVariable('category_fullpath', $category->getFullPath(' / '), 'string');
$html->setVariable('disable_footprints', $config['footprints']['disable'] || $category->getDisableFootprints(true), 'boolean');
$html->setVariable('disable_manufacturers', $config['manufacturers']['disable'] || $category->getDisableManufacturers(true), 'boolean');
$html->setVariable('disable_auto_datasheets', $config['auto_datasheets']['disable'] || $category->getDisableAutodatasheets(true), 'boolean');
$html->setVariable('export_formats', buildExportFormatsLoop('showparts'));
if ($current_user->canDo(PermissionManager::PARTS, PartPermission::MOVE)) {
$root_category = Category::getInstance($database, $current_user, $log, 0);
$html->setVariable('categories_list', $root_category->buildHtmlTree(0, true, false, '', 'c'));
}
if ($current_user->canDo(PermissionManager::PARTS_FOOTPRINT, PartAttributePermission::EDIT)) {
$root_footprint = Footprint::getInstance($database, $current_user, $log, 0);
$html->setVariable('footprints_list', $root_footprint->buildHtmlTree(0, true, false, '', 'f'));
}
if ($current_user->canDo(PermissionManager::PARTS_MANUFACTURER, PartAttributePermission::EDIT)) {
$root_manufacturer = Manufacturer::getInstance($database, $current_user, $log, 0);
$html->setVariable('manufacturers_list', $root_manufacturer->buildHtmlTree(0, true, false, '', 'm'));
}
if ($current_user->canDo(PermissionManager::PARTS_MANUFACTURER, PartAttributePermission::EDIT)) {
$root_location = Storelocation::getInstance($database, $current_user, $log, 0);
$html->setVariable('storelocations_list', $root_location->buildHtmlTree(0, true, false, '', 's'));
}
$html->setVariable('can_edit', $current_user->canDo(PermissionManager::PARTS, PartPermission::EDIT));
$html->setVariable('can_delete', $current_user->canDo(PermissionManager::PARTS, PartPermission::DELETE));
$html->setVariable('can_create', $current_user->canDo(PermissionManager::PARTS, PartPermission::CREATE));
$html->setVariable('can_favor', $current_user->canDo(PermissionManager::PARTS, PartPermission::CHANGE_FAVORITE));
$html->setVariable('other_panel_collapse', $config['other_panel']['collapsed'], 'boolean');
$html->setVariable('other_panel_position', $config['other_panel']['position'], 'string');
} 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 ? 'show_category_parts.php?cid='.$category_id : ''; // an empty string means that the...
$html->printHeader($messages, $reload_link); // ...reload-button won't be visible
if (! $fatal_error) {
$html->printTemplate('show_category_parts');
}
// If debugging is enabled, print some debug informations
$debug_messages = array();
if ((! $fatal_error) && $config['debug']['enable']) {
$endtime = microtime(true);
$lifetime = (1000*($endtime - $starttime));
$php_lifetime = (1000*($php_endtime - $starttime));
$html_lifetime = (1000*($endtime - $php_endtime));
$debug_messages[] = array('text' => 'Debug-Meldungen: ', 'strong' => true, 'color' => 'darkblue');
$debug_messages[] = array('text' => 'Anzahl Teile in dieser Kategorie: '. count($parts), 'color' => 'darkblue');
$debug_messages[] = array('text' => 'Gesamte Laufzeit: '.$lifetime.'ms', 'color' => 'darkblue');
$debug_messages[] = array('text' => 'PHP Laufzeit: '.$php_lifetime.'ms', 'color' => 'darkblue');
$debug_messages[] = array('text' => 'HTML Laufzeit: '.$html_lifetime.'ms', 'color' => 'darkblue');
}
$html->printFooter($debug_messages);