Do tabulky item pridan sloupec na poznamky (umisteni, etc...)
[mirrors/SokoMan.git] / index.php
... / ...
CommitLineData
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
20require_once('sklad.conf.php');
21require_once('Sklad_LMS-fake.class.php');
22require_once('HTTP_Auth.class.php');
23
24/**
25* Trida poskytuje vseobecne funkce pro generovani HTML kodu
26*
27* Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)!
28*
29* @package HTML
30* @author Tomas Mudrunka
31*/
32class HTML {
33 function row($row) {
34 $html='<tr>';
35 foreach($row as $var) {
36 if(trim($var) == '') $var = '&nbsp;';
37 $html.="<td>$var</td>";
38 }
39 $html.='</tr>';
40 return $html;
41 }
42
43 function table(&$table, $params='border=1') {
44 $html="<table $params>";
45 $header=true;
46 foreach($table as $row) {
47 if($header) {
48 $html.=$this->row(array_keys($row));
49 $header=false;
50 }
51 $html.=$this->row($row);
52 }
53 $html.='</table>';
54 return $html;
55 }
56
57 function link($title='n/a', $link='#void', $internal=true) {
58 if($internal) $link = $this->internal_url($link);
59 return "<a href='$link'>$title</a>";
60 }
61
62 function img($src='#void', $title='img') {
63 return "<img src='$src' alt='$title' title='$title' width=64 />";
64 }
65
66 function input($name=false, $value=false, $type='text', $placeholder=false, $options=false) {
67 $html = "<input type='$type' ";
68 if($name) $html.= "name='$name' ";
69 if(!is_bool($value)) $html.= "value='$value' ";
70 if($options) $html.= "$options ";
71 if($placeholder) $html.= "placeholder='$placeholder' ";
72 $html .= '/>';
73 return $html;
74 }
75
76 function select($name, $selectbox, $default=false) {
77 //echo('<pre>'); print_r($selectbox);
78 $html = "<select name='$name'>";
79
80 if($default) {
81 $value=$default; $title=$selectbox[$value];
82 $html .= "<option value='$value'>$value :: $title</option>";
83 unset($selectbox[$value]);
84 }
85 foreach($selectbox as $value => $title) {
86 $html .= "<option value='$value'>$value :: $title</option>";
87 }
88 $html .= "</select>";
89 return $html;
90 }
91}
92
93/**
94* Trida poskytuje podpurne funkce pro generovani HTML kodu specificke pro sklad
95*
96* Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)!
97*
98* @package Sklad_HTML
99* @author Tomas Mudrunka
100*/
101class Sklad_HTML extends HTML {
102 function header($title='') {
103 $home = URL_HOME;
104 $script = $_SERVER['SCRIPT_NAME'];
105 $search = htmlspecialchars(@trim($_GET['q']));
106 $message = strip_tags(@trim($_GET['message']),'<a><b><u><i>');
107 return <<<EOF
108<head>
109 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
110</head>
111<h1><a href="$script/">SystémSklad</a><small>$title</small></h1>
112
113<style type="text/css">
114.menu li, .menu * li {
115 float: left;
116 margin: 0.2em;
117}
118
119.menu * menu {
120 position: absolute;
121 background-color: yellow;
122}
123
124.menu, .menu * menu {
125 list-style: none;
126}
127
128.menu * menu {
129 display: none;
130 margin: 0;
131}
132
133.menu li:hover menu {
134 display: block;
135}
136</style>
137
138<div>
139 <menu class="menu">
140 <li><a href="?logout">Logout</a></li>
141 <li><a href="$script/">Home</a></li>
142 <li><a href="#">Assistants</A>
143 <menu>
144 <li><a href="$script/assistant/store">store</a></li>
145 <li><a href="$script/assistant/new-item">new-item</a></li>
146 </menu>
147 </li>
148 <li><a href="#">List</a>
149 <menu>
150 <li><a href="$script/item">item</a></li>
151 <li><a href="$script/model">model</a></li>
152 <li><a href="$script/category">category</a></li>
153 <li><a href="$script/producer">producer</a></li>
154 <li><a href="$script/vendor">vendor</a></li>
155 <li><a href="$script/room">room</a></li>
156 <li><a href="$script/status">status</a></li>
157 </menu>
158 </li>
159 <li><a href="#">New</a>
160 <menu>
161 <li><a href="$script/item/new">item</a></li>
162 <li><a href="$script/model/new">model</a></li>
163 <li><a href="$script/category/new">category</a></li>
164 <li><a href="$script/producer/new">producer</a></li>
165 <li><a href="$script/vendor/new">vendor</a></li>
166 <li><a href="$script/room/new">room</a></li>
167 <li><a href="$script/status/new">status</a></li>
168 </menu>
169 </li>
170 </menu>
171
172 <div style="float: right;">
173 <form action="?" method="GET">
174 <input type="text" name="q" placeholder="regexp..." value="$search" />
175 <input type="submit" value="filter" />
176 </form>
177 <!-- form action="$script/" method="GET">
178 <input type="text" name="q" placeholder="regexp..." value="$search" />
179 <input type="submit" value="search items" />
180 </form -->
181 </div>
182</div>
183<hr style="clear: both;" />
184<div style="background-color:#FFDDDD;">
185 <font color="red">$message</font>
186</div>
187EOF;
188 }
189
190 function internal_url($link) {
191 return $_SERVER['SCRIPT_NAME'].'/'.$link;
192 }
193
194 function table_add_images(&$table) {
195 $image = array('model_id');
196 foreach($table as $id => $row) {
197 foreach($image as $column) if(isset($table[$id][$column])) {
198 $type = @array_shift(preg_split('/_/', $column));
199 $src=URL_IMAGES."/$type/".$table[$id][$column].'.jpg';
200 $table[$id][$type.'_image']=$this->img($src, $table[$id][$column]);
201 }
202 }
203 }
204
205 function table_collapse(&$table) {
206 $collapse = array(
207 'item_id' => 'item_id',
208 'model_id' => 'model_name',
209 'category_id' => 'category_name',
210 'producer_id' => 'producer_name',
211 'vendor_id' => 'vendor_name',
212 'room_id' => 'room_name',
213 'status_id' => 'status_name',
214 );
215 foreach($table as $id => $row) {
216 foreach($collapse as $link => $title)
217 if(isset($table[$id][$link])) {
218 $type = @array_shift(preg_split('/_/', $link));
219 if($link != $title) unset($table[$id][$link]);
220 $table[$id][$title]=$this->link($row[$title], $type.'/'.$row[$link].'/');
221 }
222 }
223 }
224
225 function table_sort(&$table) {
226 $precedence = array('item_id', 'model_image', 'model_name','model_descript','category_name','status_name','room_name');
227 $table_sorted = array();
228 foreach($table as $id => $row) {
229 $table_sorted[$id] = array();
230 foreach($precedence as $column) if(isset($table[$id][$column])) {
231 $table_sorted[$id][$column]=$table[$id][$column];
232 unset($table[$id][$column]);
233 }
234 $table_sorted[$id]=array_merge($table_sorted[$id],$table[$id]);
235 }
236 $table = $table_sorted;
237 }
238
239 function render_item_table($table) {
240 $this->table_add_images($table);
241 $this->table_collapse($table);
242 $this->table_sort($table);
243 return $this->table($table);
244 }
245
246 function render_insert_form($class, $columns, $selectbox=array(), $current=false, $hidecols=false, $action=false, $multi_insert=true) {
247 //echo('<pre>'); print_r($selectbox);
248 //echo('<pre>'); print_r($current);
249 $update = false;
250 if(is_array($current)) {
251 $update = true;
252 $current = array_shift($current);
253 }
254
255 if(!is_array($hidecols)) $hidecols = array('item_author', 'item_valid_from', 'item_valid_till'); //TODO Autodetect
256
257 $action = $action ? " action='$action'" : false;
258 $html="<form$action method='POST'>";
259 if($multi_insert) $html.='<div name="input_set" style="float:left; border:1px solid grey;">';
260 //$html.=$this->input('table', $class, 'hidden');
261 foreach($columns as $column) {
262 $html.=$class.':<b>'.$column['Field'].'</b>: ';
263 $name="values[$class][".$column['Field'].'][]';
264 $val = $update && isset($current[$column['Field']]) ? $current[$column['Field']] : false;
265 switch(true) {
266 case (preg_match('/auto_increment/', $column['Extra']) || in_array($column['Field'], $hidecols)):
267 if(!$val) $val = '';
268 $html.=$this->input($name, $val, 'hidden');
269 $html.=$val.'(AUTO)';
270 break;
271 case isset($selectbox[$column['Field']]):
272 $html.=$this->select($name,$selectbox[$column['Field']],$val);
273 break;
274 default:
275 $html.=$this->input($name, $val);
276 break;
277 }
278 $html.='<br />';
279 }
280
281 if($multi_insert) {
282 //TODO, move to separate JS file
283 $html.=<<<EOF
284 </div>
285 <span name="input_set_next"></span><br style="clear:both" />
286 <script>
287 function duplicate_element(what, where) {
288 document.getElementsByName(where)[0].outerHTML =
289 document.getElementsByName(what)[0].outerHTML
290 + document.getElementsByName(where)[0].outerHTML;
291 }
292 </script>
293 <a href='#' onClick="duplicate_element('input_set', 'input_set_next')">+</a>
294EOF;
295 }
296
297 $btn = is_array($current) ? 'UPDATE' : 'INSERT';
298 $html.=$this->input(false, $btn, 'submit');
299 $html.='</form>';
300 return $html;
301 }
302}
303
304/**
305* Trida poskytuje rozhrani k databazi skladu
306*
307* @package Sklad_DB
308* @author Tomas Mudrunka
309*/
310class Sklad_DB extends PDO {
311 function __construct() {
312 $this->lms = new Sklad_LMS();
313
314 parent::__construct(
315 DB_DSN, DB_USER, DB_PASS,
316 array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8") //Force UTF8 for MySQL
317 );
318 }
319
320 function escape($str) {
321 return preg_replace('(^.|.$)', '', $this->quote($str)); //TODO HACK
322 }
323
324 function build_query_select($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false, $order=false, $suffix_id='_id') {
325 //Configuration
326 $join = array(
327 'item' => array('model', 'category', 'producer', 'vendor', 'room', 'status'),
328 'model' => array('category', 'producer')
329 ); //TODO Autodetect using foreign keys?
330 $search_fields = array(
331 'item' => array('item_id','item_serial','model_name','model_barcode','model_descript','producer_name','vendor_name')
332 ); //TODO Autodetect
333
334 //Escaping
335 $class = $this->escape($class);
336
337 //SELECT
338 $sql="SELECT * FROM $class\n";
339 //JOIN
340 if(isset($join[$class])) foreach($join[$class] as $j) $sql .= "LEFT JOIN $j USING($j$suffix_id)\n";
341 //WHERE/REGEXP
342 if($search) {
343 $search = $this->quote($search);
344 if(!isset($search_fields[$class])) $this->post_redirect_get($class, "Ve tride $class zatim vyhledavat nemozno :-(");
345 $sql_search = '';
346 foreach($search_fields[$class] as $column) $sql_search .= "OR $column REGEXP $search ";
347 $where[] = "FALSE $sql_search";
348 } elseif($id) $where[] = "$class$suffix_id = $id";
349 if(!$history && $this->contains_history($class)) $where[] = $class.'_valid_till=0';
350
351 if($where) $sql .= 'WHERE ('.implode(') AND (', $where).")\n";
352 //ORDER
353 if(!$order) $order = $class.$suffix_id;
354 if($this->contains_history($class)) $order .= ",${class}_valid_from DESC";
355 $sql .= "ORDER BY $order\n";
356 //LIMIT/OFFSET
357 if($limit) {
358 $limit = $this->escape((int)$limit);
359 $offset = $this->escape((int)$offset);
360 $sql .= "LIMIT $offset,$limit\n";
361 }
362
363 return $sql;
364 }
365
366 function safe_query($sql, $fatal=true) {
367 $result = $this->query($sql);
368 if(!$result) {
369 $error = $this->errorInfo();
370 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>");
371 if($fatal) die();
372 }
373 return $result;
374 }
375
376 function get_listing($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false, $indexed=array(), $suffix_id='_id') {
377 $sql = $this->build_query_select($class, $id, $limit, $offset, $where, $search, $history);
378 $result = $this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
379 if(!$result || !is_array($indexed)) return $result;
380
381 foreach($result as $key => $row) $indexed[$row[$class.$suffix_id]]=$row;
382 return $indexed;
383 }
384
385 function get_columns($class) {
386 $class = $this->escape($class);
387 $sql = "SHOW COLUMNS FROM $class;";
388 return $this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
389 }
390
391 function columns_get_selectbox($columns, $class=false, $suffix_id='_id', $suffix_name='_name') {
392 $selectbox=array();
393 foreach($columns as $column) {
394 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)!
395 if($class && $column['Field'] == $class.$suffix_id) continue;
396 if(!preg_match('/'.$suffix_id.'$/', $column['Field'])) continue;
397 $table=preg_replace('/'.$suffix_id.'$/','',$column['Field']);
398
399 $history = $this->contains_history($table) ? " WHERE ${table}_valid_till=0" : '';
400 $sql = "SELECT $table$suffix_id, $table$suffix_name FROM $table$history;"; //TODO use build_query_select()!!!
401 $result = $this->safe_query($sql, false);
402 if(!$result) continue;
403 $result = $result->fetchAll(PDO::FETCH_ASSOC);
404 foreach($result as $row) $selectbox[$table.$suffix_id][$row[$table.$suffix_id]]=$row[$table.$suffix_name];
405 }
406 //echo('<pre>'); print_r($selectbox);
407 return array_filter($selectbox, 'ksort');
408 }
409
410 function map_unique($key, $value, $select, $table) { //TODO: Guess $select and $table if not passed
411 $history = $this->contains_history($table) ? " AND ${table}_valid_till=0" : '';
412 $value=$this->quote($value);
413 $sql = "SELECT $select FROM $table WHERE $key=$value$history LIMIT 1;"; //TODO use build_query_select()!!!
414 $result = $this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
415 if(isset($result[0][$select])) return $result[0][$select]; else die(trigger_error('Položka nenalezena!')); //TODO post_redirect_get...
416 }
417
418 function contains_history($table) {
419 $history_tables = array('item'); //TODO Autodetect
420 return in_array($table, $history_tables);
421 }
422
423 function build_query_insert($table, $values, $replace=true, $suffix_id='_id') {
424 //Init
425 $history = $this->contains_history($table);
426
427 //Escaping
428 $table = $this->escape($table);
429
430 //Get list of POSTed columns
431 $columns_array = array_map(array($this,'escape'), array_keys($values[0]));
432 $columns = implode(',',$columns_array);
433
434 //Build query
435 $sql = '';
436 //echo('<pre>'); die(print_r($values));
437
438 if($history) {
439 $history_update=false; foreach($values as $row) if(is_numeric($row[$table.'_id'])) $history_update=true;
440 if($history_update) {
441 $sql .= "UPDATE $table";
442 $sql .= " SET ${table}_valid_till=NOW()";
443 $sql .= " WHERE ${table}_valid_till=0 AND (";
444 $or = '';
445 foreach($values as $row) {
446 $sql .= $or.' '.$table.'_id='.$row[$table.'_id'];
447 $or = ' OR';
448 }
449 $sql .= " );\n\n";
450 $replace = false;
451 }
452 }
453
454 //Insert into table (columns)
455 $sql .= "INSERT INTO $table ($columns) VALUES ";
456
457 //Values (a,b,c),(d,e,f)
458 $comma='';
459 foreach($values as $row) {
460 $row_quoted = array_map(array($this,'quote'), $row); //Check
461 if($history) {
462 foreach($row as $column => $value) {
463 switch($column) {
464 case $table.'_valid_from':
465 $row_quoted[$column] = 'NOW()';
466 break;
467 case $table.'_valid_till':
468 $row_quoted[$column] = '0';
469 break;
470 case $table.'_author':
471 $row_quoted[$column] = $this->lms->get_authorized_user_id();
472 //die($this->lms->get_authorized_user_id().'=USER');
473 break;
474 }
475 }
476 }
477 $sql .= $comma.'('.implode(',',$row_quoted).')';
478 $comma = ',';
479 }
480
481 //On duplicate key
482 if($replace) {
483 foreach($columns_array as $col) {
484 if($col == $table.'_id' || $col == $table.'_valid_till') continue;
485 $on_duplicate[] = "$col=VALUES($col)";
486 }
487 $sql .= "\nON DUPLICATE KEY UPDATE ".implode(',', $on_duplicate);
488 }
489
490 //Terminate
491 $sql .= ';';
492 return $sql;
493 }
494
495 function insert_or_update($table, $values, $replace=true) {
496 $sql = $this->build_query_insert($table, $values, $replace);
497 $this->safe_query($sql);
498 return $this->lastInsertId();
499 }
500
501 function insert_or_update_multitab($values, $replace=true) {
502 $last=false;
503 foreach($values as $table => $rows) $last = $this->insert_or_update($table, $rows, $replace);
504 return $last;
505 }
506
507 function delete($table, $id, $suffix_id='_id') {
508 if($this->contains_history($table)) return false;
509 $key = $this->escape($table.$suffix_id);
510 $table = $this->escape($table);
511 $id = $this->quote($id);
512 return $this->safe_query("DELETE FROM $table WHERE $key = $id LIMIT 1;");
513 }
514}
515
516/**
517* Trida poskytuje high-level rozhrani k databazi skladu
518*
519* @package Sklad_DB_Abstract
520* @author Tomas Mudrunka
521*/
522class Sklad_DB_Abstract extends Sklad_DB {
523 //TODO Code
524}
525
526/**
527* Trida implementuje uzivatelske rozhrani skladu
528*
529* Example usage:
530* $sklad = new Sklad_UI();
531* $sklad->process_http_request();
532*
533* @package Sklad_UI
534* @author Tomas Mudrunka
535*/
536class Sklad_UI {
537 function __construct() {
538 $this->db = new Sklad_DB();
539 $this->html = new Sklad_HTML();
540 }
541
542 function render_items($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false) {
543 return $this->html->render_item_table($this->db->get_listing($class, $id, $limit, $offset, $where, $search, $history, false));
544 }
545
546 function render_form_add($class) {
547 $columns = $this->db->get_columns($class);
548 $selectbox = $this->db->columns_get_selectbox($columns, $class);
549 return $this->html->render_insert_form($class, $columns, $selectbox);
550 }
551
552 function render_form_edit($class, $id) {
553 $columns = $this->db->get_columns($class);
554 $selectbox = $this->db->columns_get_selectbox($columns, $class);
555 $current = $this->db->get_listing($class, $id, 1);
556 return $this->html->render_insert_form($class, $columns, $selectbox, $current);
557 }
558
559 function render_single_record_details($class, $id) {
560 $id_next = $id + 1;
561 $id_prev = $id - 1 > 0 ? $id - 1 : 0;
562 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
563 $html='';
564 $html.= $this->html->link('<<', "$class/$id_prev/");
565 $html.= '-';
566 $html.= $this->html->link('>>', "$class/$id_next/");
567 $html.= '<br />';
568 $html.= $this->html->link('edit', "$class/$id/edit/");
569 if($this->db->contains_history($class)) $html.= ' ][ '.$this->html->link('history', "$class/$id/history/");
570 return $html;
571 }
572
573 function render_listing_navigation($class, $id, $limit, $offset) {
574 $offset_next = $offset + $limit;
575 $offset_prev = $offset - $limit > 0 ? $offset - $limit : 0;
576 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
577 $html='';
578 $html.= $this->html->link('<<', "$class/$id/$limit/$offset_prev/$get");
579 $html.= '-';
580 $html.= $this->html->link('>>', "$class/$id/$limit/$offset_next/$get");
581 $html.= '<br />';
582 $html.= $this->html->link('new', "$class/new/$get");
583 return $html;
584 }
585
586 function render_listing_extensions($class, $id, $limit, $offset, $edit=false) {
587 $html='';
588 if(is_numeric($id)) {
589 $html.=$this->render_single_record_details($class, $id);
590 } else {
591 $html.=$this->render_listing_navigation($class, '*', $limit, $offset);
592 }
593 if($edit) {
594 $html.= $this->render_form_edit($class, $id);
595 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/delete";
596 $html.= "<form action='$action' method='POST'>";
597 $html.= $this->html->input(false, 'DELETE', 'submit');
598 $html.= 'sure?'.$this->html->input('sure', false, 'checkbox');
599 $html.= '</form>';
600 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/image";
601 $html.= "<form action='$action' method='POST' enctype='multipart/form-data'>";
602 $html.= $this->html->input('image', false, 'file', false, 'size="30"');
603 $html.= $this->html->input(false, 'IMAGE', 'submit');
604 $html.='</form>';
605 }
606 return $html;
607 }
608
609 function check_auth() {
610 new HTTP_Auth('SkladovejSystem', true, array($this->db->lms,'check_auth'));
611 }
612
613 function post_redirect_get($location, $message='', $error=false) {
614 $location = $this->html->internal_url($location).'?message='.urlencode($message);
615 header('Location: '.$location);
616 if($error) trigger_error($message);
617 die("Location: <a href='$location'>$location</a>");
618 }
619
620 function safe_include($dir,$name,$vars=array(),$ext='.inc.php') {
621 if(preg_match('/[^a-zA-Z0-9-]/',$name)) $this->post_redirect_get('', 'SAFE INCLUDE: Securityfuck.', true);
622 $filename="$dir/$name$ext";
623 if(!is_file($filename)) $this->post_redirect_get('', 'SAFE INCLUDE: Fuckfound.', true);
624 foreach($vars as $var => $val) $$var=$val;
625 ob_start();
626 include($filename);
627 $out=ob_get_contents();
628 ob_end_clean();
629 return $out;
630 }
631
632 function process_http_request_post($action=false, $class=false, $id=false) {
633 if($_SERVER['REQUEST_METHOD'] != 'POST') return;
634 //echo('<pre>'); //DEBUG (maybe todo remove), HEADERS ALREADY SENT!!!!
635
636 //SephirPOST:
637
638 /* Tenhle foreach() prekopiruje promenne
639 * z: $_POST['values'][$table][$column][$id];
640 * do: $values[$table][$id][$column]
641 */
642 if(isset($_POST['values'])) {
643 $values=array();
644 foreach($_POST['values'] as $table => $columns) {
645 foreach($columns as $column => $ids) {
646 foreach($ids as $id => $val) $values[$table][$id][$column] = $val;
647 }
648 }
649 //die(print_r($values));
650 }
651
652 if($action) switch($action) {
653 case 'new':
654 $replace = false;
655 case 'edit':
656 if(!isset($replace)) $replace = true;
657 $table = $class ? $class : 'item';
658 //print_r($values); //debug
659 $last = $this->db->insert_or_update_multitab($values, $replace);
660 $last = "$table/$last/";
661 $next = "$table/new/";
662 $this->post_redirect_get($last, 'Hotovo. Další záznam přidáte '.$this->html->link('zde', $next).'.');
663 break;
664 case 'delete':
665 if(!isset($_POST['sure']) || !$_POST['sure']) $this->post_redirect_get("$class/$id/edit", 'Sure user expected :-)');
666 $this->db->delete($class, $id) || $this->post_redirect_get("$class/$id/edit", "V tabulce $class jentak neco mazat nebudes chlapecku :-P");
667 $this->post_redirect_get("$class", "Neco (pravdepodobne /$class/$id) bylo asi smazano. Fnuk :'-(");
668 break;
669 case 'image':
670 $image_classes = array('model'); //TODO, use this more widely across the code
671 if(!in_array($class, $image_classes)) $this->post_redirect_get("$class/$id/edit", "Nekdo nechce k DB Tride '$class' prirazovat obrazky!");
672 $image_destination = DIR_IMAGES."/$class/$id.jpg";
673 if($_FILES['image']['name'] == '') $this->post_redirect_get("$class/$id/edit", 'Kazde neco se musi nejak jmenovat!', true);
674 if(move_uploaded_file($_FILES['image']['tmp_name'], $image_destination)) {
675 chmod ($image_destination, 0664);
676 $this->post_redirect_get("$class/$id", 'Obrazek se naladoval :)');
677 } else $this->post_redirect_get("$class/$id/edit", 'Soubor se nenahral :(', true);
678 break;
679 default:
680 trigger_error('Nothin\' to do here my cutie :-*');
681 break;
682 }
683
684 die('POSTed pyčo!');
685 }
686
687 function process_http_request() {
688 $this->check_auth();
689
690 @ini_set('magic_quotes_gpc' , 'off');
691 if(get_magic_quotes_gpc()) {
692 die(trigger_error("Error: magic_quotes_gpc needs to be disabled! F00K!"));
693 }
694
695 $PATH_INFO=@trim($_SERVER[PATH_INFO]);
696 if($_SERVER['REQUEST_METHOD'] != 'POST') echo $this->html->header($PATH_INFO); //TODO tahle podminka naznacuje ze je v navrhu nejaka drobna nedomyslenost...
697
698
699 //Sephirot:
700 $PATH_CHUNKS = preg_split('/\//', $PATH_INFO);
701 if(!isset($PATH_CHUNKS[1])) $PATH_CHUNKS[1]='';
702 switch($PATH_CHUNKS[1]) {
703 case 'test': //test
704 die('Tell me why you cry');
705 break;
706 case 'assistant': //assistant
707 $assistant_vars['step'] = isset($PATH_CHUNKS[3]) && is_numeric($PATH_CHUNKS[3]) ? trim($PATH_CHUNKS[3]) : false;
708 echo $this->safe_include(DIR_ASSISTANTS,$PATH_CHUNKS[2],$assistant_vars);
709 break;
710 default: //?
711 $search = (isset($_GET['q']) && trim($_GET['q']) != '') ? trim($_GET['q']) : false;
712 $class = (isset($PATH_CHUNKS[1]) && $PATH_CHUNKS[1] != '') ? $PATH_CHUNKS[1] : 'item';
713 if(!isset($PATH_CHUNKS[2])) $PATH_CHUNKS[2]='';
714 switch($PATH_CHUNKS[2]) {
715 case 'new': //?/new
716 $this->process_http_request_post($PATH_CHUNKS[2], $class);
717 echo $this->render_form_add($class);
718 break;
719 default: //?/?
720 $id = (isset($PATH_CHUNKS[2]) && is_numeric($PATH_CHUNKS[2]) ? (int) $PATH_CHUNKS[2] : false);
721 if(!isset($PATH_CHUNKS[3])) $PATH_CHUNKS[3]='';
722 $edit=false;
723 switch($PATH_CHUNKS[3]) {
724 case 'edit': //?/?/edit
725 case 'image': //?/?/image
726 case 'delete': //?/?/delete
727 $this->process_http_request_post($PATH_CHUNKS[3], $class, $id);
728 $edit=true;
729 default: //?/?/?
730 $history = $PATH_CHUNKS[3] == 'history' ? true : false;
731 $limit = (int) (isset($PATH_CHUNKS[3]) ? $PATH_CHUNKS[3] : '0');
732 $offset = (int) (isset($PATH_CHUNKS[4]) ? $PATH_CHUNKS[4] : '0');
733 $where = false; //TODO get from URL
734 echo $this->render_items($class, $id, $limit, $offset, $where, $search, $history);
735 echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit);
736 //print_r(array("<pre>",$_SERVER));
737 break;
738 }
739 break;
740 }
741 break;
742 }
743 }
744}
745
746$sklad = new Sklad_UI();
747$sklad->process_http_request();
748
749echo("<hr/>");
This page took 0.165912 seconds and 4 git commands to generate.