odstranen duplicitni kod z funkce pro generovani formulare
[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');
21require_once('Sklad_LMS-fake.class.php');
22require_once('HTTP_Auth.class.php');
23
78bf26a5
TM
24/**
25* Trida poskytuje podpurne funkce pro generovani HTML kodu specificke pro sklad
26*
fc5c5b8b
TM
27* Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)!
28*
78bf26a5
TM
29* @package Sklad_HTML
30* @author Tomas Mudrunka
31*/
cdfce7c2 32class Sklad_HTML {
fc5c5b8b 33 function header($title='') {
cdfce7c2
TM
34 $home = URL_HOME;
35 $script = $_SERVER['SCRIPT_NAME'];
36 $search = @trim($_GET['q']);
fc5c5b8b 37 return <<<EOF
10562613 38<head>
39 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
40</head>
cdfce7c2
TM
41<h1><a href="$script/">SystémSklad</a><small>$title</small></h1>
42<div>
43 <menu>
44 <li><a href="?logout">Logout</a></li>
45 <li><a href="$script/">Home</a></li>
46 </menu>
47 <form action="?" method="GET">
48 <input type="text" name="q" placeholder="regexp..." value="$search" />
49 <input type="submit" value="filter" />
50 </form>
51 <!-- form action="$script/" method="GET">
52 <input type="text" name="q" placeholder="regexp..." value="$search" />
53 <input type="submit" value="search items" />
54 </form -->
55</div>
56EOF;
57 }
58
fc5c5b8b
TM
59 function row($row) {
60 $html='<tr>';
cdfce7c2
TM
61 foreach($row as $var) {
62 if(trim($var) == '') $var = '&nbsp;';
fc5c5b8b 63 $html.="<td>$var</td>";
cdfce7c2 64 }
fc5c5b8b
TM
65 $html.='</tr>';
66 return $html;
cdfce7c2
TM
67 }
68
fc5c5b8b
TM
69 function table(&$table, $params='border=1') {
70 $html="<table $params>";
cdfce7c2
TM
71 $header=true;
72 foreach($table as $row) {
73 if($header) {
fc5c5b8b 74 $html.=$this->row(array_keys($row));
cdfce7c2
TM
75 $header=false;
76 }
fc5c5b8b 77 $html.=$this->row($row);
cdfce7c2 78 }
fc5c5b8b
TM
79 $html.='</table>';
80 return $html;
cdfce7c2
TM
81 }
82
83 function link($title='n/a', $link='#void', $internal=true) {
84 if($internal) $link = $_SERVER['SCRIPT_NAME'].'/'.$link;
85 return "<a href='$link'>$title</a>";
86 }
87
88 function img($src='#void', $title='img') {
89 return "<img src='$src' alt='$title' title='$title' width=64 />";
90 }
91
92 function table_add_images(&$table) {
93 $image = array('model_id');
94 foreach($table as $id => $row) {
95 foreach($image as $column) if(isset($table[$id][$column])) {
96 $type = @array_shift(preg_split('/_/', $column));
97 $src=URL_IMAGES."/$type/".$table[$id][$column].'.jpg';
98 $table[$id][$type.'_image']=$this->img($src, $table[$id][$column]);
99 }
100 }
101 }
102
103 function table_collapse(&$table) {
104 $collapse = array(
105 'item_id' => 'item_id',
106 'model_id' => 'model_name',
107 'category_id' => 'category_name',
108 'producer_id' => 'producer_name',
109 'vendor_id' => 'vendor_name',
110 'room_id' => 'room_name',
111 'status_id' => 'status_name',
112 );
113 foreach($table as $id => $row) {
114 foreach($collapse as $link => $title)
115 if(isset($table[$id][$link])) {
116 $type = @array_shift(preg_split('/_/', $link));
117 if($link != $title) unset($table[$id][$link]);
118 $table[$id][$title]=$this->link($row[$title], $type.'/'.$row[$link].'/');
119 }
120 }
121 }
122
123 function table_sort(&$table) {
124 $precedence = array('item_id', 'model_image', 'model_name','model_descript','category_name','status_name','room_name');
125 $table_sorted = array();
126 foreach($table as $id => $row) {
127 $table_sorted[$id] = array();
128 foreach($precedence as $column) if(isset($table[$id][$column])) {
129 $table_sorted[$id][$column]=$table[$id][$column];
130 unset($table[$id][$column]);
131 }
132 $table_sorted[$id]=array_merge($table_sorted[$id],$table[$id]);
133 }
134 $table = $table_sorted;
135 }
136
fc5c5b8b 137 function render_item_table($table) {
cdfce7c2
TM
138 $this->table_add_images($table);
139 $this->table_collapse($table);
140 $this->table_sort($table);
fc5c5b8b 141 return $this->table($table);
cdfce7c2
TM
142 }
143
144 function input($name=false, $value=false, $type='text', $placeholder=false, $options=false) {
145 $html = "<input type='$type' ";
146 if($name) $html.= "name='$name' ";
147 if(!is_bool($value)) $html.= "value='$value' ";
148 if($options) $html.= "$options ";
149 if($placeholder) $html.= "placeholder='$placeholder' ";
150 $html .= '/>';
151 return $html;
152 }
153
154 function select($name, $selectbox, $default=false) {
155 //echo('<pre>'); print_r($selectbox);
156 $html = "<select name='$name'>";
157
158 if($default) {
159 $value=$default; $title=$selectbox[$value];
160 $html .= "<option value='$value'>$value :: $title</option>";
161 unset($selectbox[$value]);
162 }
163 foreach($selectbox as $value => $title) {
164 $html .= "<option value='$value'>$value :: $title</option>";
165 }
166 $html .= "</select>";
167 return $html;
168 }
169
fc5c5b8b 170 function render_insert_form($class, $columns, $selectbox=array(), $current=false, $multi_insert=true) {
cdfce7c2
TM
171 //echo('<pre>'); print_r($selectbox);
172 //echo('<pre>'); print_r($current);
173 $update = false;
174 if(is_array($current)) {
175 $update = true;
176 $current = array_shift($current);
177 }
178
fc5c5b8b
TM
179 $html='<form method="POST">';
180 if($multi_insert) $html.='<div name="input_set" style="float:left; border:1px solid grey;">';
181 $html.=$this->input('table', $class, 'hidden');
cdfce7c2 182 foreach($columns as $column) {
fc5c5b8b 183 $html.=$column['Field'].': ';
cdfce7c2 184 $name='value:'.$column['Field'].'[]';
e9cb8cea 185 $val = $update ? $current[$column['Field']] : false;
cdfce7c2
TM
186 switch(true) {
187 case preg_match('/auto_increment/', $column['Extra']):
e9cb8cea 188 if(!$val) $val = '';
fc5c5b8b
TM
189 $html.=$this->input($name, $val, 'hidden');
190 $html.=$val.'(AUTO)';
cdfce7c2
TM
191 break;
192 case isset($selectbox[$column['Field']]):
e9cb8cea 193 $html.=$this->select($name,$selectbox[$column['Field']],$val);
cdfce7c2
TM
194 break;
195 default:
fc5c5b8b 196 $html.=$this->input($name, $val);
cdfce7c2
TM
197 break;
198 }
fc5c5b8b 199 $html.='<br />';
cdfce7c2
TM
200 }
201
202 if($multi_insert) {
203 //TODO, move to separate JS file
fc5c5b8b 204 $html.=<<<EOF
cdfce7c2
TM
205 </div>
206 <span name="input_set_next"></span><br style="clear:both" />
207 <script>
208 function duplicate_element(what, where) {
209 document.getElementsByName(where)[0].outerHTML =
210 document.getElementsByName(what)[0].outerHTML
211 + document.getElementsByName(where)[0].outerHTML;
212 }
213 </script>
214 <a href='#' onClick="duplicate_element('input_set', 'input_set_next')">+</a>
215EOF;
216 }
217
218 $btn = is_array($current) ? 'UPDATE' : 'INSERT';
fc5c5b8b
TM
219 $html.=$this->input(false, $btn, 'submit');
220 $html.='</form>';
221 return $html;
cdfce7c2
TM
222 }
223}
224
78bf26a5
TM
225/**
226* Trida poskytuje rozhrani k databazi skladu
227*
228* @package Sklad_DB
229* @author Tomas Mudrunka
230*/
cdfce7c2
TM
231class Sklad_DB extends PDO {
232 function __construct() {
233 $this->lms = new Sklad_LMS();
234
235 parent::__construct(
236 DB_DSN, DB_USER, DB_PASS,
237 array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8") //Force UTF8 for MySQL
238 );
239 }
240
241 function escape($str) {
242 return preg_replace('(^.|.$)', '', $this->quote($str)); //TODO HACK
243 }
244
245 function build_query_select($class, $id=false, $limit=false, $offset=0, $search=false, $id_suffix='_id') {
246 $class = $this->escape($class);
247 $join = array(
248 'item' => array('model', 'category', 'producer', 'vendor', 'room', 'status'),
249 'model' => array('category', 'producer')
250 );
251 $search_fields = array(
252 'item' => array('item_id','model_name','model_barcode','model_descript','producer_name','vendor_name')
253 );
254 $sql="SELECT * FROM $class\n";
255 if(isset($join[$class])) foreach($join[$class] as $j) $sql .= "LEFT JOIN $j USING($j$id_suffix)\n";
256 if($search) {
257 $search = $this->quote($search);
258 if(!isset($search_fields[$class])) {
259 trigger_error("Ve tride $class zatim vyhledavat nemozno :-(");
260 die();
261 }
262 $sql .= 'WHERE FALSE ';
263 foreach($search_fields[$class] as $column) $sql .= "OR $column REGEXP $search ";
264 } elseif($id) $sql .= "WHERE $class$id_suffix = $id\n";
265 if($limit) {
266 $limit = $this->escape((int)$limit);
267 $offset = $this->escape((int)$offset);
268 $sql .= "LIMIT $offset,$limit\n";
269 }
270 return $sql;
271 }
272
273 function safe_query($sql) {
274 $result = $this->query($sql);
275 if(!$result) {
276 trigger_error('<font color=red><b>QUERY FAILED:</b><pre>'.$sql.'</pre></font>');
277 die();
278 }
279 return $result;
280 }
281
282 function get_listing($class, $id=false, $limit=false, $offset=0, $search=false, $indexed=array(), $suffix_id='_id') {
283 $sql = $this->build_query_select($class, $id, $limit, $offset, $search);
284 $result = $this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
285 if(!$result || !is_array($indexed)) return $result;
286
287 foreach($result as $key => $row) $indexed[$row[$class.$suffix_id]]=$row;
288 return $indexed;
289 }
290
291 function get_columns($class) {
292 $class = $this->escape($class);
293 $sql = "SHOW COLUMNS FROM $class;";
294 return $this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
295 }
296
297 function columns_get_selectbox($columns, $class=false, $suffix_id='_id', $suffix_name='_name') {
298 $selectbox=array();
299 foreach($columns as $column) {
300 if($class && $column['Field'] == $class.$suffix_id) continue;
301 if(!preg_match('/'.$suffix_id.'$/', $column['Field'])) continue;
302 $table=preg_replace('/'.$suffix_id.'$/','',$column['Field']);
303 $sql = "SELECT $table$suffix_id, $table$suffix_name FROM $table;";
304 $result=$this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
305 foreach($result as $row) $selectbox[$table.$suffix_id][$row[$table.$suffix_id]]=$row[$table.$suffix_name];
306 }
307 //echo('<pre>'); print_r($selectbox);
308 return $selectbox;
309 }
310
311 function build_query_insert($table, $values, $replace=true, $suffix_id='_id') {
312 $table = $this->escape($table);
313
314 //Get list of POSTed columns
315 $columns = implode(',',array_map(array($this,'escape'), array_keys($values[0])));
316
317 //Insert into table (columns)
318 $sql = 'INSERT';
319 if($replace) $sql = 'REPLACE';
320 $sql .= " INTO $table ($columns) VALUES ";
321
322 //Values (a,b,c),(d,e,f)
323 $comma='';
324 foreach($values as $row) {
325 $sql .= $comma.'('.implode(',',array_map(array($this,'quote'), $row)).')';
326 $comma = ',';
327 }
328
329 //Terminate
330 $sql .= ';';
331 return $sql;
332 }
333
334 function insert_or_update($table, $values) {
335 $sql = $this->build_query_insert($table, $values);
336 $this->safe_query($sql);
337 return $this->lastInsertId();
338 }
339
340 function delete($table, $id, $suffix_id='_id') {
341 $key = $this->escape($table.$suffix_id);
342 $table = $this->escape($table);
343 $id = $this->quote($id);
344 return $this->safe_query("DELETE FROM $table WHERE $key = $id LIMIT 1;");
345 }
346}
347
78bf26a5
TM
348/**
349* Trida implementuje uzivatelske rozhrani skladu
350*
351* Example usage:
352* $sklad = new Sklad_UI();
353* $sklad->process_http_request();
354*
355* @package Sklad_UI
356* @author Tomas Mudrunka
357*/
cdfce7c2
TM
358class Sklad_UI {
359 function __construct() {
360 $this->db = new Sklad_DB();
361 $this->html = new Sklad_HTML();
362 }
363
a25f85f8
TM
364 function render_items($class, $id=false, $limit=false, $offset=0, $search=false) {
365 return $this->html->render_item_table($this->db->get_listing($class, $id, $limit, $offset, $search));
cdfce7c2
TM
366 }
367
a25f85f8 368 function render_form_add($class) {
cdfce7c2
TM
369 $columns = $this->db->get_columns($class);
370 $selectbox = $this->db->columns_get_selectbox($columns, $class);
a25f85f8 371 return $this->html->render_insert_form($class, $columns, $selectbox);
cdfce7c2
TM
372 }
373
a25f85f8 374 function render_form_edit($class, $id) {
cdfce7c2
TM
375 $columns = $this->db->get_columns($class);
376 $selectbox = $this->db->columns_get_selectbox($columns, $class);
377 $current = $this->db->get_listing($class, $id);
a25f85f8 378 return $this->html->render_insert_form($class, $columns, $selectbox, $current);
cdfce7c2
TM
379 }
380
a25f85f8 381 function render_single_record_details($class, $id) {
cdfce7c2
TM
382 $id_next = $id + 1;
383 $id_prev = $id - 1 > 0 ? $id - 1 : 0;
384 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
a25f85f8
TM
385 $html='';
386 $html.= $this->html->link('<<', "$class/$id_prev/");
387 $html.= '-';
388 $html.= $this->html->link('>>', "$class/$id_next/");
389 $html.= '<br />';
390 $html.= $this->html->link('edit', "$class/$id/edit/");
391 return $html;
cdfce7c2
TM
392 }
393
a25f85f8 394 function render_listing_navigation($class, $id, $limit, $offset) {
cdfce7c2
TM
395 $offset_next = $offset + $limit;
396 $offset_prev = $offset - $limit > 0 ? $offset - $limit : 0;
397 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
a25f85f8
TM
398 $html='';
399 $html.= $this->html->link('<<', "$class/$id/$limit/$offset_prev/$get");
400 $html.= '-';
401 $html.= $this->html->link('>>', "$class/$id/$limit/$offset_next/$get");
402 $html.= '<br />';
403 $html.= $this->html->link('new', "$class/new/$get");
404 return $html;
cdfce7c2
TM
405 }
406
a25f85f8
TM
407 function render_listing_extensions($class, $id, $limit, $offset, $edit=false) {
408 $html='';
cdfce7c2 409 if(is_numeric($id)) {
a25f85f8 410 $html.=$this->render_single_record_details($class, $id);
cdfce7c2 411 } else {
a25f85f8 412 $html.=$this->render_listing_navigation($class, '*', $limit, $offset);
cdfce7c2
TM
413 }
414 if($edit) {
a25f85f8
TM
415 $html.='<br />TODO UPDATE FORM!<br />';
416 $html.= $this->render_form_edit($class, $id);
cdfce7c2 417 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/delete";
a25f85f8
TM
418 $html.= "<form action='$action' method='POST'>";
419 $html.= $this->html->input(false, 'DELETE', 'submit');
420 $html.= 'sure?'.$this->html->input('sure', false, 'checkbox');
421 $html.= '</form>';
cdfce7c2 422 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/image";
a25f85f8
TM
423 $html.= "<form action='$action' method='POST' enctype='multipart/form-data'>";
424 $html.= $this->html->input('image', false, 'file', false, 'size="30"');
425 $html.= $this->html->input(false, 'IMAGE', 'submit');
426 $html.='</form>';
cdfce7c2 427 }
a25f85f8 428 return $html;
cdfce7c2
TM
429 }
430
431 function check_auth() {
432 new HTTP_Auth('SkladovejSystem', true, array($this->db->lms,'check_auth'));
433 }
434
435 function post_redirect_get($last, $next) { //TODO prepracovat, tohle je uplna picovina...
436 //header('Location: '.$_SERVER['REQUEST_URI']); //TODO redirect (need templating system or ob_start() first!!!)
437 echo 'Hotovo. Poslední vložený záznam naleznete '.$this->html->link('zde', $last).'.<br />'.
438 'Další záznam přidáte '.$this->html->link('zde', $next).'.';
439 die();
440 }
441
3e6c412e
TM
442 function safe_include($dir,$name,$ext='.inc.php') {
443 if(preg_match('/[^a-zA-Z0-9-]/',$name)) die(trigger_error('SAFE INCLUDE: Securityfuck.'));
444 $filename="$dir/$name$ext";
445 if(!is_file($filename)) die(trigger_error('SAFE INCLUDE: Fuckfound.'));
446 ob_start();
447 include($filename);
448 $out=ob_get_contents();
449 ob_end_clean();
450 return $out;
451 }
452
cdfce7c2
TM
453 function process_http_request_post($action=false, $class=false, $id=false) {
454 if($_SERVER['REQUEST_METHOD'] != 'POST') return;
455 echo('<pre>'); //DEBUG (maybe todo remove)
456
457 //SephirPOST:
458 $values=array();
459 foreach($_POST as $key => $value) {
460 $name = preg_split('/:/',$key);
461 if(isset($name[0])) switch($name[0]) {
462 case 'value':
463 foreach($value as $id => $val) $values[$id][$name[1]]=$value[$id];
464 break;
465 default:
466 break;
467 }
468 }
469
470 if($action) switch($action) {
471 case 'new':
472 case 'edit':
473 if(!isset($_POST['table'])) die(trigger_error("Jest nutno specifikovat tabulku voe!"));
474 $table=$_POST['table'];
475 //print_r($values); //debug
476 $last = $this->db->insert_or_update($table, $values);
477 $this->post_redirect_get("$table/$last/", "$table/new/");
478 break;
479 case 'delete':
480 if(!isset($_POST['sure']) || !$_POST['sure']) die(trigger_error('Sure user expected :-)'));
481 //$this->db->delete($class, $id);
482 die('Neco asi bylo smazano. Fnuk :\'-('); //TODO REDIRECT
483 break;
484 case 'image':
485 $image_classes = array('model'); //TODO, use this more widely across the code
486 if(!in_array($class, $image_classes)) die(trigger_error("Nekdo nechce k DB Tride '$class' prirazovat obrazky!"));
487 $image_destination = DIR_IMAGES."/$class/$id.jpg";
488 if($_FILES['image']['name'] == '') die(trigger_error('Kazde neco se musi nejak jmenovat!'));
489 if(move_uploaded_file($_FILES['image']['tmp_name'], $image_destination)) {
490 chmod ($image_destination, 0664);
491 die('Obrazek se naladoval :)'); //TODO REDIRECT
492 } else die(trigger_error('Soubor se nenahral :('));
493 break;
494 default:
495 trigger_error('Nothin\' to do here my cutie :-*');
496 break;
497 }
498
499 die('POSTed pyčo!');
500 }
501
502 function process_http_request() {
503 $this->check_auth();
504
505 @ini_set('magic_quotes_gpc' , 'off');
506 if(get_magic_quotes_gpc()) {
507 die(trigger_error("Error: magic_quotes_gpc needs to be disabled! F00K!"));
508 }
509
510 $PATH_INFO=@trim($_SERVER[PATH_INFO]);
fc5c5b8b 511 echo $this->html->header($PATH_INFO);
cdfce7c2
TM
512
513
514 //Sephirot:
515 $PATH_CHUNKS = preg_split('/\//', $PATH_INFO);
516 if(!isset($PATH_CHUNKS[1])) $PATH_CHUNKS[1]='';
517 switch($PATH_CHUNKS[1]) {
518 case 'test': //test
519 die('Tell me why you cry');
520 break;
3e6c412e
TM
521 case 'assistant': //assistant
522 echo $this->safe_include(DIR_ASSISTANTS,$PATH_CHUNKS[2]);
523 break;
cdfce7c2
TM
524 default: //?
525 $search = (isset($_GET['q']) && trim($_GET['q']) != '') ? trim($_GET['q']) : false;
526 $class = (isset($PATH_CHUNKS[1]) && $PATH_CHUNKS[1] != '') ? $PATH_CHUNKS[1] : 'item';
527 if(!isset($PATH_CHUNKS[2])) $PATH_CHUNKS[2]='';
528 switch($PATH_CHUNKS[2]) {
529 case 'new': //?/new
530 $this->process_http_request_post($PATH_CHUNKS[2], $class);
a25f85f8 531 echo $this->render_form_add($class);
cdfce7c2
TM
532 break;
533 default: //?/?
534 $id = (isset($PATH_CHUNKS[2]) && is_numeric($PATH_CHUNKS[2]) ? (int) $PATH_CHUNKS[2] : false);
535 if(!isset($PATH_CHUNKS[3])) $PATH_CHUNKS[3]='';
536 $edit=false;
537 switch($PATH_CHUNKS[3]) {
538 case 'edit': //?/?/edit
539 case 'image': //?/image
540 case 'delete': //?/delete
541 $this->process_http_request_post($PATH_CHUNKS[3], $class, $id);
542 $edit=true;
543 default: //?/?/?
544 $limit = (int) (isset($PATH_CHUNKS[3]) ? $PATH_CHUNKS[3] : '0');
545 $offset = (int) (isset($PATH_CHUNKS[4]) ? $PATH_CHUNKS[4] : '0');
a25f85f8
TM
546 echo $this->render_items($class, $id, $limit, $offset, $search);
547 echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit);
cdfce7c2
TM
548 //print_r(array("<pre>",$_SERVER));
549 break;
550 }
551 break;
552 }
553 break;
554 }
555 }
556}
557
558$sklad = new Sklad_UI();
559$sklad->process_http_request();
560
561echo("<hr/>");
This page took 0.536205 seconds and 4 git commands to generate.