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