forked from craigrodway/printmaster
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprinters.php
234 lines (157 loc) · 5.36 KB
/
printers.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
<?php
/*
Copyright (C) 2010 Craig A Rodway.
This file is part of Print Master.
Print Master 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 3 of the License, or
(at your option) any later version.
Print Master 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 Print Master. If not, see <http://www.gnu.org/licenses/>.
*/
// Include initialisation file
include_once('inc/core.php');
// Get action from query string
$action = fRequest::getValid('action', array('list', 'add', 'edit', 'delete'));
$model_id = fRequest::get('model_id', 'integer');
/**
* Default action - show list of printers
*/
if ($action == 'list') {
// Set the users to be sortable by name or email, defaulting to name
$sort = fCRUD::getSortColumn(array(
'printers.name', 'models.name', 'printers.ipaddress',
'printers.server', 'printers.location', 'models.colour'
));
// Set the sorting to default to ascending
$dir = fCRUD::getSortDirection('asc');
// Redirect the user if one of the values was loaded from the session
fCRUD::redirectWithLoadedValues();
// Filter
$where = NULL;
if ($model_id)
{
// Filter by model ID
$where = ' AND printers.model_id = %i ';
}
// Get recordset object from tables
$sql = "SELECT
printers.*,
manufacturers.name AS mfr_name,
models.name AS model_name,
models.colour,
GROUP_CONCAT(CAST(CONCAT(manufacturers.name, ' ', models.name) AS CHAR) SEPARATOR ', ') AS model,
(
SELECT SUM(qty) FROM consumables
LEFT JOIN consumables_models ON consumables.id = consumables_models.consumable_id
WHERE consumables_models.model_id = printers.model_id
) AS stock
FROM printers
LEFT JOIN models ON printers.model_id = models.id
LEFT JOIN manufacturers ON models.manufacturer_id = manufacturers.id
WHERE 1 = 1
$where
GROUP BY printers.id
ORDER BY $sort $dir";
$printers = $db->query($sql, $model_id)->asObjects();
#$consumables = fRecordSet::build('Consumable', NULL, array($sort => $dir));
#$models = fRecordSet::build('Model', NULL, array('name' => 'asc'));
#$models->precreateManufacturers();
// Include page to show table
include 'views/printers/index.php';
}
/**
* Add a new printer
*/
if ($action == 'add') {
// Create new
$p = new Printer();
// Try to get form values and save object if requested via POST method
if (fRequest::isPost()) {
try{
// Populate and save printer object from form values
$p->populate();
$p->store();
// Set status message
fMessaging::create('affected', fURL::get(), $p->getName());
fMessaging::create('success', fURL::get(), 'The printer ' . $p->getName() . ' was successfully added.');
// Redirect
$next = fRequest::getValid('next', array('index', 'add'));
if ($next === 'index')
{
fURL::redirect(fURL::get());
}
elseif ($next === 'add')
{
fURL::redirect(fURL::get() . '?action=add');
}
} catch (fValidationException $e) {
fMessaging::create('error', fURL::get(), $e->getMessage());
} catch(fExpectedException $e) {
fMessaging::create('error', fURL::get(), $e->getMessage());
}
}
// Get manufacturers also for drop-down box
#$manufacturers = fRecordSet::build('Manufacturer', NULL, array('name' => 'asc'));
// Get list of models
$models = Model::getSimple($db);
include 'views/printers/addedit.php';
}
/**
* Edit a printer
*/
if ($action == 'edit') {
// Get ID
$id = fRequest::get('id', 'integer');
try {
// Get consumable via ID
$p = new Printer($id);
if (fRequest::isPost()) {
// Update printer object from POST data and save
$p->populate();
$p->store();
// Messaging
fMessaging::create('affected', fURL::get(), $p->getId());
fMessaging::create('success', fURL::get(), 'The printer ' . $p->getName() . ' was successfully updated.');
fURL::redirect(fURL::get());
}
} catch (fNotFoundException $e) {
fMessaging::create('error', fURL::get(), 'The consumable requested, ID ' . $id . ', could not be found.');
fURL::redirect(fURL::get());
} catch (fExpectedException $e) {
fMessaging::create('error', fURL::get(), $e->getMessage());
}
// Get manufacturers also for drop-down box
#$manufacturers = fRecordSet::build('Manufacturer', NULL, array('name' => 'asc'));
// Get list of models
$models = Model::getSimple($db);
include 'views/printers/addedit.php';
}
/**
* Delete a printer
*/
if($action == 'delete'){
// Get ID
$id = fRequest::get('id', 'integer');
try {
$p = new Printer($id);
if (fRequest::isPost()) {
$p->delete();
fMessaging::create('success', fURL::get(), 'The printer ' . $p->getName() . ' was successfully deleted.');
fURL::redirect(fURL::get());
}
} catch(fNotFoundException $e) {
fMessaging::create('error', fURL::get(), 'The printer requested, ID ' . $id . ', could not be found.');
fURL::redirect($manage_url);
} catch(fExpectedException $e) {
fMessaging::create('error', fURL::get(), $e->getMessage());
} catch(fSQLException $e) {
fMessaging::create('error', fURL::get(), 'Database error: ' . $e->getMessage());
}
include 'views/printers/delete.php';
}
?>