Do vypisu pridano datum a cas
[mirrors/SokoMan.git] / index.php
1 <?php
2 /*
3 * SkladovySystem - Storage management system compatible with LMS
4 * Copyright (C) 2011 Tomas Mudrunka
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');
21 set_include_path(DIR_LIB.PATH_SEPARATOR.get_include_path());
22
23 require_once('Sklad_Auth.class/common.php');
24 require_once('HTTP_Auth.class.php');
25 require_once('Locale.class.php');
26 require_once('Barcode.class.php');
27
28 /**
29 * Trida poskytuje vseobecne funkce pro generovani HTML kodu
30 *
31 * Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)!
32 *
33 * @package HTML
34 * @author Tomas Mudrunka
35 */
36 class HTML {
37 function row($row,$type=false) {
38 $html = '';
39 if($type) $html.="<$type>";
40 $html.='<tr>';
41 $td = $type == 'thead' ? 'th' : 'td';
42 foreach($row as $var) {
43 if(trim($var) == '') $var = '&nbsp;';
44 $html.="<$td>$var</$td>";
45 }
46 $html.='</tr>';
47 if($type) $html.="</$type>";
48 return $html;
49 }
50
51 function table(&$table, $params='border=1') {
52 $html="<table $params>";
53 $header=true;
54 foreach($table as $row) {
55 if($header) {
56 $html.=$this->row(array_keys($row),'thead');
57 $header=false;
58 }
59 $html.=$this->row($row);
60 }
61 $html.='</table>';
62 return $html;
63 }
64
65 function link($title='n/a', $link='#void', $internal=true, $translate=true) {
66 if($internal && (!isset($link[0]) || $link[0] != '#')) $link = $this->internal_url($link);
67 if($translate) $title = T($title);
68 return "<a href='$link'>".$title."</a>";
69 }
70
71 function img($src='#void', $title='img', $options='width=64') {
72 $options = $options ? " $options" : '';
73 return "<img src='$src' alt='$title' title='$title'$options; />";
74 }
75
76 function input($name=false, $value=false, $type='text', $placeholder=false, $options=false, $prefix='') {
77 $html = T($prefix)."<input type='$type' ";
78 if($name) $html.= "name='$name' ";
79 if(!is_bool($value)) {
80 if($type == 'submit') $value = T($value);
81 $html.= "value='$value' ";
82 }
83 if($options) $html.= "$options ";
84 if($placeholder) $html.= "placeholder='$placeholder' ";
85 $html .= '/>';
86 return $html;
87 }
88
89 function form($action=false, $method=false, $inputs, $options=false) {
90 $action = $action ? " action='$action'" : '';
91 $method = $method ? " method='$method'" : '';
92 $options = $options ? " $options" : '';
93 $html = "<form$action$method$options>";
94 foreach($inputs as $input) $html .= call_user_func_array(array($this,'input'), $input);
95 $html .= "</form>";
96 return $html;
97 }
98
99 function select($name, $selectbox, $default=false) {
100 //echo('<pre>'); print_r($selectbox);
101 $html = "<select name='$name'>";
102
103 if($default) {
104 $value=$default; $title=$selectbox[$value];
105 $html .= "<option value='$value'>$value :: $title</option>";
106 unset($selectbox[$value]);
107 }
108 foreach($selectbox as $value => $title) {
109 $html .= "<option value='$value'>$value :: $title</option>";
110 }
111 $html .= "</select>";
112 return $html;
113 }
114
115 function ul($items,$tag=ul,$head='',$class=false) {
116 $class = $class ? " class='$class'" : '';
117 $html = "$head<$tag$class>";
118 foreach($items as $key => $value) {
119 $html .= '<li>';
120 if(is_numeric($key)) {
121 $html .= $value;
122 } else {
123 $html .= $this->link($key,$value);
124 }
125 $html .= '</li>';
126 }
127 $html .= "</$tag>";
128 return $html;
129 }
130
131 function div($html, $options) {
132 $options = $options ? " $options" : '';
133 return "<div$options>$html</div>";
134 }
135
136 function head($title=false,$charset='UTF-8',$more='') {
137 $title = $title ? "\n<title>$title</title>" : '';
138 $html= '<head>';
139 $html.= '<meta http-equiv="Content-Type" content="text/html; charset='.$charset.'" />'.$title.$more;
140 $html.= '</head>';
141 return $html;
142 }
143 }
144
145 /**
146 * Trida poskytuje podpurne funkce pro generovani HTML kodu specificke pro sklad
147 *
148 * Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)!
149 *
150 * @package Sklad_HTML
151 * @author Tomas Mudrunka
152 */
153 class Sklad_HTML extends HTML { //TODO: Split into few more methods
154 function header($title='', $user=array()) {
155 $home = URL_HOME;
156 $script = $_SERVER['SCRIPT_NAME'];
157 $search = htmlspecialchars(@trim($_GET['q']));
158 $message = strip_tags(@trim($_GET['message']),'<a><b><u><i>');
159 $instance = INSTANCE_ID != '' ? '/'.INSTANCE_ID : '';
160 $user_id = htmlspecialchars($user['id']);
161 $user_gid = htmlspecialchars($user['gid']);
162 $user_name = htmlspecialchars($user['name']);
163 $time = date('r');
164 //$title = T($title); //TODO
165
166 $html = $this->head("SōkoMan$title");
167 $html .= <<<EOF
168 <h1 style="display: inline;"><a href="$script/">SōkoMan</a><small>$instance$title</small></h1>
169 <div style="float:right; text-align:right;">
170 Logged in as <b>$user_name</b> [UID: <b>$user_id</b>; GID: <b>$user_gid</b>]<br />
171 Page loaded at $time
172 </div>
173
174 <style type="text/css">
175 * { font-family: arial; }
176 td,body { background-color: white; }
177 table { background-color: orange; border: orange; }
178 a, a img { text-decoration:none; color: darkblue; border:none; }
179 li a, a:hover { text-decoration:underline; }
180
181 .menu li {
182 float: left;
183 padding: 0.2em;
184 }
185
186 .menu * li {
187 float: none;
188 }
189
190 .menu * menu {
191 position: absolute;
192 padding: 0.2em;
193 }
194
195 .menu, .menu * menu {
196 list-style: none;
197 }
198
199 .menu * menu {
200 border: 1px solid orange;
201 display: none;
202 margin: 0;
203 }
204
205 .menu li:hover menu, .menu li:hover {
206 display: block;
207 background-color: yellow;
208 }
209
210 </style>
211
212 <div>
213 EOF;
214
215 $assistants=array();
216 foreach(scandir(DIR_ASSISTANTS) as $item) {
217 if($item == '.' || $item == '..') continue;
218 $item = preg_replace('/\.inc\.php$/','',$item);
219 $assistants[$item] = "assistant/$item";
220 }
221
222 $tables=array('item','model','category','producer','vendor','room','status');
223
224 foreach($tables as $table) {
225 $listable[$table] = $table;
226 $insertable[$table] = "$table/new";
227 }
228
229 $html .= $this->ul(array(
230 'Home' => '',
231 'Logout' => '?logout',
232 0 => $this->ul($assistants,'menu',$this->link('Assistants','#')),
233 1 => $this->ul($insertable,'menu',$this->link('New','#')),
234 2 => $this->ul($listable,'menu',$this->link('List','#'))
235 ),'menu', '', 'menu');
236
237 $html .= '<div style="float: right;">';
238
239 $html .= $this->form("$script/assistant/go", 'GET', array(
240 array('q','','text','smart id...', 'autofocus'),
241 array(false,'go','submit')
242 ), 'style="float: left;"');
243
244 $html .= $this->form('?', 'GET', array(
245 array('q',$search,'text','regexp...'),
246 array(false,'filter','submit')
247 ), 'style="float: left;"');
248
249 $html .= '</div>';
250
251 $html .= <<<EOF
252 </div>
253 <hr style="clear: both;" />
254 <div style="background-color:#FFDDDD;">
255 <font color="red">$message</font>
256 </div>
257 EOF;
258
259 return $html;
260 }
261
262 function internal_url($link) {
263 return $_SERVER['SCRIPT_NAME'].'/'.$link;
264 }
265
266 function table_add_images(&$table) {
267 $image = array('model_id');
268 foreach($table as $id => $row) {
269 foreach($image as $column) if(isset($table[$id][$column])) {
270 $type = @array_shift(preg_split('/_/', $column));
271 $src=URL_IMAGES."/$type/".$table[$id][$column].'.jpg';
272 $table[$id][$type.'_image']=$this->img($src, $table[$id][$column]);
273 }
274 }
275 }
276
277 function render_barcode($barcode,$opts=false) {
278 return $this->link($this->img($this->internal_url("barcode/$barcode"),$barcode,$opts),"barcode/$barcode",true,false);
279 }
280
281 function table_add_barcodes(&$table) {
282 $image = array('model_barcode', 'item_serial');
283 foreach($table as $id => $row) {
284 foreach($image as $column) if(isset($table[$id][$column])) {
285 $table[$id][$column]=$this->render_barcode($table[$id][$column]);
286 }
287 }
288 }
289
290 function table_collapse(&$table) {
291 $collapse = array(
292 'item_id' => 'item_id',
293 'model_id' => 'model_name',
294 'category_id' => 'category_name',
295 'producer_id' => 'producer_name',
296 'vendor_id' => 'vendor_name',
297 'room_id' => 'room_name',
298 'status_id' => 'status_name',
299 );
300 foreach($table as $id => $row) {
301 foreach($collapse as $link => $title)
302 if(isset($table[$id][$link]) && isset($row[$title])) {
303 $type = @array_shift(preg_split('/_/', $link));
304 if($link != $title) unset($table[$id][$link]);
305 $table[$id][$title]=$this->link($row[$title], $type.'/'.$row[$link].'/');
306 }
307 }
308 }
309
310 function table_sort(&$table) {
311 $precedence = array('item_id', 'model_image', 'model_name','model_descript','category_name','status_name','room_name');
312 $table_sorted = array();
313 foreach($table as $id => $row) {
314 $table_sorted[$id] = array();
315 foreach($precedence as $column) if(isset($table[$id][$column])) {
316 $table_sorted[$id][T($column)]=$table[$id][$column];
317 unset($table[$id][$column]);
318 }
319 //$table_sorted[$id]=array_merge($table_sorted[$id],$table[$id]);
320 foreach($table[$id] as $key => $val) $table_sorted[$id][T($key)] = $val; //array_merge with T() translating
321 }
322 $table = $table_sorted;
323 }
324
325 function render_item_table($table) {
326 $this->table_add_images($table);
327 $this->table_add_barcodes($table);
328 $this->table_collapse($table);
329 $this->table_sort($table);
330 return $this->table($table);
331 }
332
333 function render_insert_inputs($class,$columns,$selectbox,$current,$hidecols,$update) {
334 $html = '';
335 foreach($columns as $column) {
336 $html.=T($class).':<b>'.T($column['Field']).'</b>: ';
337 $name="values[$class][".$column['Field'].'][]';
338 $val = $update && isset($current[$column['Field']]) ? $current[$column['Field']] : false;
339 switch(true) {
340 case (preg_match('/auto_increment/', $column['Extra']) || in_array($column['Field'], $hidecols)):
341 if(!$val) $val = '';
342 $html.=$this->input($name, $val, 'hidden');
343 $html.=$val.'(AUTO)';
344 break;
345 case isset($selectbox[$column['Field']]):
346 $html.=$this->select($name,$selectbox[$column['Field']],$val);
347 break;
348 default:
349 $html.=$this->input($name, $val);
350 break;
351 }
352 $html.='<br />';
353 }
354 return $html;
355 }
356
357 function render_insert_form_multi($array) {
358 $html = '';
359 $head=false;
360
361 foreach($array as $key => $args) {
362 $parts=array('inputs');
363 if(!$head) { $head = true;
364 $parts[]='head';
365 }
366 if(!isset($array[$key+1])) {
367 $parts[]='foot';
368 $hr = '';
369 } else $hr = '<hr />';
370 //$args[] = false;
371 $args[] = $parts;
372 $html .= call_user_func_array(array($this, 'render_insert_form'), $args);
373 $html .= $hr;
374 }
375 return $html;
376 }
377
378 function render_insert_form($class, $columns, $selectbox=array(), $current=false, $hidecols=false, $action=false, $multi_insert=true, $parts=false) {
379 $html = '';
380 //print_r($parts);
381 //echo('<pre>'); print_r($selectbox);
382 //echo('<pre>'); print_r($current);
383 $update = false;
384 if(is_array($current)) {
385 $update = true;
386 $current = array_shift($current);
387 }
388
389 if(!is_array($hidecols)) $hidecols = array();
390 $hidecols = array_merge($hidecols, array('item_author', 'item_valid_from', 'item_valid_till')); //TODO Autodetect
391
392 if(!is_array($parts) || in_array('head', $parts)) {
393 $action = $action ? " action='$action'" : false;
394 $html.="<form$action method='POST'>"; //TODO: use $this->form()
395 $html.='<span><div name="input_set" style="float:left; border:1px solid grey; padding: 1px; margin: 1px;">';
396 }
397
398 if(!is_array($parts) || in_array('inputs', $parts))
399 $html.=$this->render_insert_inputs($class,$columns,$selectbox,$current,$hidecols,$update);
400
401 if(!is_array($parts) || in_array('foot', $parts)) {
402 $html .= '</div></span><br style="clear:both" />';
403 if($multi_insert) { //TODO, move to separate JS file
404 $html.=<<<EOF
405 <script>
406 function duplicate_element(what, where) {
407 var node = document.getElementsByName(what)[0];
408 node.parentNode.appendChild(node.cloneNode(true));
409 }
410 </script>
411 <a href='#' onClick="duplicate_element('input_set')">+</a>
412 EOF;
413 }
414
415 $btn = is_array($current) ? 'UPDATE' : 'INSERT'; //TODO: $current may be set even when inserting...
416 $html.=$this->input(false, $btn, 'submit');
417 $html.='</form>';
418 }
419 return $html;
420 }
421 }
422
423 /**
424 * Trida poskytuje rozhrani k databazi skladu
425 *
426 * @package Sklad_DB
427 * @author Tomas Mudrunka
428 */
429 class Sklad_DB extends PDO {
430 function __construct() {
431 $this->auth = new Sklad_Auth();
432
433 parent::__construct(
434 DB_DSN, DB_USER, DB_PASS,
435 array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8") //Force UTF8 for MySQL
436 );
437 }
438
439 function escape($str) {
440 return preg_replace('(^.|.$)', '', $this->quote($str)); //TODO HACK
441 }
442
443 function quote_identifier($str) {
444 return '`'.$this->escape($str).'`'; //TODO HACK
445 }
446
447 function build_query_select($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false, $order=false, $suffix_id='_id') {
448 //Configuration
449 $join = array(
450 'item' => array('model', 'category', 'producer', 'vendor', 'room', 'status'),
451 'model' => array('category', 'producer')
452 ); //TODO Autodetect using foreign keys?
453 $search_fields = array(
454 'item' => array('item_id','item_serial','model_name','model_barcode','model_descript','producer_name','vendor_name')
455 ); //TODO Autodetect
456
457 //Init
458 if(is_array($where)) foreach($where as $key => $value) $where[$key] = $key.' '.$value; //TODO: escape SQLi!!!
459
460 //Escaping
461 $class = $this->escape($class);
462
463 //SELECT
464 $sql="SELECT * FROM `$class`\n";
465 //JOIN
466 if(isset($join[$class])) foreach($join[$class] as $j) $sql .= "LEFT JOIN `$j` USING($j$suffix_id)\n";
467 //WHERE/REGEXP
468 if($search) {
469 $search = $this->quote($search);
470 if(!isset($search_fields[$class])) die(trigger_error(T("Can't search in $class table yet :-("))); //TODO: post_redirect_get
471 $sql_search = '';
472 foreach($search_fields[$class] as $column) $sql_search .= "OR $column REGEXP $search ";
473 $where[] = "FALSE $sql_search";
474 } elseif($id) $where[] = "$class$suffix_id = $id";
475 if(!$history && $this->contains_history($class)) $where[] = $class.'_valid_till=0';
476
477 if($where) $sql .= 'WHERE ('.implode(') AND (', $where).")\n";
478 //ORDER
479 if(!$order) $order = $class.$suffix_id;
480 if($this->contains_history($class)) $order .= ",${class}_valid_from DESC";
481 $sql .= "ORDER BY $order\n";
482 //LIMIT/OFFSET
483 if($limit) {
484 $limit = $this->escape((int)$limit);
485 $offset = $this->escape((int)$offset);
486 $sql .= "LIMIT $offset,$limit\n";
487 }
488
489 return $sql;
490 }
491
492 function safe_query($sql, $fatal=true) {
493 $result = $this->query($sql);
494 if(!$result) {
495 $error = $this->errorInfo();
496 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>");
497 if($fatal) die();
498 }
499 return $result;
500 }
501
502 function translate_query_results($result) {
503 $translate_cols = array('status_name', 'item_valid_till'); //TODO: Hardcoded
504 foreach($result as $key => $row) {
505 foreach($translate_cols as $col) if(isset($result[$key][$col])){
506 $result[$key][$col] = T($result[$key][$col]);
507 }
508 }
509 return $result;
510 }
511
512 function safe_query_fetch($sql, $fatal=true, $fetch_flags = PDO::FETCH_ASSOC, $translate=true) {
513 $result = $this->safe_query($sql, $fatal)->fetchAll($fetch_flags);
514 if($translate) $result = $this->translate_query_results($result);
515 return $result;
516 }
517
518
519 function get_listing($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false, $indexed=array(), $suffix_id='_id') {
520 $sql = $this->build_query_select($class, $id, $limit, $offset, $where, $search, $history);
521 $result = $this->safe_query_fetch($sql);
522 if(!$result || !is_array($indexed)) return $result;
523
524 foreach($result as $key => $row) $indexed[$row[$class.$suffix_id]]=$row;
525 return $indexed;
526 }
527
528 function get_columns($class,$disable_cols=array()) { //TODO: Not sure if compatible with non-MySQL DBs
529 $class = $this->escape($class);
530 $sql = "SHOW COLUMNS FROM $class;";
531 $columns = $this->safe_query_fetch($sql);
532 /*foreach($columns as $colk => $col) foreach($col as $key => $val) {
533 if(in_array($col['Field'],$disable_cols)) $columns[$colk]['Extra']='auto_increment';
534 }*/
535 return $columns;
536 }
537
538 function columns_get_selectbox($columns, $class=false, $suffix_id='_id', $suffix_name='_name') {
539 $selectbox=array();
540 foreach($columns as $column) {
541 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)!
542 if($class && $column['Field'] == $class.$suffix_id) continue;
543 if(!preg_match('/'.$suffix_id.'$/', $column['Field'])) continue;
544 $table=preg_replace('/'.$suffix_id.'$/','',$column['Field']);
545
546 $history = $this->contains_history($table) ? " WHERE ${table}_valid_till=0" : '';
547 $sql = "SELECT $table$suffix_id, $table$suffix_name FROM $table$history;"; //TODO use build_query_select()!!!
548 $result = $this->safe_query_fetch($sql, false);
549 if(!$result) continue;
550 foreach($result as $row) $selectbox[$table.$suffix_id][$row[$table.$suffix_id]]=$row[$table.$suffix_name];
551 }
552 //echo('<pre>'); print_r($selectbox);
553 return array_filter($selectbox, 'ksort');
554 }
555
556 function map_unique($key, $value, $select, $table, $fatal=true) { //TODO: Guess $select and $table if not passed
557 $history = $this->contains_history($table) ? " AND ${table}_valid_till=0" : '';
558 $value=$this->quote($value);
559 $sql = "SELECT $select FROM $table WHERE $key=$value$history LIMIT 1;"; //TODO use build_query_select()!!!
560 $result = $this->safe_query_fetch($sql);
561 if(isset($result[0][$select])) return $result[0][$select]; else if($fatal) die(trigger_error(T('Record not found!'))); //TODO post_redirect_get...
562 }
563
564 function contains_history($table) {
565 $history_tables = array('item'); //TODO Autodetect
566 return in_array($table, $history_tables);
567 }
568
569 function build_query_insert($table, $values, $replace=true, $suffix_id='_id') {
570 //Init
571 $history = $this->contains_history($table);
572
573 //Escaping
574 $table = $this->escape($table);
575
576 //Get list of POSTed columns
577 $columns_array = array_map(array($this,'escape'), array_keys($values[0]));
578 $columns = implode(',',$columns_array);
579
580 //Build query
581 $sql = '';
582 //echo('<pre>'); die(print_r($values));
583
584 if($history) {
585 $history_update=false; foreach($values as $row) if(is_numeric($row[$table.'_id'])) $history_update=true;
586 if($history_update) {
587 $sql .= "UPDATE $table";
588 $sql .= " SET ${table}_valid_till=NOW()";
589 $sql .= " WHERE ${table}_valid_till=0 AND (";
590 $or = '';
591 foreach($values as $row) {
592 $sql .= $or.' '.$table.'_id='.$this->quote($row[$table.'_id']);
593 $or = ' OR';
594 }
595 $sql .= " );\n\n";
596 $replace = false;
597 }
598 }
599
600 //Insert into table (columns)
601 $sql .= "INSERT INTO $table ($columns) VALUES ";
602
603 //Values (a,b,c),(d,e,f)
604 $comma='';
605 foreach($values as $row) {
606 $row_quoted = array_map(array($this,'quote'), $row); //Check
607 if($history) {
608 foreach($row as $column => $value) {
609 switch($column) {
610 case $table.'_valid_from':
611 $row_quoted[$column] = 'NOW()';
612 break;
613 case $table.'_valid_till':
614 $row_quoted[$column] = '0';
615 break;
616 case $table.'_author':
617 $row_quoted[$column] = $this->auth->get_user_id();
618 //die($this->auth->get_user_id().'=USER');
619 break;
620 }
621 }
622 }
623 $sql .= $comma.'('.implode(',',$row_quoted).')';
624 $comma = ',';
625 }
626
627 //On duplicate key
628 if($replace) {
629 foreach($columns_array as $col) {
630 if($col == $table.'_id' || $col == $table.'_valid_till') continue;
631 $on_duplicate[] = "$col=VALUES($col)";
632 }
633 $sql .= "\nON DUPLICATE KEY UPDATE ".implode(',', $on_duplicate);
634 }
635
636 //Terminate
637 $sql .= ';';
638 return $sql;
639 }
640
641 function insert_or_update($table, $values, $replace=true) {
642 $sql = $this->build_query_insert($table, $values, $replace);
643 $this->safe_query($sql);
644 return $this->lastInsertId();
645 }
646
647 function insert_or_update_multitab($values, $replace=true) {
648 $last=false;
649 foreach($values as $table => $rows) $last = $this->insert_or_update($table, $rows, $replace);
650 return $last;
651 }
652
653 function delete($table, $id, $suffix_id='_id') {
654 if($this->contains_history($table)) return false;
655 $key = $this->escape($table.$suffix_id);
656 $table = $this->escape($table);
657 $id = $this->quote($id);
658 return $this->safe_query("DELETE FROM $table WHERE $key = $id LIMIT 1;");
659 }
660 }
661
662 /**
663 * Trida poskytuje high-level rozhrani k databazi skladu
664 *
665 * @package Sklad_DB_Abstract
666 * @author Tomas Mudrunka
667 */
668 class Sklad_DB_Abstract extends Sklad_DB {
669 //TODO Code
670 }
671
672 /**
673 * Trida implementuje uzivatelske rozhrani skladu
674 *
675 * Example usage:
676 * $sklad = new Sklad_UI();
677 * $sklad->process_http_request();
678 *
679 * @package Sklad_UI
680 * @author Tomas Mudrunka
681 */
682 class Sklad_UI {
683 function __construct() {
684 $this->db = new Sklad_DB();
685 $this->html = new Sklad_HTML();
686 }
687
688 function render_items($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false) {
689 return $this->html->render_item_table($this->db->get_listing($class, $id, $limit, $offset, $where, $search, $history, false));
690 }
691
692 function render_form_add($class) {
693 $columns = $this->db->get_columns($class);
694 $selectbox = $this->db->columns_get_selectbox($columns, $class);
695 return $this->html->render_insert_form($class, $columns, $selectbox);
696 }
697
698 function render_form_edit($class, $id) {
699 $columns = $this->db->get_columns($class);
700 $selectbox = $this->db->columns_get_selectbox($columns, $class);
701 $current = $this->db->get_listing($class, $id, 1);
702 return $this->html->render_insert_form($class, $columns, $selectbox, $current);
703 }
704
705 function render_single_record_details($class, $id) {
706 $id_next = $id + 1;
707 $id_prev = $id - 1 > 0 ? $id - 1 : 0;
708 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
709 $html='';
710 $html.= $this->html->link('<<', "$class/$id_prev/");
711 $html.= '-';
712 $html.= $this->html->link('>>', "$class/$id_next/");
713 $html.= '<br />';
714 $html.='<span style="float:right;">'.$this->html->render_barcode(BARCODE_PREFIX.strtoupper("$class/$id")).'</span>';
715 $html.= $this->html->link('edit', "$class/$id/edit/");
716 if($this->db->contains_history($class)) $html.= ' ][ '.$this->html->link('history', "$class/$id/history/");
717 return $html;
718 }
719
720 function render_listing_navigation($class, $id, $limit, $offset) {
721 $offset_next = $offset + $limit;
722 $offset_prev = $offset - $limit > 0 ? $offset - $limit : 0;
723 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
724 $html='';
725 $html.= $this->html->link('<<', "$class/$id/$limit/$offset_prev/$get");
726 $html.= '-';
727 $html.= $this->html->link('>>', "$class/$id/$limit/$offset_next/$get");
728 $html.= '<br />';
729 $html.= $this->html->link('new', "$class/new/$get");
730 return $html;
731 }
732
733 function render_listing_extensions($class, $id, $limit, $offset, $edit=false) {
734 $html='';
735 if(is_numeric($id)) {
736 $html.=$this->render_single_record_details($class, $id);
737 } else {
738 $html.=$this->render_listing_navigation($class, '*', $limit, $offset);
739 }
740 if($edit) {
741 $html.= $this->render_form_edit($class, $id);
742 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/delete";
743 $html.=$this->html->form($action,'POST',array(
744 array(false,'DELETE','submit'),
745 array('sure', false, 'checkbox', false, false, 'sure?')
746 ));
747 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/image";
748 $html.=$this->html->form($action,'POST',array(
749 array('image', false, 'file', false, 'size="30"'),
750 array(false, 'IMAGE', 'submit')
751 ), "enctype='multipart/form-data'");
752 }
753 return $html;
754 }
755
756 function check_auth() {
757 new HTTP_Auth('SkladovejSystem', true, array($this->db->auth,'check_auth'));
758 }
759
760 function post_redirect_get($location, $message='', $error=false) {
761 $url_args = $message != '' ? '?message='.urlencode(T($message)) : '';
762 $location = $this->html->internal_url($location).$url_args;
763 header('Location: '.$location);
764 if($error) trigger_error($message);
765 $location=htmlspecialchars($location);
766 die(
767 "<meta http-equiv='refresh' content='0; url=$location'>".
768 T($message)."<br />Location: <a href='$location'>$location</a>"
769 );
770 }
771
772 function safe_include($dir,$name,$vars=array(),$ext='.inc.php') {
773 if(preg_match('/[^a-zA-Z0-9-]/',$name)) $this->post_redirect_get('', 'SAFE INCLUDE: Securityfuck.', true);
774 $filename="$dir/$name$ext";
775 if(!is_file($filename)) $this->post_redirect_get('', 'SAFE INCLUDE: Fuckfound.', true);
776 foreach($vars as $var => $val) $$var=$val;
777 ob_start();
778 include($filename);
779 $out=ob_get_contents();
780 ob_end_clean();
781 return $out;
782 }
783
784 function process_http_request_post($action=false, $class=false, $id=false, $force_redirect=false) {
785 if($_SERVER['REQUEST_METHOD'] != 'POST') return;
786 //echo('<pre>'); //DEBUG (maybe todo remove), HEADERS ALREADY SENT!!!!
787
788 //SephirPOST:
789
790 /* Tenhle foreach() prekopiruje promenne
791 * z: $_POST['values'][$table][$column][$id];
792 * do: $values[$table][$id][$column]
793 */
794 if(isset($_POST['values'])) {
795 $values=array();
796 foreach($_POST['values'] as $table => $columns) {
797 foreach($columns as $column => $ids) {
798 foreach($ids as $id => $val) $values[$table][$id][$column] = $val;
799 }
800 }
801 //die(print_r($values));
802 }
803
804 if($action) switch($action) {
805 case 'new':
806 $replace = false;
807 case 'edit':
808 if(!isset($replace)) $replace = true;
809 $table = $class ? $class : 'item';
810 //print_r($values); //debug
811 $last = $this->db->insert_or_update_multitab($values, $replace);
812 $last = $force_redirect ? $force_redirect."?last=$last" : "$table/$last/";
813 $next = "$table/new/";
814 $message = $force_redirect ? '' : 'Hotovo. Další záznam přidáte '.$this->html->link('zde', $next).'.';
815 $this->post_redirect_get($last, $message);
816 break;
817 case 'delete':
818 if(!isset($_POST['sure']) || !$_POST['sure']) $this->post_redirect_get("$class/$id/edit", 'Sure user expected :-)');
819 $this->db->delete($class, $id) || $this->post_redirect_get("$class/$id/edit", "V tabulce $class jentak neco mazat nebudes chlapecku :-P");
820 $this->post_redirect_get("$class", "Neco (pravdepodobne /$class/$id) bylo asi smazano. Fnuk :'-(");
821 break;
822 case 'image':
823 $image_classes = array('model'); //TODO, use this more widely across the code
824 if(!in_array($class, $image_classes)) $this->post_redirect_get("$class/$id/edit", "Nekdo nechce k DB Tride '$class' prirazovat obrazky!");
825 $image_destination = DIR_IMAGES."/$class/$id.jpg";
826 if($_FILES['image']['name'] == '') $this->post_redirect_get("$class/$id/edit", 'Everything has to be called somehow!', true);
827 if(move_uploaded_file($_FILES['image']['tmp_name'], $image_destination)) {
828 chmod ($image_destination, 0664);
829 $this->post_redirect_get("$class/$id", 'Image has been upbloated successfully :)');
830 } else $this->post_redirect_get("$class/$id/edit", 'File upload failed :(', true);
831 break;
832 default:
833 $this->post_redirect_get('', 'Nothin\' to do here my cutie :-*');
834 break;
835 }
836
837 die('POSTed pyčo!');
838 }
839
840 function process_http_request() {
841 $this->check_auth();
842
843 @ini_set('magic_quotes_gpc' , 'off');
844 if(get_magic_quotes_gpc()) {
845 die(trigger_error("Error: magic_quotes_gpc needs to be disabled! F00K!"));
846 }
847
848 $PATH_INFO=@trim($_SERVER[PATH_INFO]);
849 $PATH_CHUNKS = preg_split('/\//', $PATH_INFO);
850 //Sephirot:
851 if(!isset($PATH_CHUNKS[1])) $PATH_CHUNKS[1]='';
852 if($_SERVER['REQUEST_METHOD'] != 'POST' && $PATH_CHUNKS[1]!='barcode') //TODO: tyhle podminky naznacujou, ze je v navrhu nejaka drobna nedomyslenost...
853 echo $this->html->header($PATH_INFO,$this->db->auth->get_user());
854 switch($PATH_CHUNKS[1]) { //TODO: Move some branches to plugins if possible
855 case 'test': //test
856 die('Tell me why you cry');
857 break;
858 case 'assistant': //assistant
859 $PATH_CHUNKS[3] = isset($PATH_CHUNKS[3]) ? trim($PATH_CHUNKS[3]) : false;
860 $assistant_vars['SUBPATH'] = array_slice($PATH_CHUNKS, 3);
861 $assistant_vars['URL_INTERNAL'] = 'assistant/'.$PATH_CHUNKS[2];
862 $assistant_vars['URL'] = $_SERVER['SCRIPT_NAME'].'/'.$assistant_vars['URL_INTERNAL'];
863 $assistant_vars['ASSISTANT'] = $PATH_CHUNKS[2];
864 echo $this->safe_include(DIR_ASSISTANTS,$PATH_CHUNKS[2],$assistant_vars);
865 break;
866 case 'barcode': //barcode
867 Barcode::download_barcode(implode('/',array_slice($PATH_CHUNKS, 2)));
868 break;
869 default: //?
870 $search = (isset($_GET['q']) && trim($_GET['q']) != '') ? trim($_GET['q']) : false;
871 $class = (isset($PATH_CHUNKS[1]) && $PATH_CHUNKS[1] != '') ? $PATH_CHUNKS[1] : 'item';
872 if(!isset($PATH_CHUNKS[2])) $PATH_CHUNKS[2]='';
873 switch($PATH_CHUNKS[2]) {
874 case 'new': //?/new
875 $this->process_http_request_post($PATH_CHUNKS[2], $class);
876 echo $this->render_form_add($class);
877 break;
878 default: //?/?
879 $id = (isset($PATH_CHUNKS[2]) && is_numeric($PATH_CHUNKS[2]) ? (int) $PATH_CHUNKS[2] : false);
880 if(!isset($PATH_CHUNKS[3])) $PATH_CHUNKS[3]='';
881 $edit=false;
882 switch($PATH_CHUNKS[3]) {
883 case 'edit': //?/?/edit
884 case 'image': //?/?/image
885 case 'delete': //?/?/delete
886 $this->process_http_request_post($PATH_CHUNKS[3], $class, $id);
887 $edit=true;
888 default: //?/?/?
889 $history = $PATH_CHUNKS[3] == 'history' ? true : false;
890 $limit = (int) (isset($PATH_CHUNKS[3]) ? $PATH_CHUNKS[3] : '0');
891 $offset = (int) (isset($PATH_CHUNKS[4]) ? $PATH_CHUNKS[4] : '0');
892 $where = @is_array($_GET['where']) ? $_GET['where'] : false;
893 echo $this->render_items($class, $id, $limit, $offset, $where, $search, $history);
894 echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit);
895 //print_r(array("<pre>",$_SERVER));
896 break;
897 }
898 break;
899 }
900 break;
901 }
902 }
903 }
904
905 $sklad = new Sklad_UI();
906 $sklad->process_http_request();
907
908 echo('<br style="clear:both;" /><hr />');
This page took 1.742155 seconds and 5 git commands to generate.