Commit | Line | Data |
---|---|---|
cdfce7c2 TM |
1 | <?php |
2 | /* | |
3 | * SkladovySystem - Storage management system compatible with LMS | |
78bf26a5 | 4 | * Copyright (C) 2011 Tomas Mudrunka |
cdfce7c2 TM |
5 | * |
6 | * This program is free software: you can redistribute it and/or modify | |
7 | * it under the terms of the GNU Affero General Public License as | |
8 | * published by the Free Software Foundation, either version 3 of the | |
9 | * License, or (at your option) any later version. | |
10 | * | |
11 | * This program is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | * GNU Affero General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Affero General Public License | |
17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
18 | */ | |
19 | ||
20 | require_once('sklad.conf.php'); | |
5f093236 TM |
21 | set_include_path(DIR_LIB.PATH_SEPARATOR.get_include_path()); |
22 | ||
63747dad | 23 | require_once('Sklad_Auth.class/common.php'); |
cdfce7c2 | 24 | require_once('HTTP_Auth.class.php'); |
326a9fc9 | 25 | require_once('Locale.class.php'); |
81ab8aef | 26 | require_once('Barcode.class.php'); |
958f1e84 | 27 | require_once('Fortune.php'); |
cdfce7c2 | 28 | |
0a027cc7 TM |
29 | /** |
30 | * Trida poskytuje vseobecne funkce pro generovani HTML kodu | |
31 | * | |
32 | * Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)! | |
33 | * | |
34 | * @package HTML | |
35 | * @author Tomas Mudrunka | |
36 | */ | |
37 | class HTML { | |
5a7b0bb6 | 38 | function row($row,$type=false,$class=false,$parameters='',$colspan=array(),$rowspan=array(),$break_after=array()) { |
933b760a | 39 | $html = ''; |
f6464b5c TM |
40 | $class_br = $class ? " class='$class' " : ''; |
41 | $class = $class ? " class='$class tr_nobr' " : ''; | |
933b760a | 42 | if($type) $html.="<$type>"; |
f6464b5c | 43 | $html.="<tr$class$parameters>"; |
933b760a | 44 | $td = $type == 'thead' ? 'th' : 'td'; |
842cb193 TM |
45 | foreach($row as $id => $var) { |
46 | $tdclass = " class='cell_$id'"; | |
0a027cc7 | 47 | if(trim($var) == '') $var = ' '; |
5a7b0bb6 TM |
48 | $rs = isset($rowspan[$id]) ? " rowspan='$rowspan[$id]'" : ''; |
49 | $cs = isset($colspan[$id]) ? " colspan='$colspan[$id]'" : ''; | |
50 | $html.="<$td$rs$cs$tdclass>$var</$td>"; | |
f6464b5c | 51 | if(in_array($id,$break_after,true)) $html.='</tr>'."<tr$class_br$parameters>"; |
0a027cc7 TM |
52 | } |
53 | $html.='</tr>'; | |
933b760a | 54 | if($type) $html.="</$type>"; |
0a027cc7 TM |
55 | return $html; |
56 | } | |
57 | ||
ba30732d | 58 | function table(&$table,$colspan=array(),$rowspan=array(),$break_after=array(),$parity_class=array('tr_odd','tr_even'),$params='border=1',$row_classes_field='_row_classes') { |
0a027cc7 TM |
59 | $html="<table $params>"; |
60 | $header=true; | |
1b9304b8 | 61 | $even=false; |
0a027cc7 | 62 | foreach($table as $row) { |
ba30732d TM |
63 | $params = isset($row[$row_classes_field]) ? $row[$row_classes_field] : ''; |
64 | unset($row[$row_classes_field]); | |
0a027cc7 | 65 | if($header) { |
5a7b0bb6 | 66 | $keys = array(); foreach($row as $key => $val) $keys[$key]=$key; |
ba30732d | 67 | $html.=$this->row(T($keys),'thead',false,'',$colspan,$rowspan,$break_after); |
0a027cc7 TM |
68 | $header=false; |
69 | } | |
1b9304b8 | 70 | $class = $parity_class ? $parity_class[$even] : false; |
ba30732d | 71 | $html.=$this->row($row,false,$class.$params,'',$colspan,$rowspan,$break_after); |
1b9304b8 | 72 | $even = !$even; |
0a027cc7 TM |
73 | } |
74 | $html.='</table>'; | |
75 | return $html; | |
76 | } | |
77 | ||
81ab8aef | 78 | function link($title='n/a', $link='#void', $internal=true, $translate=true) { |
35916247 | 79 | if($internal && (!isset($link[0]) || $link[0] != '#')) $link = $this->internal_url($link); |
81ab8aef TM |
80 | if($translate) $title = T($title); |
81 | return "<a href='$link'>".$title."</a>"; | |
0a027cc7 TM |
82 | } |
83 | ||
32e14fd3 | 84 | function img($src='#void', $title='img', $options='height=64') { |
e0f8e591 | 85 | if(isset($_GET['noimgs'])) return "<span title='$title'>".basename($src).'</span>'; |
81ab8aef TM |
86 | $options = $options ? " $options" : ''; |
87 | return "<img src='$src' alt='$title' title='$title'$options; />"; | |
0a027cc7 TM |
88 | } |
89 | ||
32e14fd3 | 90 | function img_link($src, $link='#void', $title='img_link', $internal=true, $translate=true, $options='height=64') { |
6f7943a0 TM |
91 | return $this->link($this->img($src,$title,$options),$link,$internal,$translate); |
92 | } | |
93 | ||
0f7fe034 TM |
94 | function textarea($name=false, $value='', $placeholder=false, $options=false, $prefix='') { |
95 | $html = T($prefix)."<textarea"; | |
96 | if($name) $html.= " name='$name'"; | |
97 | if($options) $html.= " $options"; | |
98 | if($placeholder) $html.= " placeholder='$placeholder'"; | |
99 | $html .= ">$value</textarea>"; | |
100 | return $html; | |
101 | } | |
102 | ||
35916247 | 103 | function input($name=false, $value=false, $type='text', $placeholder=false, $options=false, $prefix='') { |
120e3b45 | 104 | if($type == 'textarea') return $this->textarea($name, $value, $placeholder, $options, $prefix); |
35916247 | 105 | $html = T($prefix)."<input type='$type' "; |
0a027cc7 | 106 | if($name) $html.= "name='$name' "; |
326a9fc9 TM |
107 | if(!is_bool($value)) { |
108 | if($type == 'submit') $value = T($value); | |
109 | $html.= "value='$value' "; | |
110 | } | |
0a027cc7 TM |
111 | if($options) $html.= "$options "; |
112 | if($placeholder) $html.= "placeholder='$placeholder' "; | |
113 | $html .= '/>'; | |
114 | return $html; | |
115 | } | |
116 | ||
35916247 TM |
117 | function form($action=false, $method=false, $inputs, $options=false) { |
118 | $action = $action ? " action='$action'" : ''; | |
119 | $method = $method ? " method='$method'" : ''; | |
120 | $options = $options ? " $options" : ''; | |
121 | $html = "<form$action$method$options>"; | |
122 | foreach($inputs as $input) $html .= call_user_func_array(array($this,'input'), $input); | |
123 | $html .= "</form>"; | |
124 | return $html; | |
125 | } | |
126 | ||
0a027cc7 TM |
127 | function select($name, $selectbox, $default=false) { |
128 | //echo('<pre>'); print_r($selectbox); | |
129 | $html = "<select name='$name'>"; | |
130 | ||
90638f10 | 131 | if(!is_bool($default)) { |
0a027cc7 | 132 | $value=$default; $title=$selectbox[$value]; |
3634575a | 133 | $html .= "<option value='$value'>$title (($value))</option>"; |
0a027cc7 TM |
134 | unset($selectbox[$value]); |
135 | } | |
136 | foreach($selectbox as $value => $title) { | |
3634575a | 137 | $html .= "<option value='$value'>$title (($value))</option>"; |
0a027cc7 TM |
138 | } |
139 | $html .= "</select>"; | |
140 | return $html; | |
141 | } | |
35916247 TM |
142 | |
143 | function ul($items,$tag=ul,$head='',$class=false) { | |
144 | $class = $class ? " class='$class'" : ''; | |
145 | $html = "$head<$tag$class>"; | |
146 | foreach($items as $key => $value) { | |
147 | $html .= '<li>'; | |
148 | if(is_numeric($key)) { | |
149 | $html .= $value; | |
150 | } else { | |
151 | $html .= $this->link($key,$value); | |
152 | } | |
153 | $html .= '</li>'; | |
154 | } | |
155 | $html .= "</$tag>"; | |
156 | return $html; | |
157 | } | |
158 | ||
159 | function div($html, $options) { | |
160 | $options = $options ? " $options" : ''; | |
161 | return "<div$options>$html</div>"; | |
162 | } | |
ec106ddf | 163 | |
25b3e809 TM |
164 | function favicon($url='/favicon.ico') { |
165 | return '<link rel="shortcut icon" href="'.$url.'" /><link href="'.$url.'" rel="icon" type="image/gif" />'; | |
166 | ||
167 | } | |
168 | ||
ec106ddf TM |
169 | function head($title=false,$charset='UTF-8',$more='') { |
170 | $title = $title ? "\n<title>$title</title>" : ''; | |
171 | $html= '<head>'; | |
172 | $html.= '<meta http-equiv="Content-Type" content="text/html; charset='.$charset.'" />'.$title.$more; | |
25b3e809 | 173 | $html.= $this->favicon(dirname($_SERVER['SCRIPT_NAME']).'/favicon.ico'); |
ec106ddf TM |
174 | $html.= '</head>'; |
175 | return $html; | |
176 | } | |
0a027cc7 TM |
177 | } |
178 | ||
78bf26a5 TM |
179 | /** |
180 | * Trida poskytuje podpurne funkce pro generovani HTML kodu specificke pro sklad | |
181 | * | |
fc5c5b8b TM |
182 | * Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)! |
183 | * | |
78bf26a5 TM |
184 | * @package Sklad_HTML |
185 | * @author Tomas Mudrunka | |
186 | */ | |
35916247 | 187 | class Sklad_HTML extends HTML { //TODO: Split into few more methods |
e9f6461f | 188 | function header($title='', $user=array()) { |
cdfce7c2 TM |
189 | $home = URL_HOME; |
190 | $script = $_SERVER['SCRIPT_NAME']; | |
d9384cb5 | 191 | $search = htmlspecialchars(@trim($_GET['q'])); |
a8bbdc31 | 192 | $message = strip_tags(@trim($_GET['message']),'<a><b><u><i><br>'); |
958f1e84 | 193 | $fortune = fortune(); |
ac2ed3a1 | 194 | $instance = INSTANCE_ID != '' ? '/'.INSTANCE_ID : ''; |
e9f6461f TM |
195 | $user_id = htmlspecialchars($user['id']); |
196 | $user_gid = htmlspecialchars($user['gid']); | |
197 | $user_name = htmlspecialchars($user['name']); | |
40eef626 | 198 | $time = date('r'); |
35916247 | 199 | //$title = T($title); //TODO |
ec106ddf TM |
200 | |
201 | $html = $this->head("SōkoMan$title"); | |
202 | $html .= <<<EOF | |
6d98215b | 203 | <h1 style="display: inline;"><a href="$script/">SōkoMan</a><small>$instance$title</small></h1> |
40eef626 TM |
204 | <div style="float:right; text-align:right;"> |
205 | Logged in as <b>$user_name</b> [UID: <b>$user_id</b>; GID: <b>$user_gid</b>]<br /> | |
206 | Page loaded at $time | |
207 | </div> | |
c9759229 TM |
208 | |
209 | <style type="text/css"> | |
ac2ed3a1 | 210 | * { font-family: arial; } |
f6464b5c TM |
211 | td,body { background-color: white; border: orange; } |
212 | .tr_nobr td { border-top: 3px solid orange; } | |
933b760a | 213 | table { background-color: orange; border: orange; } |
c849b3ee | 214 | td textarea { width:100%; height:100%; } |
d0e7939c | 215 | a, a img { text-decoration:none; color: darkblue; border:none; } |
933b760a | 216 | li a, a:hover { text-decoration:underline; } |
1b9304b8 | 217 | .tr_even td { background-color: lemonchiffon; } |
8b9a8edb TM |
218 | .tr_nobr.tr_even td:first-child { border-left: 5px solid orange; } |
219 | .tr_nobr.tr_odd td:first-child { border-left: 5px solid white; } | |
7df1effb | 220 | .item_status_stored td { font-weight:bold; } |
80457ef3 TM |
221 | .item_status_deleted td { text-decoration:line-through; } |
222 | .item_status_destroyed td { font-style:italic; } | |
5fc75c60 | 223 | .floating_barcode { margin: 5px; } |
725edff7 | 224 | .disabled { color: grey; } |
842cb193 TM |
225 | /* table, table * { table-layout:fixed; width:100%; overflow:hidden; word-wrap:break-word; } */ |
226 | /* td { position:absolute; } */ | |
5a7b0bb6 | 227 | /* .cell_model_name { float:left; } */ |
842cb193 | 228 | |
7bcd6b42 | 229 | .menu li { |
c9759229 | 230 | float: left; |
7bcd6b42 TM |
231 | padding: 0.2em; |
232 | } | |
233 | ||
234 | .menu * li { | |
235 | float: none; | |
c9759229 TM |
236 | } |
237 | ||
238 | .menu * menu { | |
239 | position: absolute; | |
7bcd6b42 | 240 | padding: 0.2em; |
c9759229 TM |
241 | } |
242 | ||
243 | .menu, .menu * menu { | |
244 | list-style: none; | |
245 | } | |
246 | ||
247 | .menu * menu { | |
7bcd6b42 | 248 | border: 1px solid orange; |
c9759229 TM |
249 | display: none; |
250 | margin: 0; | |
251 | } | |
252 | ||
7bcd6b42 | 253 | .menu li:hover menu, .menu li:hover { |
c9759229 | 254 | display: block; |
7bcd6b42 | 255 | background-color: yellow; |
c9759229 | 256 | } |
7bcd6b42 | 257 | |
c9759229 TM |
258 | </style> |
259 | ||
cdfce7c2 | 260 | <div> |
35916247 TM |
261 | EOF; |
262 | ||
263 | $assistants=array(); | |
264 | foreach(scandir(DIR_ASSISTANTS) as $item) { | |
265 | if($item == '.' || $item == '..') continue; | |
de42ea13 TM |
266 | $item = preg_replace('/\.inc\.php$/','',$item,-1,$count); |
267 | if($count) $assistants[$item] = "assistant/$item"; | |
35916247 TM |
268 | } |
269 | ||
c6831f34 | 270 | $tables=array('item','barcode','model','category','producer','vendor','room','status','location'); |
35916247 TM |
271 | |
272 | foreach($tables as $table) { | |
273 | $listable[$table] = $table; | |
274 | $insertable[$table] = "$table/new"; | |
275 | } | |
276 | ||
277 | $html .= $this->ul(array( | |
35916247 | 278 | 'Home' => '', |
ec106ddf | 279 | 'Logout' => '?logout', |
35916247 | 280 | 0 => $this->ul($assistants,'menu',$this->link('Assistants','#')), |
ec106ddf TM |
281 | 1 => $this->ul($insertable,'menu',$this->link('New','#')), |
282 | 2 => $this->ul($listable,'menu',$this->link('List','#')) | |
35916247 TM |
283 | ),'menu', '', 'menu'); |
284 | ||
285 | $html .= '<div style="float: right;">'; | |
286 | ||
bf9a965c TM |
287 | /* |
288 | //TODO: Do we really need this? | |
88c38b26 | 289 | $html .= $this->form("$script/api/go", 'GET', array( |
81ab8aef | 290 | array('q','','text','smart id...', 'autofocus'), |
35916247 TM |
291 | array(false,'go','submit') |
292 | ), 'style="float: left;"'); | |
bf9a965c | 293 | */ |
35916247 TM |
294 | |
295 | $html .= $this->form('?', 'GET', array( | |
296 | array('q',$search,'text','regexp...'), | |
297 | array(false,'filter','submit') | |
298 | ), 'style="float: left;"'); | |
299 | ||
bf9a965c TM |
300 | $html .= $this->form("$script/item", 'GET', array( |
301 | array('q',$search,'text','regexp...','autofocus'), | |
302 | array(false,'search','submit') | |
303 | ), 'style="float: left;"'); | |
304 | ||
35916247 TM |
305 | $html .= '</div>'; |
306 | ||
307 | $html .= <<<EOF | |
cdfce7c2 | 308 | </div> |
c9759229 | 309 | <hr style="clear: both;" /> |
d9384cb5 TM |
310 | <div style="background-color:#FFDDDD;"> |
311 | <font color="red">$message</font> | |
312 | </div> | |
958f1e84 | 313 | <div style="text-align:right; color:darkgreen;"> |
41e57f9e TM |
314 | $fortune |
315 | </div> | |
cdfce7c2 | 316 | EOF; |
35916247 TM |
317 | |
318 | return $html; | |
cdfce7c2 TM |
319 | } |
320 | ||
d9384cb5 TM |
321 | function internal_url($link) { |
322 | return $_SERVER['SCRIPT_NAME'].'/'.$link; | |
323 | } | |
324 | ||
cdfce7c2 TM |
325 | function table_add_images(&$table) { |
326 | $image = array('model_id'); | |
327 | foreach($table as $id => $row) { | |
328 | foreach($image as $column) if(isset($table[$id][$column])) { | |
329 | $type = @array_shift(preg_split('/_/', $column)); | |
330 | $src=URL_IMAGES."/$type/".$table[$id][$column].'.jpg'; | |
6f7943a0 | 331 | $table[$id][$type.'_image']=$this->img_link($src, $src, $table[$id][$column], false, false); |
cdfce7c2 TM |
332 | } |
333 | } | |
334 | } | |
335 | ||
81ab8aef | 336 | function render_barcode($barcode,$opts=false) { |
ea921a95 | 337 | return $this->img_link($this->internal_url("barcodeimg/$barcode"),$this->internal_url("barcodeimg/$barcode"),$barcode,false,false,$opts); |
81ab8aef TM |
338 | } |
339 | ||
340 | function table_add_barcodes(&$table) { | |
ea921a95 | 341 | $image = array('barcode_name', 'model_barcode', 'item_serial'); |
81ab8aef TM |
342 | foreach($table as $id => $row) { |
343 | foreach($image as $column) if(isset($table[$id][$column])) { | |
344 | $table[$id][$column]=$this->render_barcode($table[$id][$column]); | |
345 | } | |
346 | } | |
347 | } | |
348 | ||
ba30732d | 349 | function table_add_row_classes(&$table, $class_col='_row_classes') { |
7df1effb TM |
350 | $image = array('status_name' => ' item_status_'); |
351 | foreach($table as $id => $row) { | |
352 | foreach($image as $column => $param) if(isset($table[$id][$column])) { | |
ba30732d | 353 | @$table[$id][$class_col] .= $param.$table[$id][$column]; |
7df1effb TM |
354 | } |
355 | } | |
356 | } | |
357 | ||
d6975011 | 358 | function table_add_relations(&$table, $class, $suffix_relations='_relations') { |
aaafc8b7 | 359 | $where_url = '%d/?where[%c]==%v'; |
dda9984c | 360 | $insert_url = '%d/new?insert[%c]=%v'; |
14e4d4a7 | 361 | $relations = array( //TODO: Autodetect??? //TODO: Add [edit] link to all classes |
aaafc8b7 | 362 | 'model' => array( |
dda9984c | 363 | 'model_id' => array(array('item',$where_url),array('barcode',$where_url),array('edit','model/%v/edit/'),array('barcode',$insert_url)), |
7661315f | 364 | 'model_barcode' => array(array('store','assistant/%d?barcode=%v')), |
ea921a95 | 365 | 'barcode_name' => array(array('store','assistant/%d?barcode=%v')), |
9f196221 | 366 | 'model_name' => array(array('google','http://google.com/search?q=%v')) //TODO: add manufacturer to google query |
aaafc8b7 | 367 | ), |
eca3fc1d TM |
368 | 'barcode' => array( |
369 | 'model_id' => array(array('model',$where_url)), | |
370 | 'barcode_id' => array(array('item',$where_url),array('edit','barcode/%v/edit/')), | |
371 | 'barcode_name' => array(array('store','assistant/%d?barcode=%v')), | |
372 | ), | |
4ece8e80 | 373 | 'item' => array( |
d1686e10 | 374 | 'item_serial' => array(array('dispose','assistant/%d?serial=%v','in_stock'),array('sell','assistant/%d?serial=%v','in_stock')), |
6265a8d4 | 375 | 'item_id' => array(array('edit','item/%v/edit/')) |
4ece8e80 | 376 | ), |
d7d9ce39 | 377 | 'category' => array('category_id' => array(array('item',$where_url), array('model',$where_url))), |
0646d9ef | 378 | 'producer' => array('producer_id' => array(array('item',$where_url), array('model',$where_url))), |
aaafc8b7 TM |
379 | 'vendor' => array('vendor_id' => array(array('item',$where_url))), |
380 | 'room' => array('room_id' => array(array('item',$where_url))), | |
928bb5a6 TM |
381 | 'status' => array('status_id' => array(array('item',$where_url))), |
382 | 'location' => array( | |
14e4d4a7 | 383 | 'location_id' => array(array('item',$where_url),array('edit','location/%v/edit/')), |
928bb5a6 TM |
384 | 'location_name' => array(array('smokeping','http://tartarus.brevnov.czf/cgi-bin/smokeping.cgi?filter=%v')) |
385 | ) | |
d6975011 | 386 | ); |
6265a8d4 | 387 | $relations_conditions=array( |
d1686e10 | 388 | 'in_stock' => 'return(@$table[$id]["status_name"] == "stored");', |
3b626989 TM |
389 | 'not_sold' => 'return(@$table[$id]["status_name"] != "sold");', |
390 | 'not_sold_or_disposed' => 'return(@$table[$id]["status_name"] != "sold" && @$table[$id]["status_name"] != "disposed");' | |
6265a8d4 | 391 | ); |
d6975011 TM |
392 | foreach($table as $id => $row) { |
393 | foreach($row as $column => $value) { | |
394 | if(isset($relations[$class][$column])) { | |
395 | foreach($relations[$class][$column] as $destination) { | |
aaafc8b7 TM |
396 | $destination_url = str_replace( |
397 | array('%d','%c','%v'), | |
d516a31d | 398 | array(urlencode($destination[0]),urlencode($column),urlencode($value)), |
aaafc8b7 TM |
399 | $destination[1] |
400 | ); | |
9c310625 | 401 | if(isset($destination[2]) && isset($relations_conditions[$destination[2]])) { |
e9482e8a TM |
402 | //$condition = $relations_conditions[$destination[2]]($table,$id); |
403 | if(!eval($relations_conditions[$destination[2]])) continue; | |
6265a8d4 | 404 | } |
9f196221 | 405 | @$table[$id][$class.$suffix_relations] .= $this->link($destination[0], $destination_url, !preg_match('/http/', $destination_url) ).','; |
d6975011 TM |
406 | } |
407 | } | |
408 | } | |
409 | } | |
410 | } | |
411 | ||
cdfce7c2 TM |
412 | function table_collapse(&$table) { |
413 | $collapse = array( | |
414 | 'item_id' => 'item_id', | |
415 | 'model_id' => 'model_name', | |
416 | 'category_id' => 'category_name', | |
417 | 'producer_id' => 'producer_name', | |
418 | 'vendor_id' => 'vendor_name', | |
419 | 'room_id' => 'room_name', | |
928bb5a6 | 420 | 'location_id' => 'location_name', |
cdfce7c2 | 421 | 'status_id' => 'status_name', |
d7d9ce39 | 422 | 'item_author' => 'item_author_backend', |
a278a425 | 423 | 'item_customer' => 'item_customer', |
cdfce7c2 | 424 | ); |
d7d9ce39 | 425 | |
cdfce7c2 TM |
426 | foreach($table as $id => $row) { |
427 | foreach($collapse as $link => $title) | |
fff6ce40 | 428 | if(isset($table[$id][$link]) && isset($row[$title])) { |
cdfce7c2 TM |
429 | $type = @array_shift(preg_split('/_/', $link)); |
430 | if($link != $title) unset($table[$id][$link]); | |
d7d9ce39 TM |
431 | switch($link) { //TODO: Move to array for easy configuration |
432 | case 'item_author': | |
a278a425 TM |
433 | case 'item_customer': |
434 | $table[$id][$title]=$this->link($row[$title], "?where[$link]==".$row[$link], false); | |
d7d9ce39 TM |
435 | break; |
436 | default: | |
437 | $table[$id][$title]=$this->link($row[$title], $type.'/'.$row[$link].'/'); | |
438 | break; | |
439 | } | |
cdfce7c2 TM |
440 | } |
441 | } | |
442 | } | |
443 | ||
444 | function table_sort(&$table) { | |
9c310625 | 445 | $precedence = array('item_id', 'model_image', 'model_name','model_descript','category_name','status_name','room_name','item_quantity','item_price_in','item_price_out','model_price_in','model_price_out','item_relations','model_relations'); |
cdfce7c2 TM |
446 | $table_sorted = array(); |
447 | foreach($table as $id => $row) { | |
448 | $table_sorted[$id] = array(); | |
449 | foreach($precedence as $column) if(isset($table[$id][$column])) { | |
842cb193 | 450 | $table_sorted[$id][$column]=$table[$id][$column]; |
cdfce7c2 TM |
451 | unset($table[$id][$column]); |
452 | } | |
842cb193 TM |
453 | $table_sorted[$id]=array_merge($table_sorted[$id],$table[$id]); |
454 | //foreach($table[$id] as $key => $val) $table_sorted[$id][T($key)] = $val; //array_merge with T() translating | |
cdfce7c2 TM |
455 | } |
456 | $table = $table_sorted; | |
457 | } | |
458 | ||
ecaeb1d6 TM |
459 | function table_hide_columns(&$table, $class) { //TODO: Move to build_query_select() !!! :-))) |
460 | $fields_hide = array( | |
7661315f TM |
461 | 'model' => array('barcode_name'), |
462 | 'barcode' => array('model_price_in','model_price_out','model_reserve','producer_name','producer_note','model_eshop_hide','category_name','model_countable','model_descript'), | |
ea921a95 | 463 | 'item' => array('model_descript','model_price_in','model_price_out','barcode_name','model_barcode','model_countable','model_reserve','model_eshop_hide','room_descript','room_author','producer_name','producer_note','vendor_note','location_author','location_gps','location_description') |
ecaeb1d6 TM |
464 | ); |
465 | //print_r($table); die(); | |
466 | if(isset($fields_hide[$class])) foreach($table as $id => $row) { | |
467 | foreach($fields_hide[$class] as $field) unset($table[$id][$field]); | |
468 | } | |
469 | } | |
470 | ||
d6975011 | 471 | function render_item_table($table,$class=false) { |
5a7b0bb6 TM |
472 | |
473 | $cellspan = array( | |
474 | 'break_after' => array( | |
1f7c4407 | 475 | 'item' => array('category_name'), |
5a7b0bb6 TM |
476 | 'model'=> array('model_descript') |
477 | ), | |
478 | 'rowspan' => array( | |
479 | 'item' => array('model_image'=>2,'item_id'=>2), | |
480 | 'model'=> array('model_image'=>2) | |
481 | ), | |
482 | 'colspan' => array( | |
1f7c4407 | 483 | 'item' => array('model_name'=>6,'category_name'=>'100%'), |
5a7b0bb6 TM |
484 | 'model'=> array('model_name'=>4,'model_descript'=>'100%') |
485 | ) | |
486 | ); | |
487 | ||
488 | foreach(array_keys($cellspan) as $vari) | |
489 | $$vari = isset($cellspan[$vari][$class]) ? $cellspan[$vari][$class] : array(); | |
490 | ||
8ca87ee3 | 491 | if(empty($table)) return '<h3>'.T('holy primordial emptiness is all you can find here...').'</h3><br />'; |
ba30732d | 492 | $this->table_add_row_classes($table); |
cdfce7c2 | 493 | $this->table_add_images($table); |
d6975011 | 494 | if($class) $this->table_add_relations($table,$class); |
aaafc8b7 | 495 | $this->table_add_barcodes($table); |
cdfce7c2 | 496 | $this->table_collapse($table); |
ecaeb1d6 | 497 | if($class) $this->table_hide_columns($table,$class); |
cdfce7c2 | 498 | $this->table_sort($table); |
5a7b0bb6 | 499 | return $this->table($table,$colspan,$rowspan,$break_after); |
cdfce7c2 TM |
500 | } |
501 | ||
d0e7939c | 502 | function render_insert_inputs($class,$columns,$selectbox,$current,$hidecols,$update) { |
120e3b45 TM |
503 | $textarea = array( |
504 | 'item' => array('item_note'), | |
505 | 'model' => array('model_descript') | |
506 | ); | |
3634575a | 507 | $html = '<table>'; |
1f52346f | 508 | $even=false; |
cdfce7c2 | 509 | foreach($columns as $column) { |
1f52346f TM |
510 | $html.='<tr class="'. ($even ? 'tr_even' : 'tr_odd') .'"><td>'.T($class).':<b>'.T($column['Field']).'</b>: </td><td>'; |
511 | $even = !$even; | |
7d20381f | 512 | $name="values[$class][".$column['Field'].'][]'; |
16261142 | 513 | $val = $update && isset($current[$column['Field']]) ? $current[$column['Field']] : false; |
cdfce7c2 | 514 | switch(true) { |
a084118b | 515 | case (preg_match('/auto_increment/', $column['Extra']) || in_array($column['Field'], $hidecols)): |
90638f10 | 516 | if(is_bool($val) && !$val) $val = ''; |
fc5c5b8b | 517 | $html.=$this->input($name, $val, 'hidden'); |
725edff7 | 518 | $html.='<span class="disabled"><i>[AUTO]</i> '.$val.'</span>'; |
cdfce7c2 TM |
519 | break; |
520 | case isset($selectbox[$column['Field']]): | |
e9cb8cea | 521 | $html.=$this->select($name,$selectbox[$column['Field']],$val); |
cdfce7c2 | 522 | break; |
120e3b45 TM |
523 | case isset($textarea[$class]) && in_array($column['Field'],$textarea[$class]): |
524 | $html.=$this->input($name, $val, 'textarea'); | |
525 | break; | |
526 | default: | |
fc5c5b8b | 527 | $html.=$this->input($name, $val); |
cdfce7c2 TM |
528 | break; |
529 | } | |
3634575a | 530 | $html.='</td></tr>'; |
cdfce7c2 | 531 | } |
3634575a | 532 | $html.='</table>'; |
d0e7939c TM |
533 | return $html; |
534 | } | |
cdfce7c2 | 535 | |
d0e7939c TM |
536 | function render_insert_form_multi($array) { |
537 | $html = ''; | |
538 | $head=false; | |
539 | ||
540 | foreach($array as $key => $args) { | |
541 | $parts=array('inputs'); | |
542 | if(!$head) { $head = true; | |
543 | $parts[]='head'; | |
544 | } | |
545 | if(!isset($array[$key+1])) { | |
546 | $parts[]='foot'; | |
5b0075fa TM |
547 | $hr = ''; |
548 | } else $hr = '<hr />'; | |
549 | //$args[] = false; | |
d0e7939c | 550 | $args[] = $parts; |
f5baa075 | 551 | |
d0e7939c | 552 | $html .= call_user_func_array(array($this, 'render_insert_form'), $args); |
5b0075fa | 553 | $html .= $hr; |
d0e7939c TM |
554 | } |
555 | return $html; | |
556 | } | |
557 | ||
558 | function render_insert_form($class, $columns, $selectbox=array(), $current=false, $hidecols=false, $action=false, $multi_insert=true, $parts=false) { | |
559 | $html = ''; | |
560 | //print_r($parts); | |
561 | //echo('<pre>'); print_r($selectbox); | |
562 | //echo('<pre>'); print_r($current); | |
563 | $update = false; | |
dda9984c | 564 | $current_new=array(); |
d0e7939c TM |
565 | if(is_array($current)) { |
566 | $update = true; | |
dda9984c TM |
567 | $current_new = array_merge($current_new,array_shift($current)); |
568 | } | |
569 | if(isset($_GET['insert']) && is_array($_GET['insert'])) { | |
570 | $update = true; | |
571 | $current_new = array_merge($current_new,$_GET['insert']); | |
d0e7939c TM |
572 | } |
573 | ||
574 | if(!is_array($hidecols)) $hidecols = array(); | |
575 | $hidecols = array_merge($hidecols, array('item_author', 'item_valid_from', 'item_valid_till')); //TODO Autodetect | |
576 | ||
577 | if(!is_array($parts) || in_array('head', $parts)) { | |
578 | $action = $action ? " action='$action'" : false; | |
579 | $html.="<form$action method='POST'>"; //TODO: use $this->form() | |
5b0075fa | 580 | $html.='<span><div name="input_set" style="float:left; border:1px solid grey; padding: 1px; margin: 1px;">'; |
cdfce7c2 TM |
581 | } |
582 | ||
d0e7939c | 583 | if(!is_array($parts) || in_array('inputs', $parts)) |
dda9984c | 584 | $html.=$this->render_insert_inputs($class,$columns,$selectbox,$current_new,$hidecols,$update); |
d0e7939c TM |
585 | |
586 | if(!is_array($parts) || in_array('foot', $parts)) { | |
5b0075fa | 587 | $html .= '</div></span><br style="clear:both" />'; |
d0e7939c TM |
588 | if($multi_insert) { //TODO, move to separate JS file |
589 | $html.=<<<EOF | |
d0e7939c TM |
590 | <script> |
591 | function duplicate_element(what, where) { | |
592 | var node = document.getElementsByName(what)[0]; | |
593 | node.parentNode.appendChild(node.cloneNode(true)); | |
594 | } | |
595 | </script> | |
596 | <a href='#' onClick="duplicate_element('input_set')">+</a> | |
597 | EOF; | |
598 | } | |
599 | ||
dda9984c | 600 | $btn = count($current_new)>0 ? 'UPDATE' : 'INSERT'; //TODO: $current may be set even when inserting... |
d0e7939c TM |
601 | $html.=$this->input(false, $btn, 'submit'); |
602 | $html.='</form>'; | |
603 | } | |
fc5c5b8b | 604 | return $html; |
cdfce7c2 TM |
605 | } |
606 | } | |
607 | ||
78bf26a5 TM |
608 | /** |
609 | * Trida poskytuje rozhrani k databazi skladu | |
610 | * | |
611 | * @package Sklad_DB | |
612 | * @author Tomas Mudrunka | |
613 | */ | |
cdfce7c2 TM |
614 | class Sklad_DB extends PDO { |
615 | function __construct() { | |
63747dad | 616 | $this->auth = new Sklad_Auth(); |
cdfce7c2 TM |
617 | |
618 | parent::__construct( | |
619 | DB_DSN, DB_USER, DB_PASS, | |
620 | array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8") //Force UTF8 for MySQL | |
621 | ); | |
622 | } | |
623 | ||
624 | function escape($str) { | |
625 | return preg_replace('(^.|.$)', '', $this->quote($str)); //TODO HACK | |
626 | } | |
627 | ||
382324d3 TM |
628 | function quote_identifier($str) { |
629 | return '`'.$this->escape($str).'`'; //TODO HACK | |
630 | } | |
631 | ||
cb8a6861 | 632 | function build_query_select($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false, $order=false, $suffix_id='_id') { |
2bedfdac | 633 | //Configuration |
cdfce7c2 | 634 | $join = array( |
ea921a95 TM |
635 | 'barcode' => array('model', 'category', 'producer'), |
636 | 'item' => array('barcode', 'model', 'category', 'producer', 'vendor', 'room', 'location', 'status'), | |
cdfce7c2 | 637 | 'model' => array('category', 'producer') |
9ea191cb | 638 | ); //TODO Autodetect using foreign keys? |
67360e50 TM |
639 | $join2 = array( |
640 | 'model' => array('barcode'=>'model_id') | |
641 | ); | |
ecaeb1d6 | 642 | $fields_search = array( |
ea921a95 TM |
643 | 'item' => array('item_id','item_serial','model_name','barcode_name','model_barcode','model_descript','producer_name','vendor_name'), |
644 | 'model' => array('model_id','model_name','barcode_name','model_barcode','model_descript','producer_name') | |
9ea191cb | 645 | ); //TODO Autodetect |
67360e50 TM |
646 | $group_concat = array( |
647 | 'model' => array('barcode_name'=>'model_id') | |
648 | ); | |
2bedfdac | 649 | |
d9d47bd3 TM |
650 | //Init |
651 | if(is_array($where)) foreach($where as $key => $value) $where[$key] = $key.' '.$value; //TODO: escape SQLi!!! | |
652 | ||
2bedfdac TM |
653 | //Escaping |
654 | $class = $this->escape($class); | |
655 | ||
67360e50 TM |
656 | //GROUP_CONCAT |
657 | $group_concat_query = ''; | |
658 | $group_by = ''; | |
659 | if(isset($group_concat[$class])) foreach($group_concat[$class] as $gc => $gb) { | |
660 | $group_concat_query .= ",group_concat($gc separator ', ')"; | |
661 | $group_by .= "GROUP BY $gb\n"; | |
662 | } | |
663 | ||
2bedfdac | 664 | //SELECT |
67360e50 TM |
665 | $sql="SELECT *$group_concat_query FROM `$class`\n"; |
666 | //$sql="SELECT * FROM `$class`\n"; | |
2bedfdac | 667 | //JOIN |
382324d3 | 668 | if(isset($join[$class])) foreach($join[$class] as $j) $sql .= "LEFT JOIN `$j` USING($j$suffix_id)\n"; |
67360e50 | 669 | if(isset($join2[$class])) foreach($join2[$class] as $j => $c) $sql .= "LEFT JOIN `$j` USING($c)\n"; |
2bedfdac | 670 | //WHERE/REGEXP |
cdfce7c2 TM |
671 | if($search) { |
672 | $search = $this->quote($search); | |
ecaeb1d6 | 673 | if(!isset($fields_search[$class])) die(trigger_error(T("Can't search in $class table yet :-("))); //TODO: post_redirect_get |
5895162b | 674 | $sql_search = ''; |
ecaeb1d6 | 675 | foreach($fields_search[$class] as $column) $sql_search .= "OR $column REGEXP $search "; |
5895162b | 676 | $where[] = "FALSE $sql_search"; |
cb8a6861 TM |
677 | } elseif($id) $where[] = "$class$suffix_id = $id"; |
678 | if(!$history && $this->contains_history($class)) $where[] = $class.'_valid_till=0'; | |
679 | ||
5895162b | 680 | if($where) $sql .= 'WHERE ('.implode(') AND (', $where).")\n"; |
67360e50 TM |
681 | |
682 | //GROUP BY | |
683 | $sql.=$group_by; | |
684 | ||
117817be | 685 | //ORDER |
fd479ff5 | 686 | if(!$order) $order = $class.$suffix_id.' DESC'; |
117817be | 687 | if($this->contains_history($class)) $order .= ",${class}_valid_from DESC"; |
ea921a95 | 688 | //$sql .= "ORDER BY $order\n"; //TODO: fixnout az budou opraveny vicenasobny carovy kody |
2bedfdac | 689 | //LIMIT/OFFSET |
cdfce7c2 TM |
690 | if($limit) { |
691 | $limit = $this->escape((int)$limit); | |
692 | $offset = $this->escape((int)$offset); | |
693 | $sql .= "LIMIT $offset,$limit\n"; | |
694 | } | |
2bedfdac | 695 | |
cdfce7c2 TM |
696 | return $sql; |
697 | } | |
698 | ||
66b6f4d6 | 699 | function safe_query($sql, $fatal=true) { |
cdfce7c2 TM |
700 | $result = $this->query($sql); |
701 | if(!$result) { | |
2bedfdac | 702 | $error = $this->errorInfo(); |
66b6f4d6 TM |
703 | trigger_error("<font color=red><b>QUERY FAILED ($error[0],$error[1]): </b>$error[2]<br /><br /><b>QUERY:</b>\n<pre>$sql</pre></font>"); |
704 | if($fatal) die(); | |
cdfce7c2 TM |
705 | } |
706 | return $result; | |
707 | } | |
708 | ||
d9601e5d | 709 | function translate_query_results(&$result) { |
d1686e10 | 710 | $translate_cols = array('item_valid_till'); //TODO: Hardcoded |
326a9fc9 TM |
711 | foreach($result as $key => $row) { |
712 | foreach($translate_cols as $col) if(isset($result[$key][$col])){ | |
713 | $result[$key][$col] = T($result[$key][$col]); | |
714 | } | |
715 | } | |
d9601e5d TM |
716 | } |
717 | ||
d7d9ce39 | 718 | function load_backend_data_to_query_results(&$result,$suffix_backend='_backend') { |
d9601e5d TM |
719 | $translate_cols = array( |
720 | 'item_author' => 'return($this->auth->get_username_by_id($result[$key][$col]));' | |
721 | ); //TODO: Hardcoded | |
722 | foreach($result as $key => $row) { | |
723 | foreach($translate_cols as $col => $backend) if(isset($result[$key][$col])){ | |
d7d9ce39 | 724 | $result[$key][$col.$suffix_backend] = eval($backend); |
d9601e5d TM |
725 | } |
726 | } | |
326a9fc9 TM |
727 | } |
728 | ||
729 | function safe_query_fetch($sql, $fatal=true, $fetch_flags = PDO::FETCH_ASSOC, $translate=true) { | |
730 | $result = $this->safe_query($sql, $fatal)->fetchAll($fetch_flags); | |
d9601e5d TM |
731 | $this->load_backend_data_to_query_results($result); |
732 | if($translate) $this->translate_query_results($result); | |
326a9fc9 TM |
733 | return $result; |
734 | } | |
735 | ||
cb8a6861 TM |
736 | function get_listing($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false, $indexed=array(), $suffix_id='_id') { |
737 | $sql = $this->build_query_select($class, $id, $limit, $offset, $where, $search, $history); | |
326a9fc9 | 738 | $result = $this->safe_query_fetch($sql); |
cdfce7c2 TM |
739 | if(!$result || !is_array($indexed)) return $result; |
740 | ||
741 | foreach($result as $key => $row) $indexed[$row[$class.$suffix_id]]=$row; | |
742 | return $indexed; | |
743 | } | |
744 | ||
d0e7939c | 745 | function get_columns($class,$disable_cols=array()) { //TODO: Not sure if compatible with non-MySQL DBs |
cdfce7c2 TM |
746 | $class = $this->escape($class); |
747 | $sql = "SHOW COLUMNS FROM $class;"; | |
d0e7939c TM |
748 | $columns = $this->safe_query_fetch($sql); |
749 | /*foreach($columns as $colk => $col) foreach($col as $key => $val) { | |
750 | if(in_array($col['Field'],$disable_cols)) $columns[$colk]['Extra']='auto_increment'; | |
751 | }*/ | |
752 | return $columns; | |
cdfce7c2 TM |
753 | } |
754 | ||
755 | function columns_get_selectbox($columns, $class=false, $suffix_id='_id', $suffix_name='_name') { | |
1c99d83b | 756 | $selectbox=array( //TODO: Hardcoded... |
41e57f9e | 757 | 'model_countable' => array(0 => 'no', 1 => 'yes'), |
3e939604 TM |
758 | 'model_eshop_hide' => array(0 => 'no', 1 => 'yes'), |
759 | 'vendor_id' => array('COMPULSORY' => 'select...') | |
1c99d83b | 760 | ); |
cdfce7c2 | 761 | foreach($columns as $column) { |
66b6f4d6 | 762 | if($column['Field'] == 'user_id') continue; //TODO HACK Blacklist: tabulka nemusi obsahovat *_name!!! momentalne se to tyka jen tabulky user (a item - u ty to nevadi)! |
cdfce7c2 TM |
763 | if($class && $column['Field'] == $class.$suffix_id) continue; |
764 | if(!preg_match('/'.$suffix_id.'$/', $column['Field'])) continue; | |
765 | $table=preg_replace('/'.$suffix_id.'$/','',$column['Field']); | |
66b6f4d6 | 766 | |
117817be | 767 | $history = $this->contains_history($table) ? " WHERE ${table}_valid_till=0" : ''; |
b4dcae05 | 768 | $sql = "SELECT $table$suffix_id, $table$suffix_name FROM $table$history;"; //TODO use build_query_select()!!! |
326a9fc9 | 769 | $result = $this->safe_query_fetch($sql, false); |
66b6f4d6 | 770 | if(!$result) continue; |
cdfce7c2 TM |
771 | foreach($result as $row) $selectbox[$table.$suffix_id][$row[$table.$suffix_id]]=$row[$table.$suffix_name]; |
772 | } | |
773 | //echo('<pre>'); print_r($selectbox); | |
3634575a | 774 | //return array_filter($selectbox, 'ksort'); |
725edff7 TM |
775 | return array_filter($selectbox, 'natcasesort'); |
776 | //array_multisort($selectbox); return $selectbox; | |
9ea191cb TM |
777 | } |
778 | ||
d0e7939c | 779 | function map_unique($key, $value, $select, $table, $fatal=true) { //TODO: Guess $select and $table if not passed |
16261142 TM |
780 | $history = $this->contains_history($table) ? " AND ${table}_valid_till=0" : ''; |
781 | $value=$this->quote($value); | |
782 | $sql = "SELECT $select FROM $table WHERE $key=$value$history LIMIT 1;"; //TODO use build_query_select()!!! | |
326a9fc9 | 783 | $result = $this->safe_query_fetch($sql); |
d0e7939c | 784 | if(isset($result[0][$select])) return $result[0][$select]; else if($fatal) die(trigger_error(T('Record not found!'))); //TODO post_redirect_get... |
16261142 TM |
785 | } |
786 | ||
9ea191cb TM |
787 | function contains_history($table) { |
788 | $history_tables = array('item'); //TODO Autodetect | |
789 | return in_array($table, $history_tables); | |
cdfce7c2 TM |
790 | } |
791 | ||
792 | function build_query_insert($table, $values, $replace=true, $suffix_id='_id') { | |
b66fadbb TM |
793 | //Init |
794 | $history = $this->contains_history($table); | |
795 | ||
9ea191cb | 796 | //Escaping |
cdfce7c2 TM |
797 | $table = $this->escape($table); |
798 | ||
799 | //Get list of POSTed columns | |
aa3fd0a8 TM |
800 | $columns_array = array_map(array($this,'escape'), array_keys($values[0])); |
801 | $columns = implode(',',$columns_array); | |
cdfce7c2 | 802 | |
9fb856ba | 803 | //Build query |
b66fadbb | 804 | $sql = ''; |
b66fadbb TM |
805 | //echo('<pre>'); die(print_r($values)); |
806 | ||
807 | if($history) { | |
808 | $history_update=false; foreach($values as $row) if(is_numeric($row[$table.'_id'])) $history_update=true; | |
809 | if($history_update) { | |
810 | $sql .= "UPDATE $table"; | |
117817be TM |
811 | $sql .= " SET ${table}_valid_till=NOW()"; |
812 | $sql .= " WHERE ${table}_valid_till=0 AND ("; | |
b66fadbb TM |
813 | $or = ''; |
814 | foreach($values as $row) { | |
5b0075fa | 815 | $sql .= $or.' '.$table.'_id='.$this->quote($row[$table.'_id']); |
b66fadbb TM |
816 | $or = ' OR'; |
817 | } | |
818 | $sql .= " );\n\n"; | |
819 | $replace = false; | |
820 | } | |
821 | } | |
822 | ||
cdfce7c2 | 823 | //Insert into table (columns) |
aa3fd0a8 | 824 | $sql .= "INSERT INTO $table ($columns) VALUES "; |
cdfce7c2 TM |
825 | |
826 | //Values (a,b,c),(d,e,f) | |
827 | $comma=''; | |
828 | foreach($values as $row) { | |
9fb856ba TM |
829 | $row_quoted = array_map(array($this,'quote'), $row); //Check |
830 | if($history) { | |
b66fadbb TM |
831 | foreach($row as $column => $value) { |
832 | switch($column) { | |
833 | case $table.'_valid_from': | |
834 | $row_quoted[$column] = 'NOW()'; | |
835 | break; | |
836 | case $table.'_valid_till': | |
837 | $row_quoted[$column] = '0'; | |
838 | break; | |
9fb856ba | 839 | case $table.'_author': |
e9f6461f TM |
840 | $row_quoted[$column] = $this->auth->get_user_id(); |
841 | //die($this->auth->get_user_id().'=USER'); | |
b66fadbb | 842 | break; |
b66fadbb TM |
843 | } |
844 | } | |
845 | } | |
846 | $sql .= $comma.'('.implode(',',$row_quoted).')'; | |
cdfce7c2 TM |
847 | $comma = ','; |
848 | } | |
849 | ||
aa3fd0a8 TM |
850 | //On duplicate key |
851 | if($replace) { | |
852 | foreach($columns_array as $col) { | |
853 | if($col == $table.'_id' || $col == $table.'_valid_till') continue; | |
854 | $on_duplicate[] = "$col=VALUES($col)"; | |
855 | } | |
856 | $sql .= "\nON DUPLICATE KEY UPDATE ".implode(',', $on_duplicate); | |
857 | } | |
858 | ||
cdfce7c2 TM |
859 | //Terminate |
860 | $sql .= ';'; | |
861 | return $sql; | |
862 | } | |
863 | ||
b4dcae05 TM |
864 | function insert_or_update($table, $values, $replace=true) { |
865 | $sql = $this->build_query_insert($table, $values, $replace); | |
cdfce7c2 TM |
866 | $this->safe_query($sql); |
867 | return $this->lastInsertId(); | |
868 | } | |
869 | ||
b4dcae05 | 870 | function insert_or_update_multitab($values, $replace=true) { |
371a86f4 | 871 | $last=false; |
b4dcae05 | 872 | foreach($values as $table => $rows) $last = $this->insert_or_update($table, $rows, $replace); |
371a86f4 TM |
873 | return $last; |
874 | } | |
875 | ||
cdfce7c2 | 876 | function delete($table, $id, $suffix_id='_id') { |
64f31c54 | 877 | if($this->contains_history($table)) return false; |
cdfce7c2 TM |
878 | $key = $this->escape($table.$suffix_id); |
879 | $table = $this->escape($table); | |
880 | $id = $this->quote($id); | |
881 | return $this->safe_query("DELETE FROM $table WHERE $key = $id LIMIT 1;"); | |
882 | } | |
883 | } | |
884 | ||
0a027cc7 TM |
885 | /** |
886 | * Trida poskytuje high-level rozhrani k databazi skladu | |
887 | * | |
888 | * @package Sklad_DB_Abstract | |
889 | * @author Tomas Mudrunka | |
890 | */ | |
891 | class Sklad_DB_Abstract extends Sklad_DB { | |
892 | //TODO Code | |
893 | } | |
894 | ||
78bf26a5 TM |
895 | /** |
896 | * Trida implementuje uzivatelske rozhrani skladu | |
897 | * | |
898 | * Example usage: | |
899 | * $sklad = new Sklad_UI(); | |
900 | * $sklad->process_http_request(); | |
901 | * | |
902 | * @package Sklad_UI | |
903 | * @author Tomas Mudrunka | |
904 | */ | |
cdfce7c2 TM |
905 | class Sklad_UI { |
906 | function __construct() { | |
907 | $this->db = new Sklad_DB(); | |
908 | $this->html = new Sklad_HTML(); | |
909 | } | |
910 | ||
cb8a6861 | 911 | function render_items($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false) { |
d6975011 | 912 | return $this->html->render_item_table($this->db->get_listing($class, $id, $limit, $offset, $where, $search, $history, false),$class); |
cdfce7c2 TM |
913 | } |
914 | ||
a25f85f8 | 915 | function render_form_add($class) { |
cdfce7c2 TM |
916 | $columns = $this->db->get_columns($class); |
917 | $selectbox = $this->db->columns_get_selectbox($columns, $class); | |
a25f85f8 | 918 | return $this->html->render_insert_form($class, $columns, $selectbox); |
cdfce7c2 TM |
919 | } |
920 | ||
f5baa075 | 921 | function render_form_edit($class, $id, $multi_insert) { |
cdfce7c2 TM |
922 | $columns = $this->db->get_columns($class); |
923 | $selectbox = $this->db->columns_get_selectbox($columns, $class); | |
117817be | 924 | $current = $this->db->get_listing($class, $id, 1); |
f5baa075 | 925 | return $this->html->render_insert_form($class, $columns, $selectbox, $current, false, false, $multi_insert); |
cdfce7c2 TM |
926 | } |
927 | ||
8f451ba7 | 928 | function render_single_record_details($class, $id, $barcode=true) { |
cdfce7c2 TM |
929 | $id_next = $id + 1; |
930 | $id_prev = $id - 1 > 0 ? $id - 1 : 0; | |
931 | $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : ''; | |
a25f85f8 TM |
932 | $html=''; |
933 | $html.= $this->html->link('<<', "$class/$id_prev/"); | |
934 | $html.= '-'; | |
935 | $html.= $this->html->link('>>', "$class/$id_next/"); | |
8f451ba7 | 936 | $html.= ' '; |
60ec0b75 | 937 | $barcode && $html.='<span style="float:right;" class="floating_barcode">'.$this->html->render_barcode(BARCODE_PREFIX.strtoupper("$class/$id")).'</span>'; |
a25f85f8 | 938 | $html.= $this->html->link('edit', "$class/$id/edit/"); |
9fb856ba | 939 | if($this->db->contains_history($class)) $html.= ' ][ '.$this->html->link('history', "$class/$id/history/"); |
a25f85f8 | 940 | return $html; |
cdfce7c2 TM |
941 | } |
942 | ||
a25f85f8 | 943 | function render_listing_navigation($class, $id, $limit, $offset) { |
cdfce7c2 TM |
944 | $offset_next = $offset + $limit; |
945 | $offset_prev = $offset - $limit > 0 ? $offset - $limit : 0; | |
946 | $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : ''; | |
e0f8e591 | 947 | $moreget = isset($get[0]) ? '&' : '?'; |
a25f85f8 TM |
948 | $html=''; |
949 | $html.= $this->html->link('<<', "$class/$id/$limit/$offset_prev/$get"); | |
950 | $html.= '-'; | |
e0f8e591 | 951 | $html.= $this->html->link('[*]', "$class/$id/0/0/$get$moreget".'noimgs'); |
ef0fa7a4 | 952 | $html.= '-'; |
a25f85f8 | 953 | $html.= $this->html->link('>>', "$class/$id/$limit/$offset_next/$get"); |
a4dae920 | 954 | $html.= ' '; |
a25f85f8 TM |
955 | $html.= $this->html->link('new', "$class/new/$get"); |
956 | return $html; | |
cdfce7c2 TM |
957 | } |
958 | ||
8f451ba7 | 959 | function render_listing_extensions($class, $id, $limit, $offset, $edit=false, $barcode=true) { |
a25f85f8 | 960 | $html=''; |
cdfce7c2 | 961 | if(is_numeric($id)) { |
8f451ba7 | 962 | $html.=$this->render_single_record_details($class, $id, $barcode); |
cdfce7c2 | 963 | } else { |
a25f85f8 | 964 | $html.=$this->render_listing_navigation($class, '*', $limit, $offset); |
cdfce7c2 | 965 | } |
60ec0b75 | 966 | if($edit && $barcode) { |
f5baa075 | 967 | $html.= $this->render_form_edit($class, $id, false); |
cdfce7c2 | 968 | $action = $_SERVER['SCRIPT_NAME']."/$class/$id/delete"; |
35916247 TM |
969 | $html.=$this->html->form($action,'POST',array( |
970 | array(false,'DELETE','submit'), | |
971 | array('sure', false, 'checkbox', false, false, 'sure?') | |
972 | )); | |
cdfce7c2 | 973 | $action = $_SERVER['SCRIPT_NAME']."/$class/$id/image"; |
35916247 TM |
974 | $html.=$this->html->form($action,'POST',array( |
975 | array('image', false, 'file', false, 'size="30"'), | |
976 | array(false, 'IMAGE', 'submit') | |
977 | ), "enctype='multipart/form-data'"); | |
cdfce7c2 | 978 | } |
a25f85f8 | 979 | return $html; |
cdfce7c2 TM |
980 | } |
981 | ||
982 | function check_auth() { | |
042a4988 | 983 | new HTTP_Auth('WareHouse ['.BACKEND_AUTH.']', true, array($this->db->auth,'check_auth')); |
cdfce7c2 TM |
984 | } |
985 | ||
a8bbdc31 TM |
986 | function post_redirect_get($location, $message='', $error=false, $translate=true) { |
987 | $messaget = $translate ? T($message) : $message; | |
988 | $url_args = $messaget != '' ? '?message='.urlencode($messaget) : ''; | |
8acef003 | 989 | $location = $this->html->internal_url($location).$url_args; |
1f74892d | 990 | header('Location: '.$location); |
64f31c54 | 991 | if($error) trigger_error($message); |
7efdf72a TM |
992 | $location=htmlspecialchars($location); |
993 | die( | |
994 | "<meta http-equiv='refresh' content='0; url=$location'>". | |
a8bbdc31 | 995 | $messaget."<br />Location: <a href='$location'>$location</a>" |
7efdf72a | 996 | ); |
cdfce7c2 TM |
997 | } |
998 | ||
623c65e2 | 999 | function safe_include($dir,$name,$vars=array(),$ext='.inc.php') { |
64f31c54 | 1000 | if(preg_match('/[^a-zA-Z0-9-]/',$name)) $this->post_redirect_get('', 'SAFE INCLUDE: Securityfuck.', true); |
3e6c412e | 1001 | $filename="$dir/$name$ext"; |
64f31c54 | 1002 | if(!is_file($filename)) $this->post_redirect_get('', 'SAFE INCLUDE: Fuckfound.', true); |
623c65e2 | 1003 | foreach($vars as $var => $val) $$var=$val; |
3e6c412e TM |
1004 | ob_start(); |
1005 | include($filename); | |
1006 | $out=ob_get_contents(); | |
1007 | ob_end_clean(); | |
1008 | return $out; | |
1009 | } | |
1010 | ||
a8bbdc31 TM |
1011 | function check_input_validity($field, $value='', $ruleset=0) { |
1012 | $rules = array(0 => array( | |
1013 | 'model_barcode' => '/./', | |
ea921a95 | 1014 | 'barcode_name' => '/./', |
3e939604 TM |
1015 | 'item_serial' => '/./', |
1016 | 'vendor_id' => '/^[0-9]*$/' | |
a8bbdc31 TM |
1017 | )); |
1018 | if(isset($rules[$ruleset][$field]) && !preg_match($rules[$ruleset][$field], trim($value))) return false; | |
1019 | return true; | |
1020 | } | |
1021 | ||
bda4a4be | 1022 | function process_http_request_post($action=false, $class=false, $id=false, $force_redirect=false) { |
cdfce7c2 | 1023 | if($_SERVER['REQUEST_METHOD'] != 'POST') return; |
1f74892d | 1024 | //echo('<pre>'); //DEBUG (maybe todo remove), HEADERS ALREADY SENT!!!! |
cdfce7c2 TM |
1025 | |
1026 | //SephirPOST: | |
371a86f4 TM |
1027 | |
1028 | /* Tenhle foreach() prekopiruje promenne | |
7d20381f | 1029 | * z: $_POST['values'][$table][$column][$id]; |
371a86f4 TM |
1030 | * do: $values[$table][$id][$column] |
1031 | */ | |
7d20381f TM |
1032 | if(isset($_POST['values'])) { |
1033 | $values=array(); | |
1034 | foreach($_POST['values'] as $table => $columns) { | |
1035 | foreach($columns as $column => $ids) { | |
a8bbdc31 TM |
1036 | foreach($ids as $id => $val) { |
1037 | $values[$table][$id][$column] = trim($val); | |
1038 | if(!$this->check_input_validity($column,$val)) { | |
1039 | $message = "Spatny vstup: $column [$id] = \"$val\"; ". //XSS | |
1040 | $this->html->link('GO BACK', 'javascript:history.back()', false, false); | |
1041 | $this->post_redirect_get('', $message, false, false); | |
1042 | } | |
1043 | } | |
7d20381f | 1044 | } |
cdfce7c2 | 1045 | } |
7d20381f | 1046 | //die(print_r($values)); |
cdfce7c2 TM |
1047 | } |
1048 | ||
1049 | if($action) switch($action) { | |
1050 | case 'new': | |
b4dcae05 | 1051 | $replace = false; |
cdfce7c2 | 1052 | case 'edit': |
b4dcae05 | 1053 | if(!isset($replace)) $replace = true; |
64f31c54 | 1054 | $table = $class ? $class : 'item'; |
cdfce7c2 | 1055 | //print_r($values); //debug |
b4dcae05 | 1056 | $last = $this->db->insert_or_update_multitab($values, $replace); |
bda4a4be | 1057 | $last = $force_redirect ? $force_redirect."?last=$last" : "$table/$last/"; |
d9384cb5 | 1058 | $next = "$table/new/"; |
bda4a4be TM |
1059 | $message = $force_redirect ? '' : 'Hotovo. Další záznam přidáte '.$this->html->link('zde', $next).'.'; |
1060 | $this->post_redirect_get($last, $message); | |
cdfce7c2 TM |
1061 | break; |
1062 | case 'delete': | |
64f31c54 TM |
1063 | if(!isset($_POST['sure']) || !$_POST['sure']) $this->post_redirect_get("$class/$id/edit", 'Sure user expected :-)'); |
1064 | $this->db->delete($class, $id) || $this->post_redirect_get("$class/$id/edit", "V tabulce $class jentak neco mazat nebudes chlapecku :-P"); | |
1f74892d | 1065 | $this->post_redirect_get("$class", "Neco (pravdepodobne /$class/$id) bylo asi smazano. Fnuk :'-("); |
cdfce7c2 TM |
1066 | break; |
1067 | case 'image': | |
1068 | $image_classes = array('model'); //TODO, use this more widely across the code | |
64f31c54 | 1069 | if(!in_array($class, $image_classes)) $this->post_redirect_get("$class/$id/edit", "Nekdo nechce k DB Tride '$class' prirazovat obrazky!"); |
cdfce7c2 | 1070 | $image_destination = DIR_IMAGES."/$class/$id.jpg"; |
326a9fc9 | 1071 | if($_FILES['image']['name'] == '') $this->post_redirect_get("$class/$id/edit", 'Everything has to be called somehow!', true); |
cdfce7c2 | 1072 | if(move_uploaded_file($_FILES['image']['tmp_name'], $image_destination)) { |
1f74892d | 1073 | chmod ($image_destination, 0664); |
326a9fc9 TM |
1074 | $this->post_redirect_get("$class/$id", 'Image has been upbloated successfully :)'); |
1075 | } else $this->post_redirect_get("$class/$id/edit", 'File upload failed :(', true); | |
cdfce7c2 TM |
1076 | break; |
1077 | default: | |
326a9fc9 | 1078 | $this->post_redirect_get('', 'Nothin\' to do here my cutie :-*'); |
cdfce7c2 TM |
1079 | break; |
1080 | } | |
1081 | ||
1082 | die('POSTed pyčo!'); | |
1083 | } | |
1084 | ||
1085 | function process_http_request() { | |
fe5e0ee2 TM |
1086 | $listing_limit_classes = array('item','model'); |
1087 | ||
cdfce7c2 TM |
1088 | $this->check_auth(); |
1089 | ||
1090 | @ini_set('magic_quotes_gpc' , 'off'); | |
1091 | if(get_magic_quotes_gpc()) { | |
1092 | die(trigger_error("Error: magic_quotes_gpc needs to be disabled! F00K!")); | |
1093 | } | |
1094 | ||
1095 | $PATH_INFO=@trim($_SERVER[PATH_INFO]); | |
a5094502 | 1096 | if($PATH_INFO == '' || $PATH_INFO == '/') $PATH_INFO = FRONTEND_PAGE_WELCOME; |
cdfce7c2 | 1097 | $PATH_CHUNKS = preg_split('/\//', $PATH_INFO); |
81ab8aef | 1098 | //Sephirot: |
cdfce7c2 | 1099 | if(!isset($PATH_CHUNKS[1])) $PATH_CHUNKS[1]=''; |
ea921a95 | 1100 | if($_SERVER['REQUEST_METHOD'] != 'POST' && $PATH_CHUNKS[1]!='barcodeimg' && $PATH_CHUNKS[1]!='api') //TODO: tyhle podminky naznacujou, ze je v navrhu nejaka drobna nedomyslenost... |
e9f6461f | 1101 | echo $this->html->header($PATH_INFO,$this->db->auth->get_user()); |
81ab8aef | 1102 | switch($PATH_CHUNKS[1]) { //TODO: Move some branches to plugins if possible |
cdfce7c2 TM |
1103 | case 'test': //test |
1104 | die('Tell me why you cry'); | |
1105 | break; | |
88c38b26 TM |
1106 | case 'assistant': case 'api': //assistant|api |
1107 | $incdirs = array( | |
1108 | 'assistant' => DIR_ASSISTANTS, | |
1109 | 'api' => DIR_APIS | |
1110 | ); | |
de77377e TM |
1111 | $PATH_CHUNKS[3] = isset($PATH_CHUNKS[3]) ? trim($PATH_CHUNKS[3]) : false; |
1112 | $assistant_vars['SUBPATH'] = array_slice($PATH_CHUNKS, 3); | |
1113 | $assistant_vars['URL_INTERNAL'] = 'assistant/'.$PATH_CHUNKS[2]; | |
1114 | $assistant_vars['URL'] = $_SERVER['SCRIPT_NAME'].'/'.$assistant_vars['URL_INTERNAL']; | |
5ef6c52f | 1115 | $assistant_vars['ASSISTANT'] = $PATH_CHUNKS[2]; |
88c38b26 | 1116 | echo $this->safe_include($incdirs[$PATH_CHUNKS[1]],$PATH_CHUNKS[2],$assistant_vars); |
3e6c412e | 1117 | break; |
ea921a95 | 1118 | case 'barcodeimg': //barcode |
81ab8aef TM |
1119 | Barcode::download_barcode(implode('/',array_slice($PATH_CHUNKS, 2))); |
1120 | break; | |
cdfce7c2 TM |
1121 | default: //? |
1122 | $search = (isset($_GET['q']) && trim($_GET['q']) != '') ? trim($_GET['q']) : false; | |
1123 | $class = (isset($PATH_CHUNKS[1]) && $PATH_CHUNKS[1] != '') ? $PATH_CHUNKS[1] : 'item'; | |
1124 | if(!isset($PATH_CHUNKS[2])) $PATH_CHUNKS[2]=''; | |
1125 | switch($PATH_CHUNKS[2]) { | |
1126 | case 'new': //?/new | |
1127 | $this->process_http_request_post($PATH_CHUNKS[2], $class); | |
a25f85f8 | 1128 | echo $this->render_form_add($class); |
cdfce7c2 TM |
1129 | break; |
1130 | default: //?/? | |
1131 | $id = (isset($PATH_CHUNKS[2]) && is_numeric($PATH_CHUNKS[2]) ? (int) $PATH_CHUNKS[2] : false); | |
1132 | if(!isset($PATH_CHUNKS[3])) $PATH_CHUNKS[3]=''; | |
1133 | $edit=false; | |
1134 | switch($PATH_CHUNKS[3]) { | |
1135 | case 'edit': //?/?/edit | |
9fb856ba TM |
1136 | case 'image': //?/?/image |
1137 | case 'delete': //?/?/delete | |
cdfce7c2 TM |
1138 | $this->process_http_request_post($PATH_CHUNKS[3], $class, $id); |
1139 | $edit=true; | |
1140 | default: //?/?/? | |
9fb856ba | 1141 | $history = $PATH_CHUNKS[3] == 'history' ? true : false; |
fe5e0ee2 | 1142 | $limit = is_numeric($PATH_CHUNKS[3]) ? (int) $PATH_CHUNKS[3] : (in_array($class, $listing_limit_classes) ? FRONTEND_LISTING_LIMIT : 0); |
2415a365 | 1143 | $offset = isset($PATH_CHUNKS[4]) ? (int) $PATH_CHUNKS[4] : 0; |
d9d47bd3 | 1144 | $where = @is_array($_GET['where']) ? $_GET['where'] : false; |
8f451ba7 | 1145 | echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit, false); |
cb8a6861 | 1146 | echo $this->render_items($class, $id, $limit, $offset, $where, $search, $history); |
a25f85f8 | 1147 | echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit); |
cdfce7c2 TM |
1148 | //print_r(array("<pre>",$_SERVER)); |
1149 | break; | |
1150 | } | |
1151 | break; | |
1152 | } | |
1153 | break; | |
1154 | } | |
1155 | } | |
1156 | } | |
1157 | ||
1158 | $sklad = new Sklad_UI(); | |
1159 | $sklad->process_http_request(); | |
1160 | ||
54694117 | 1161 | echo('<br style="clear:both;" /><hr />'); |