Trida Sklad_HTML nyni nic nevypisuje (priprava na templatovaci system)
[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
TM
184 $name='value:'.$column['Field'].'[]';
185 switch(true) {
186 case preg_match('/auto_increment/', $column['Extra']):
187 $val = $update ? $current[$column['Field']] : ''; //opakuje se (skoro) zbytecne
fc5c5b8b
TM
188 $html.=$this->input($name, $val, 'hidden');
189 $html.=$val.'(AUTO)';
cdfce7c2
TM
190 break;
191 case isset($selectbox[$column['Field']]):
192 $val = $update ? $current[$column['Field']] : false;
fc5c5b8b 193 $html.=$this->select($name,$selectbox[$column['Field']],$val); //opakuje se
cdfce7c2
TM
194 break;
195 default:
196 $val = $update ? $current[$column['Field']] : false; //opakuje se
fc5c5b8b 197 $html.=$this->input($name, $val);
cdfce7c2
TM
198 break;
199 }
fc5c5b8b 200 $html.='<br />';
cdfce7c2
TM
201 }
202
203 if($multi_insert) {
204 //TODO, move to separate JS file
fc5c5b8b 205 $html.=<<<EOF
cdfce7c2
TM
206 </div>
207 <span name="input_set_next"></span><br style="clear:both" />
208 <script>
209 function duplicate_element(what, where) {
210 document.getElementsByName(where)[0].outerHTML =
211 document.getElementsByName(what)[0].outerHTML
212 + document.getElementsByName(where)[0].outerHTML;
213 }
214 </script>
215 <a href='#' onClick="duplicate_element('input_set', 'input_set_next')">+</a>
216EOF;
217 }
218
219 $btn = is_array($current) ? 'UPDATE' : 'INSERT';
fc5c5b8b
TM
220 $html.=$this->input(false, $btn, 'submit');
221 $html.='</form>';
222 return $html;
cdfce7c2
TM
223 }
224}
225
78bf26a5
TM
226/**
227* Trida poskytuje rozhrani k databazi skladu
228*
229* @package Sklad_DB
230* @author Tomas Mudrunka
231*/
cdfce7c2
TM
232class Sklad_DB extends PDO {
233 function __construct() {
234 $this->lms = new Sklad_LMS();
235
236 parent::__construct(
237 DB_DSN, DB_USER, DB_PASS,
238 array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8") //Force UTF8 for MySQL
239 );
240 }
241
242 function escape($str) {
243 return preg_replace('(^.|.$)', '', $this->quote($str)); //TODO HACK
244 }
245
246 function build_query_select($class, $id=false, $limit=false, $offset=0, $search=false, $id_suffix='_id') {
247 $class = $this->escape($class);
248 $join = array(
249 'item' => array('model', 'category', 'producer', 'vendor', 'room', 'status'),
250 'model' => array('category', 'producer')
251 );
252 $search_fields = array(
253 'item' => array('item_id','model_name','model_barcode','model_descript','producer_name','vendor_name')
254 );
255 $sql="SELECT * FROM $class\n";
256 if(isset($join[$class])) foreach($join[$class] as $j) $sql .= "LEFT JOIN $j USING($j$id_suffix)\n";
257 if($search) {
258 $search = $this->quote($search);
259 if(!isset($search_fields[$class])) {
260 trigger_error("Ve tride $class zatim vyhledavat nemozno :-(");
261 die();
262 }
263 $sql .= 'WHERE FALSE ';
264 foreach($search_fields[$class] as $column) $sql .= "OR $column REGEXP $search ";
265 } elseif($id) $sql .= "WHERE $class$id_suffix = $id\n";
266 if($limit) {
267 $limit = $this->escape((int)$limit);
268 $offset = $this->escape((int)$offset);
269 $sql .= "LIMIT $offset,$limit\n";
270 }
271 return $sql;
272 }
273
274 function safe_query($sql) {
275 $result = $this->query($sql);
276 if(!$result) {
277 trigger_error('<font color=red><b>QUERY FAILED:</b><pre>'.$sql.'</pre></font>');
278 die();
279 }
280 return $result;
281 }
282
283 function get_listing($class, $id=false, $limit=false, $offset=0, $search=false, $indexed=array(), $suffix_id='_id') {
284 $sql = $this->build_query_select($class, $id, $limit, $offset, $search);
285 $result = $this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
286 if(!$result || !is_array($indexed)) return $result;
287
288 foreach($result as $key => $row) $indexed[$row[$class.$suffix_id]]=$row;
289 return $indexed;
290 }
291
292 function get_columns($class) {
293 $class = $this->escape($class);
294 $sql = "SHOW COLUMNS FROM $class;";
295 return $this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
296 }
297
298 function columns_get_selectbox($columns, $class=false, $suffix_id='_id', $suffix_name='_name') {
299 $selectbox=array();
300 foreach($columns as $column) {
301 if($class && $column['Field'] == $class.$suffix_id) continue;
302 if(!preg_match('/'.$suffix_id.'$/', $column['Field'])) continue;
303 $table=preg_replace('/'.$suffix_id.'$/','',$column['Field']);
304 $sql = "SELECT $table$suffix_id, $table$suffix_name FROM $table;";
305 $result=$this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
306 foreach($result as $row) $selectbox[$table.$suffix_id][$row[$table.$suffix_id]]=$row[$table.$suffix_name];
307 }
308 //echo('<pre>'); print_r($selectbox);
309 return $selectbox;
310 }
311
312 function build_query_insert($table, $values, $replace=true, $suffix_id='_id') {
313 $table = $this->escape($table);
314
315 //Get list of POSTed columns
316 $columns = implode(',',array_map(array($this,'escape'), array_keys($values[0])));
317
318 //Insert into table (columns)
319 $sql = 'INSERT';
320 if($replace) $sql = 'REPLACE';
321 $sql .= " INTO $table ($columns) VALUES ";
322
323 //Values (a,b,c),(d,e,f)
324 $comma='';
325 foreach($values as $row) {
326 $sql .= $comma.'('.implode(',',array_map(array($this,'quote'), $row)).')';
327 $comma = ',';
328 }
329
330 //Terminate
331 $sql .= ';';
332 return $sql;
333 }
334
335 function insert_or_update($table, $values) {
336 $sql = $this->build_query_insert($table, $values);
337 $this->safe_query($sql);
338 return $this->lastInsertId();
339 }
340
341 function delete($table, $id, $suffix_id='_id') {
342 $key = $this->escape($table.$suffix_id);
343 $table = $this->escape($table);
344 $id = $this->quote($id);
345 return $this->safe_query("DELETE FROM $table WHERE $key = $id LIMIT 1;");
346 }
347}
348
78bf26a5
TM
349/**
350* Trida implementuje uzivatelske rozhrani skladu
351*
352* Example usage:
353* $sklad = new Sklad_UI();
354* $sklad->process_http_request();
355*
356* @package Sklad_UI
357* @author Tomas Mudrunka
358*/
cdfce7c2
TM
359class Sklad_UI {
360 function __construct() {
361 $this->db = new Sklad_DB();
362 $this->html = new Sklad_HTML();
363 }
364
365 function show_items($class, $id=false, $limit=false, $offset=0, $search=false) {
fc5c5b8b 366 echo $this->html->render_item_table($this->db->get_listing($class, $id, $limit, $offset, $search));
cdfce7c2
TM
367 }
368
369 function show_form_add($class) {
370 $columns = $this->db->get_columns($class);
371 $selectbox = $this->db->columns_get_selectbox($columns, $class);
fc5c5b8b 372 echo $this->html->render_insert_form($class, $columns, $selectbox);
cdfce7c2
TM
373 }
374
375 function show_form_edit($class, $id) {
376 $columns = $this->db->get_columns($class);
377 $selectbox = $this->db->columns_get_selectbox($columns, $class);
378 $current = $this->db->get_listing($class, $id);
fc5c5b8b 379 echo $this->html->render_insert_form($class, $columns, $selectbox, $current);
cdfce7c2
TM
380 }
381
382 function show_single_record_details($class, $id) {
383 $id_next = $id + 1;
384 $id_prev = $id - 1 > 0 ? $id - 1 : 0;
385 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
386 echo $this->html->link('<<', "$class/$id_prev/");
387 echo '-';
388 echo $this->html->link('>>', "$class/$id_next/");
389 echo ('<br />');
390 echo $this->html->link('edit', "$class/$id/edit/");
391 }
392
393 function show_listing_navigation($class, $id, $limit, $offset) {
394 $offset_next = $offset + $limit;
395 $offset_prev = $offset - $limit > 0 ? $offset - $limit : 0;
396 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
397 echo $this->html->link('<<', "$class/$id/$limit/$offset_prev/$get");
398 echo '-';
399 echo $this->html->link('>>', "$class/$id/$limit/$offset_next/$get");
400 echo ('<br />');
401 echo $this->html->link('new', "$class/new/$get");
402 }
403
404 function show_listing_extensions($class, $id, $limit, $offset, $edit=false) {
405 if(is_numeric($id)) {
406 $this->show_single_record_details($class, $id);
407 } else {
408 $this->show_listing_navigation($class, '*', $limit, $offset);
409 }
410 if($edit) {
411 echo('<br />TODO UPDATE FORM!<br />');
412 $this->show_form_edit($class, $id);
413 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/delete";
414 echo("<form action='$action' method='POST'>");
415 echo $this->html->input(false, 'DELETE', 'submit');
416 echo 'sure?'.$this->html->input('sure', false, 'checkbox');
417 echo('</form>');
418 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/image";
419 echo("<form action='$action' method='POST' enctype='multipart/form-data'>");
420 echo $this->html->input('image', false, 'file', false, 'size="30"');
421 echo $this->html->input(false, 'IMAGE', 'submit');
422 echo('</form>');
423 }
424 }
425
426 function check_auth() {
427 new HTTP_Auth('SkladovejSystem', true, array($this->db->lms,'check_auth'));
428 }
429
430 function post_redirect_get($last, $next) { //TODO prepracovat, tohle je uplna picovina...
431 //header('Location: '.$_SERVER['REQUEST_URI']); //TODO redirect (need templating system or ob_start() first!!!)
432 echo 'Hotovo. Poslední vložený záznam naleznete '.$this->html->link('zde', $last).'.<br />'.
433 'Další záznam přidáte '.$this->html->link('zde', $next).'.';
434 die();
435 }
436
437 function process_http_request_post($action=false, $class=false, $id=false) {
438 if($_SERVER['REQUEST_METHOD'] != 'POST') return;
439 echo('<pre>'); //DEBUG (maybe todo remove)
440
441 //SephirPOST:
442 $values=array();
443 foreach($_POST as $key => $value) {
444 $name = preg_split('/:/',$key);
445 if(isset($name[0])) switch($name[0]) {
446 case 'value':
447 foreach($value as $id => $val) $values[$id][$name[1]]=$value[$id];
448 break;
449 default:
450 break;
451 }
452 }
453
454 if($action) switch($action) {
455 case 'new':
456 case 'edit':
457 if(!isset($_POST['table'])) die(trigger_error("Jest nutno specifikovat tabulku voe!"));
458 $table=$_POST['table'];
459 //print_r($values); //debug
460 $last = $this->db->insert_or_update($table, $values);
461 $this->post_redirect_get("$table/$last/", "$table/new/");
462 break;
463 case 'delete':
464 if(!isset($_POST['sure']) || !$_POST['sure']) die(trigger_error('Sure user expected :-)'));
465 //$this->db->delete($class, $id);
466 die('Neco asi bylo smazano. Fnuk :\'-('); //TODO REDIRECT
467 break;
468 case 'image':
469 $image_classes = array('model'); //TODO, use this more widely across the code
470 if(!in_array($class, $image_classes)) die(trigger_error("Nekdo nechce k DB Tride '$class' prirazovat obrazky!"));
471 $image_destination = DIR_IMAGES."/$class/$id.jpg";
472 if($_FILES['image']['name'] == '') die(trigger_error('Kazde neco se musi nejak jmenovat!'));
473 if(move_uploaded_file($_FILES['image']['tmp_name'], $image_destination)) {
474 chmod ($image_destination, 0664);
475 die('Obrazek se naladoval :)'); //TODO REDIRECT
476 } else die(trigger_error('Soubor se nenahral :('));
477 break;
478 default:
479 trigger_error('Nothin\' to do here my cutie :-*');
480 break;
481 }
482
483 die('POSTed pyčo!');
484 }
485
486 function process_http_request() {
487 $this->check_auth();
488
489 @ini_set('magic_quotes_gpc' , 'off');
490 if(get_magic_quotes_gpc()) {
491 die(trigger_error("Error: magic_quotes_gpc needs to be disabled! F00K!"));
492 }
493
494 $PATH_INFO=@trim($_SERVER[PATH_INFO]);
fc5c5b8b 495 echo $this->html->header($PATH_INFO);
cdfce7c2
TM
496
497
498 //Sephirot:
499 $PATH_CHUNKS = preg_split('/\//', $PATH_INFO);
500 if(!isset($PATH_CHUNKS[1])) $PATH_CHUNKS[1]='';
501 switch($PATH_CHUNKS[1]) {
502 case 'test': //test
503 die('Tell me why you cry');
504 break;
505 default: //?
506 $search = (isset($_GET['q']) && trim($_GET['q']) != '') ? trim($_GET['q']) : false;
507 $class = (isset($PATH_CHUNKS[1]) && $PATH_CHUNKS[1] != '') ? $PATH_CHUNKS[1] : 'item';
508 if(!isset($PATH_CHUNKS[2])) $PATH_CHUNKS[2]='';
509 switch($PATH_CHUNKS[2]) {
510 case 'new': //?/new
511 $this->process_http_request_post($PATH_CHUNKS[2], $class);
512 $this->show_form_add($class);
513 break;
514 default: //?/?
515 $id = (isset($PATH_CHUNKS[2]) && is_numeric($PATH_CHUNKS[2]) ? (int) $PATH_CHUNKS[2] : false);
516 if(!isset($PATH_CHUNKS[3])) $PATH_CHUNKS[3]='';
517 $edit=false;
518 switch($PATH_CHUNKS[3]) {
519 case 'edit': //?/?/edit
520 case 'image': //?/image
521 case 'delete': //?/delete
522 $this->process_http_request_post($PATH_CHUNKS[3], $class, $id);
523 $edit=true;
524 default: //?/?/?
525 $limit = (int) (isset($PATH_CHUNKS[3]) ? $PATH_CHUNKS[3] : '0');
526 $offset = (int) (isset($PATH_CHUNKS[4]) ? $PATH_CHUNKS[4] : '0');
527 $this->show_items($class, $id, $limit, $offset, $search);
528 $this->show_listing_extensions($class, $id, $limit, $offset, $edit);
529 //print_r(array("<pre>",$_SERVER));
530 break;
531 }
532 break;
533 }
534 break;
535 }
536 }
537}
538
539$sklad = new Sklad_UI();
540$sklad->process_http_request();
541
542echo("<hr/>");
This page took 0.493905 seconds and 4 git commands to generate.