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