Graficky vylepseni predchoziho
[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');
958f1e84 27require_once('Fortune.php');
cdfce7c2 28
0a027cc7
TM
29/**
30* Trida poskytuje vseobecne funkce pro generovani HTML kodu
31*
32* Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)!
33*
34* @package HTML
35* @author Tomas Mudrunka
36*/
37class HTML {
5a7b0bb6 38 function row($row,$type=false,$class=false,$parameters='',$colspan=array(),$rowspan=array(),$break_after=array()) {
933b760a 39 $html = '';
f6464b5c
TM
40 $class_br = $class ? " class='$class' " : '';
41 $class = $class ? " class='$class tr_nobr' " : '';
933b760a 42 if($type) $html.="<$type>";
f6464b5c 43 $html.="<tr$class$parameters>";
933b760a 44 $td = $type == 'thead' ? 'th' : 'td';
842cb193
TM
45 foreach($row as $id => $var) {
46 $tdclass = " class='cell_$id'";
0a027cc7 47 if(trim($var) == '') $var = '&nbsp;';
5a7b0bb6
TM
48 $rs = isset($rowspan[$id]) ? " rowspan='$rowspan[$id]'" : '';
49 $cs = isset($colspan[$id]) ? " colspan='$colspan[$id]'" : '';
50 $html.="<$td$rs$cs$tdclass>$var</$td>";
f6464b5c 51 if(in_array($id,$break_after,true)) $html.='</tr>'."<tr$class_br$parameters>";
0a027cc7
TM
52 }
53 $html.='</tr>';
933b760a 54 if($type) $html.="</$type>";
0a027cc7
TM
55 return $html;
56 }
57
ba30732d 58 function table(&$table,$colspan=array(),$rowspan=array(),$break_after=array(),$parity_class=array('tr_odd','tr_even'),$params='border=1',$row_classes_field='_row_classes') {
0a027cc7
TM
59 $html="<table $params>";
60 $header=true;
1b9304b8 61 $even=false;
0a027cc7 62 foreach($table as $row) {
ba30732d
TM
63 $params = isset($row[$row_classes_field]) ? $row[$row_classes_field] : '';
64 unset($row[$row_classes_field]);
0a027cc7 65 if($header) {
5a7b0bb6 66 $keys = array(); foreach($row as $key => $val) $keys[$key]=$key;
ba30732d 67 $html.=$this->row(T($keys),'thead',false,'',$colspan,$rowspan,$break_after);
0a027cc7
TM
68 $header=false;
69 }
1b9304b8 70 $class = $parity_class ? $parity_class[$even] : false;
ba30732d 71 $html.=$this->row($row,false,$class.$params,'',$colspan,$rowspan,$break_after);
1b9304b8 72 $even = !$even;
0a027cc7
TM
73 }
74 $html.='</table>';
75 return $html;
76 }
77
81ab8aef 78 function link($title='n/a', $link='#void', $internal=true, $translate=true) {
35916247 79 if($internal && (!isset($link[0]) || $link[0] != '#')) $link = $this->internal_url($link);
81ab8aef
TM
80 if($translate) $title = T($title);
81 return "<a href='$link'>".$title."</a>";
0a027cc7
TM
82 }
83
32e14fd3 84 function img($src='#void', $title='img', $options='height=64') {
81ab8aef
TM
85 $options = $options ? " $options" : '';
86 return "<img src='$src' alt='$title' title='$title'$options; />";
0a027cc7
TM
87 }
88
32e14fd3 89 function img_link($src, $link='#void', $title='img_link', $internal=true, $translate=true, $options='height=64') {
6f7943a0
TM
90 return $this->link($this->img($src,$title,$options),$link,$internal,$translate);
91 }
92
0f7fe034
TM
93 function textarea($name=false, $value='', $placeholder=false, $options=false, $prefix='') {
94 $html = T($prefix)."<textarea";
95 if($name) $html.= " name='$name'";
96 if($options) $html.= " $options";
97 if($placeholder) $html.= " placeholder='$placeholder'";
98 $html .= ">$value</textarea>";
99 return $html;
100 }
101
35916247 102 function input($name=false, $value=false, $type='text', $placeholder=false, $options=false, $prefix='') {
120e3b45 103 if($type == 'textarea') return $this->textarea($name, $value, $placeholder, $options, $prefix);
35916247 104 $html = T($prefix)."<input type='$type' ";
0a027cc7 105 if($name) $html.= "name='$name' ";
326a9fc9
TM
106 if(!is_bool($value)) {
107 if($type == 'submit') $value = T($value);
108 $html.= "value='$value' ";
109 }
0a027cc7
TM
110 if($options) $html.= "$options ";
111 if($placeholder) $html.= "placeholder='$placeholder' ";
112 $html .= '/>';
113 return $html;
114 }
115
35916247
TM
116 function form($action=false, $method=false, $inputs, $options=false) {
117 $action = $action ? " action='$action'" : '';
118 $method = $method ? " method='$method'" : '';
119 $options = $options ? " $options" : '';
120 $html = "<form$action$method$options>";
121 foreach($inputs as $input) $html .= call_user_func_array(array($this,'input'), $input);
122 $html .= "</form>";
123 return $html;
124 }
125
0a027cc7
TM
126 function select($name, $selectbox, $default=false) {
127 //echo('<pre>'); print_r($selectbox);
128 $html = "<select name='$name'>";
129
90638f10 130 if(!is_bool($default)) {
0a027cc7
TM
131 $value=$default; $title=$selectbox[$value];
132 $html .= "<option value='$value'>$value :: $title</option>";
133 unset($selectbox[$value]);
134 }
135 foreach($selectbox as $value => $title) {
136 $html .= "<option value='$value'>$value :: $title</option>";
137 }
138 $html .= "</select>";
139 return $html;
140 }
35916247
TM
141
142 function ul($items,$tag=ul,$head='',$class=false) {
143 $class = $class ? " class='$class'" : '';
144 $html = "$head<$tag$class>";
145 foreach($items as $key => $value) {
146 $html .= '<li>';
147 if(is_numeric($key)) {
148 $html .= $value;
149 } else {
150 $html .= $this->link($key,$value);
151 }
152 $html .= '</li>';
153 }
154 $html .= "</$tag>";
155 return $html;
156 }
157
158 function div($html, $options) {
159 $options = $options ? " $options" : '';
160 return "<div$options>$html</div>";
161 }
ec106ddf 162
25b3e809
TM
163 function favicon($url='/favicon.ico') {
164 return '<link rel="shortcut icon" href="'.$url.'" /><link href="'.$url.'" rel="icon" type="image/gif" />';
165
166 }
167
ec106ddf
TM
168 function head($title=false,$charset='UTF-8',$more='') {
169 $title = $title ? "\n<title>$title</title>" : '';
170 $html= '<head>';
171 $html.= '<meta http-equiv="Content-Type" content="text/html; charset='.$charset.'" />'.$title.$more;
25b3e809 172 $html.= $this->favicon(dirname($_SERVER['SCRIPT_NAME']).'/favicon.ico');
ec106ddf
TM
173 $html.= '</head>';
174 return $html;
175 }
0a027cc7
TM
176}
177
78bf26a5
TM
178/**
179* Trida poskytuje podpurne funkce pro generovani HTML kodu specificke pro sklad
180*
fc5c5b8b
TM
181* Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)!
182*
78bf26a5
TM
183* @package Sklad_HTML
184* @author Tomas Mudrunka
185*/
35916247 186class Sklad_HTML extends HTML { //TODO: Split into few more methods
e9f6461f 187 function header($title='', $user=array()) {
cdfce7c2
TM
188 $home = URL_HOME;
189 $script = $_SERVER['SCRIPT_NAME'];
d9384cb5 190 $search = htmlspecialchars(@trim($_GET['q']));
a8bbdc31 191 $message = strip_tags(@trim($_GET['message']),'<a><b><u><i><br>');
958f1e84 192 $fortune = fortune();
ac2ed3a1 193 $instance = INSTANCE_ID != '' ? '/'.INSTANCE_ID : '';
e9f6461f
TM
194 $user_id = htmlspecialchars($user['id']);
195 $user_gid = htmlspecialchars($user['gid']);
196 $user_name = htmlspecialchars($user['name']);
40eef626 197 $time = date('r');
35916247 198 //$title = T($title); //TODO
ec106ddf
TM
199
200 $html = $this->head("SōkoMan$title");
201 $html .= <<<EOF
6d98215b 202<h1 style="display: inline;"><a href="$script/">SōkoMan</a><small>$instance$title</small></h1>
40eef626
TM
203<div style="float:right; text-align:right;">
204 Logged in as <b>$user_name</b> [UID: <b>$user_id</b>; GID: <b>$user_gid</b>]<br />
205 Page loaded at $time
206</div>
c9759229
TM
207
208<style type="text/css">
ac2ed3a1 209* { font-family: arial; }
f6464b5c
TM
210td,body { background-color: white; border: orange; }
211.tr_nobr td { border-top: 3px solid orange; }
933b760a 212table { background-color: orange; border: orange; }
d0e7939c 213a, a img { text-decoration:none; color: darkblue; border:none; }
933b760a 214li a, a:hover { text-decoration:underline; }
1b9304b8 215.tr_even td { background-color: lemonchiffon; }
8b9a8edb
TM
216.tr_nobr.tr_even td:first-child { border-left: 5px solid orange; }
217.tr_nobr.tr_odd td:first-child { border-left: 5px solid white; }
7df1effb 218.item_status_stored td { font-weight:bold; }
80457ef3
TM
219.item_status_deleted td { text-decoration:line-through; }
220.item_status_destroyed td { font-style:italic; }
842cb193
TM
221/* table, table * { table-layout:fixed; width:100%; overflow:hidden; word-wrap:break-word; } */
222/* td { position:absolute; } */
5a7b0bb6 223/* .cell_model_name { float:left; } */
842cb193 224
ac2ed3a1 225
7bcd6b42 226.menu li {
c9759229 227 float: left;
7bcd6b42
TM
228 padding: 0.2em;
229}
230
231.menu * li {
232 float: none;
c9759229
TM
233}
234
235.menu * menu {
236 position: absolute;
7bcd6b42 237 padding: 0.2em;
c9759229
TM
238}
239
240.menu, .menu * menu {
241 list-style: none;
242}
243
244.menu * menu {
7bcd6b42 245 border: 1px solid orange;
c9759229
TM
246 display: none;
247 margin: 0;
248}
249
7bcd6b42 250.menu li:hover menu, .menu li:hover {
c9759229 251 display: block;
7bcd6b42 252 background-color: yellow;
c9759229 253}
7bcd6b42 254
c9759229
TM
255</style>
256
cdfce7c2 257<div>
35916247
TM
258EOF;
259
260 $assistants=array();
261 foreach(scandir(DIR_ASSISTANTS) as $item) {
262 if($item == '.' || $item == '..') continue;
de42ea13
TM
263 $item = preg_replace('/\.inc\.php$/','',$item,-1,$count);
264 if($count) $assistants[$item] = "assistant/$item";
35916247
TM
265 }
266
267 $tables=array('item','model','category','producer','vendor','room','status');
268
269 foreach($tables as $table) {
270 $listable[$table] = $table;
271 $insertable[$table] = "$table/new";
272 }
273
274 $html .= $this->ul(array(
35916247 275 'Home' => '',
ec106ddf 276 'Logout' => '?logout',
35916247 277 0 => $this->ul($assistants,'menu',$this->link('Assistants','#')),
ec106ddf
TM
278 1 => $this->ul($insertable,'menu',$this->link('New','#')),
279 2 => $this->ul($listable,'menu',$this->link('List','#'))
35916247
TM
280 ),'menu', '', 'menu');
281
282 $html .= '<div style="float: right;">';
283
bf9a965c
TM
284 /*
285 //TODO: Do we really need this?
88c38b26 286 $html .= $this->form("$script/api/go", 'GET', array(
81ab8aef 287 array('q','','text','smart id...', 'autofocus'),
35916247
TM
288 array(false,'go','submit')
289 ), 'style="float: left;"');
bf9a965c 290 */
35916247
TM
291
292 $html .= $this->form('?', 'GET', array(
293 array('q',$search,'text','regexp...'),
294 array(false,'filter','submit')
295 ), 'style="float: left;"');
296
bf9a965c
TM
297 $html .= $this->form("$script/item", 'GET', array(
298 array('q',$search,'text','regexp...','autofocus'),
299 array(false,'search','submit')
300 ), 'style="float: left;"');
301
35916247
TM
302 $html .= '</div>';
303
304 $html .= <<<EOF
cdfce7c2 305</div>
c9759229 306<hr style="clear: both;" />
d9384cb5
TM
307<div style="background-color:#FFDDDD;">
308 <font color="red">$message</font>
309</div>
958f1e84 310<div style="text-align:right; color:darkgreen;">
41e57f9e
TM
311$fortune
312</div>
cdfce7c2 313EOF;
35916247
TM
314
315 return $html;
cdfce7c2
TM
316 }
317
d9384cb5
TM
318 function internal_url($link) {
319 return $_SERVER['SCRIPT_NAME'].'/'.$link;
320 }
321
cdfce7c2
TM
322 function table_add_images(&$table) {
323 $image = array('model_id');
324 foreach($table as $id => $row) {
325 foreach($image as $column) if(isset($table[$id][$column])) {
326 $type = @array_shift(preg_split('/_/', $column));
327 $src=URL_IMAGES."/$type/".$table[$id][$column].'.jpg';
6f7943a0 328 $table[$id][$type.'_image']=$this->img_link($src, $src, $table[$id][$column], false, false);
cdfce7c2
TM
329 }
330 }
331 }
332
81ab8aef 333 function render_barcode($barcode,$opts=false) {
6f7943a0 334 return $this->img_link($this->internal_url("barcode/$barcode"),$this->internal_url("barcode/$barcode"),$barcode,false,false,$opts);
81ab8aef
TM
335 }
336
337 function table_add_barcodes(&$table) {
338 $image = array('model_barcode', 'item_serial');
339 foreach($table as $id => $row) {
340 foreach($image as $column) if(isset($table[$id][$column])) {
341 $table[$id][$column]=$this->render_barcode($table[$id][$column]);
342 }
343 }
344 }
345
ba30732d 346 function table_add_row_classes(&$table, $class_col='_row_classes') {
7df1effb
TM
347 $image = array('status_name' => ' item_status_');
348 foreach($table as $id => $row) {
349 foreach($image as $column => $param) if(isset($table[$id][$column])) {
ba30732d 350 @$table[$id][$class_col] .= $param.$table[$id][$column];
7df1effb
TM
351 }
352 }
353 }
354
d6975011 355 function table_add_relations(&$table, $class, $suffix_relations='_relations') {
aaafc8b7 356 $where_url = '%d/?where[%c]==%v';
d6975011 357 $relations = array( //TODO: Autodetect???
aaafc8b7 358 'model' => array(
9c310625 359 'model_id' => array(array('item',$where_url),array('edit','model/%v/edit/')),
d516a31d 360 'model_barcode' => array(array('store','assistant/%d?barcode=%v')),
41e57f9e 361 'model_name' => array(array('google','http://google.com/search?q=%v',true)) //TODO: add manufacturer to google query
aaafc8b7 362 ),
4ece8e80 363 'item' => array(
d1686e10 364 'item_serial' => array(array('dispose','assistant/%d?serial=%v','in_stock'),array('sell','assistant/%d?serial=%v','in_stock')),
6265a8d4 365 'item_id' => array(array('edit','item/%v/edit/'))
4ece8e80 366 ),
d7d9ce39 367 'category' => array('category_id' => array(array('item',$where_url), array('model',$where_url))),
0646d9ef 368 'producer' => array('producer_id' => array(array('item',$where_url), array('model',$where_url))),
aaafc8b7
TM
369 'vendor' => array('vendor_id' => array(array('item',$where_url))),
370 'room' => array('room_id' => array(array('item',$where_url))),
371 'status' => array('status_id' => array(array('item',$where_url)))
d6975011 372 );
6265a8d4 373 $relations_conditions=array(
d1686e10 374 'in_stock' => 'return(@$table[$id]["status_name"] == "stored");',
3b626989
TM
375 'not_sold' => 'return(@$table[$id]["status_name"] != "sold");',
376 'not_sold_or_disposed' => 'return(@$table[$id]["status_name"] != "sold" && @$table[$id]["status_name"] != "disposed");'
6265a8d4 377 );
d6975011
TM
378 foreach($table as $id => $row) {
379 foreach($row as $column => $value) {
380 if(isset($relations[$class][$column])) {
381 foreach($relations[$class][$column] as $destination) {
aaafc8b7
TM
382 $destination_url = str_replace(
383 array('%d','%c','%v'),
d516a31d 384 array(urlencode($destination[0]),urlencode($column),urlencode($value)),
aaafc8b7
TM
385 $destination[1]
386 );
9c310625 387 if(isset($destination[2]) && isset($relations_conditions[$destination[2]])) {
e9482e8a
TM
388 //$condition = $relations_conditions[$destination[2]]($table,$id);
389 if(!eval($relations_conditions[$destination[2]])) continue;
6265a8d4 390 }
2195f218 391 @$table[$id][$class.$suffix_relations] .= $this->link($destination[0], $destination_url).',';
d6975011
TM
392 }
393 }
394 }
395 }
396 }
397
cdfce7c2
TM
398 function table_collapse(&$table) {
399 $collapse = array(
400 'item_id' => 'item_id',
401 'model_id' => 'model_name',
402 'category_id' => 'category_name',
403 'producer_id' => 'producer_name',
404 'vendor_id' => 'vendor_name',
405 'room_id' => 'room_name',
406 'status_id' => 'status_name',
d7d9ce39 407 'item_author' => 'item_author_backend',
a278a425 408 'item_customer' => 'item_customer',
cdfce7c2 409 );
d7d9ce39 410
cdfce7c2
TM
411 foreach($table as $id => $row) {
412 foreach($collapse as $link => $title)
fff6ce40 413 if(isset($table[$id][$link]) && isset($row[$title])) {
cdfce7c2
TM
414 $type = @array_shift(preg_split('/_/', $link));
415 if($link != $title) unset($table[$id][$link]);
d7d9ce39
TM
416 switch($link) { //TODO: Move to array for easy configuration
417 case 'item_author':
a278a425
TM
418 case 'item_customer':
419 $table[$id][$title]=$this->link($row[$title], "?where[$link]==".$row[$link], false);
d7d9ce39
TM
420 break;
421 default:
422 $table[$id][$title]=$this->link($row[$title], $type.'/'.$row[$link].'/');
423 break;
424 }
cdfce7c2
TM
425 }
426 }
427 }
428
429 function table_sort(&$table) {
9c310625 430 $precedence = array('item_id', 'model_image', 'model_name','model_descript','category_name','status_name','room_name','item_quantity','item_price_in','item_price_out','model_price_in','model_price_out','item_relations','model_relations');
cdfce7c2
TM
431 $table_sorted = array();
432 foreach($table as $id => $row) {
433 $table_sorted[$id] = array();
434 foreach($precedence as $column) if(isset($table[$id][$column])) {
842cb193 435 $table_sorted[$id][$column]=$table[$id][$column];
cdfce7c2
TM
436 unset($table[$id][$column]);
437 }
842cb193
TM
438 $table_sorted[$id]=array_merge($table_sorted[$id],$table[$id]);
439 //foreach($table[$id] as $key => $val) $table_sorted[$id][T($key)] = $val; //array_merge with T() translating
cdfce7c2
TM
440 }
441 $table = $table_sorted;
442 }
443
ecaeb1d6
TM
444 function table_hide_columns(&$table, $class) { //TODO: Move to build_query_select() !!! :-)))
445 $fields_hide = array(
446 'item' => array('model_descript','model_price_in','model_price_out','model_barcode','model_countable','model_reserve','model_eshop_hide','room_descript','room_author','producer_name','producer_note','vendor_note')
447 );
448 //print_r($table); die();
449 if(isset($fields_hide[$class])) foreach($table as $id => $row) {
450 foreach($fields_hide[$class] as $field) unset($table[$id][$field]);
451 }
452 }
453
d6975011 454 function render_item_table($table,$class=false) {
5a7b0bb6
TM
455
456 $cellspan = array(
457 'break_after' => array(
1f7c4407 458 'item' => array('category_name'),
5a7b0bb6
TM
459 'model'=> array('model_descript')
460 ),
461 'rowspan' => array(
462 'item' => array('model_image'=>2,'item_id'=>2),
463 'model'=> array('model_image'=>2)
464 ),
465 'colspan' => array(
1f7c4407 466 'item' => array('model_name'=>6,'category_name'=>'100%'),
5a7b0bb6
TM
467 'model'=> array('model_name'=>4,'model_descript'=>'100%')
468 )
469 );
470
471 foreach(array_keys($cellspan) as $vari)
472 $$vari = isset($cellspan[$vari][$class]) ? $cellspan[$vari][$class] : array();
473
8ca87ee3 474 if(empty($table)) return '<h3>'.T('holy primordial emptiness is all you can find here...').'</h3><br />';
ba30732d 475 $this->table_add_row_classes($table);
cdfce7c2 476 $this->table_add_images($table);
d6975011 477 if($class) $this->table_add_relations($table,$class);
aaafc8b7 478 $this->table_add_barcodes($table);
cdfce7c2 479 $this->table_collapse($table);
ecaeb1d6 480 if($class) $this->table_hide_columns($table,$class);
cdfce7c2 481 $this->table_sort($table);
5a7b0bb6 482 return $this->table($table,$colspan,$rowspan,$break_after);
cdfce7c2
TM
483 }
484
d0e7939c 485 function render_insert_inputs($class,$columns,$selectbox,$current,$hidecols,$update) {
120e3b45
TM
486 $textarea = array(
487 'item' => array('item_note'),
488 'model' => array('model_descript')
489 );
d0e7939c 490 $html = '';
cdfce7c2 491 foreach($columns as $column) {
326a9fc9 492 $html.=T($class).':<b>'.T($column['Field']).'</b>: ';
7d20381f 493 $name="values[$class][".$column['Field'].'][]';
16261142 494 $val = $update && isset($current[$column['Field']]) ? $current[$column['Field']] : false;
cdfce7c2 495 switch(true) {
a084118b 496 case (preg_match('/auto_increment/', $column['Extra']) || in_array($column['Field'], $hidecols)):
90638f10 497 if(is_bool($val) && !$val) $val = '';
fc5c5b8b
TM
498 $html.=$this->input($name, $val, 'hidden');
499 $html.=$val.'(AUTO)';
cdfce7c2
TM
500 break;
501 case isset($selectbox[$column['Field']]):
e9cb8cea 502 $html.=$this->select($name,$selectbox[$column['Field']],$val);
cdfce7c2 503 break;
120e3b45
TM
504 case isset($textarea[$class]) && in_array($column['Field'],$textarea[$class]):
505 $html.=$this->input($name, $val, 'textarea');
506 break;
507 default:
fc5c5b8b 508 $html.=$this->input($name, $val);
cdfce7c2
TM
509 break;
510 }
fc5c5b8b 511 $html.='<br />';
cdfce7c2 512 }
d0e7939c
TM
513 return $html;
514 }
cdfce7c2 515
d0e7939c
TM
516 function render_insert_form_multi($array) {
517 $html = '';
518 $head=false;
519
520 foreach($array as $key => $args) {
521 $parts=array('inputs');
522 if(!$head) { $head = true;
523 $parts[]='head';
524 }
525 if(!isset($array[$key+1])) {
526 $parts[]='foot';
5b0075fa
TM
527 $hr = '';
528 } else $hr = '<hr />';
529 //$args[] = false;
d0e7939c 530 $args[] = $parts;
f5baa075 531
d0e7939c 532 $html .= call_user_func_array(array($this, 'render_insert_form'), $args);
5b0075fa 533 $html .= $hr;
d0e7939c
TM
534 }
535 return $html;
536 }
537
538 function render_insert_form($class, $columns, $selectbox=array(), $current=false, $hidecols=false, $action=false, $multi_insert=true, $parts=false) {
539 $html = '';
540 //print_r($parts);
541 //echo('<pre>'); print_r($selectbox);
542 //echo('<pre>'); print_r($current);
543 $update = false;
544 if(is_array($current)) {
545 $update = true;
546 $current = array_shift($current);
547 }
548
549 if(!is_array($hidecols)) $hidecols = array();
550 $hidecols = array_merge($hidecols, array('item_author', 'item_valid_from', 'item_valid_till')); //TODO Autodetect
551
552 if(!is_array($parts) || in_array('head', $parts)) {
553 $action = $action ? " action='$action'" : false;
554 $html.="<form$action method='POST'>"; //TODO: use $this->form()
5b0075fa 555 $html.='<span><div name="input_set" style="float:left; border:1px solid grey; padding: 1px; margin: 1px;">';
cdfce7c2
TM
556 }
557
d0e7939c
TM
558 if(!is_array($parts) || in_array('inputs', $parts))
559 $html.=$this->render_insert_inputs($class,$columns,$selectbox,$current,$hidecols,$update);
560
561 if(!is_array($parts) || in_array('foot', $parts)) {
5b0075fa 562 $html .= '</div></span><br style="clear:both" />';
d0e7939c
TM
563 if($multi_insert) { //TODO, move to separate JS file
564 $html.=<<<EOF
d0e7939c
TM
565 <script>
566 function duplicate_element(what, where) {
567 var node = document.getElementsByName(what)[0];
568 node.parentNode.appendChild(node.cloneNode(true));
569 }
570 </script>
571 <a href='#' onClick="duplicate_element('input_set')">+</a>
572EOF;
573 }
574
575 $btn = is_array($current) ? 'UPDATE' : 'INSERT'; //TODO: $current may be set even when inserting...
576 $html.=$this->input(false, $btn, 'submit');
577 $html.='</form>';
578 }
fc5c5b8b 579 return $html;
cdfce7c2
TM
580 }
581}
582
78bf26a5
TM
583/**
584* Trida poskytuje rozhrani k databazi skladu
585*
586* @package Sklad_DB
587* @author Tomas Mudrunka
588*/
cdfce7c2
TM
589class Sklad_DB extends PDO {
590 function __construct() {
63747dad 591 $this->auth = new Sklad_Auth();
cdfce7c2
TM
592
593 parent::__construct(
594 DB_DSN, DB_USER, DB_PASS,
595 array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8") //Force UTF8 for MySQL
596 );
597 }
598
599 function escape($str) {
600 return preg_replace('(^.|.$)', '', $this->quote($str)); //TODO HACK
601 }
602
382324d3
TM
603 function quote_identifier($str) {
604 return '`'.$this->escape($str).'`'; //TODO HACK
605 }
606
cb8a6861 607 function build_query_select($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false, $order=false, $suffix_id='_id') {
2bedfdac 608 //Configuration
cdfce7c2
TM
609 $join = array(
610 'item' => array('model', 'category', 'producer', 'vendor', 'room', 'status'),
611 'model' => array('category', 'producer')
9ea191cb 612 ); //TODO Autodetect using foreign keys?
ecaeb1d6 613 $fields_search = array(
0646d9ef
TM
614 'item' => array('item_id','item_serial','model_name','model_barcode','model_descript','producer_name','vendor_name'),
615 'model' => array('model_id','model_name','model_barcode','model_descript','producer_name')
9ea191cb 616 ); //TODO Autodetect
2bedfdac 617
d9d47bd3
TM
618 //Init
619 if(is_array($where)) foreach($where as $key => $value) $where[$key] = $key.' '.$value; //TODO: escape SQLi!!!
620
2bedfdac
TM
621 //Escaping
622 $class = $this->escape($class);
623
624 //SELECT
382324d3 625 $sql="SELECT * FROM `$class`\n";
2bedfdac 626 //JOIN
382324d3 627 if(isset($join[$class])) foreach($join[$class] as $j) $sql .= "LEFT JOIN `$j` USING($j$suffix_id)\n";
2bedfdac 628 //WHERE/REGEXP
cdfce7c2
TM
629 if($search) {
630 $search = $this->quote($search);
ecaeb1d6 631 if(!isset($fields_search[$class])) die(trigger_error(T("Can't search in $class table yet :-("))); //TODO: post_redirect_get
5895162b 632 $sql_search = '';
ecaeb1d6 633 foreach($fields_search[$class] as $column) $sql_search .= "OR $column REGEXP $search ";
5895162b 634 $where[] = "FALSE $sql_search";
cb8a6861
TM
635 } elseif($id) $where[] = "$class$suffix_id = $id";
636 if(!$history && $this->contains_history($class)) $where[] = $class.'_valid_till=0';
637
5895162b 638 if($where) $sql .= 'WHERE ('.implode(') AND (', $where).")\n";
117817be 639 //ORDER
fd479ff5 640 if(!$order) $order = $class.$suffix_id.' DESC';
117817be
TM
641 if($this->contains_history($class)) $order .= ",${class}_valid_from DESC";
642 $sql .= "ORDER BY $order\n";
2bedfdac 643 //LIMIT/OFFSET
cdfce7c2
TM
644 if($limit) {
645 $limit = $this->escape((int)$limit);
646 $offset = $this->escape((int)$offset);
647 $sql .= "LIMIT $offset,$limit\n";
648 }
2bedfdac 649
cdfce7c2
TM
650 return $sql;
651 }
652
66b6f4d6 653 function safe_query($sql, $fatal=true) {
cdfce7c2
TM
654 $result = $this->query($sql);
655 if(!$result) {
2bedfdac 656 $error = $this->errorInfo();
66b6f4d6
TM
657 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>");
658 if($fatal) die();
cdfce7c2
TM
659 }
660 return $result;
661 }
662
d9601e5d 663 function translate_query_results(&$result) {
d1686e10 664 $translate_cols = array('item_valid_till'); //TODO: Hardcoded
326a9fc9
TM
665 foreach($result as $key => $row) {
666 foreach($translate_cols as $col) if(isset($result[$key][$col])){
667 $result[$key][$col] = T($result[$key][$col]);
668 }
669 }
d9601e5d
TM
670 }
671
d7d9ce39 672 function load_backend_data_to_query_results(&$result,$suffix_backend='_backend') {
d9601e5d
TM
673 $translate_cols = array(
674 'item_author' => 'return($this->auth->get_username_by_id($result[$key][$col]));'
675 ); //TODO: Hardcoded
676 foreach($result as $key => $row) {
677 foreach($translate_cols as $col => $backend) if(isset($result[$key][$col])){
d7d9ce39 678 $result[$key][$col.$suffix_backend] = eval($backend);
d9601e5d
TM
679 }
680 }
326a9fc9
TM
681 }
682
683 function safe_query_fetch($sql, $fatal=true, $fetch_flags = PDO::FETCH_ASSOC, $translate=true) {
684 $result = $this->safe_query($sql, $fatal)->fetchAll($fetch_flags);
d9601e5d
TM
685 $this->load_backend_data_to_query_results($result);
686 if($translate) $this->translate_query_results($result);
326a9fc9
TM
687 return $result;
688 }
689
cb8a6861
TM
690 function get_listing($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false, $indexed=array(), $suffix_id='_id') {
691 $sql = $this->build_query_select($class, $id, $limit, $offset, $where, $search, $history);
326a9fc9 692 $result = $this->safe_query_fetch($sql);
cdfce7c2
TM
693 if(!$result || !is_array($indexed)) return $result;
694
695 foreach($result as $key => $row) $indexed[$row[$class.$suffix_id]]=$row;
696 return $indexed;
697 }
698
d0e7939c 699 function get_columns($class,$disable_cols=array()) { //TODO: Not sure if compatible with non-MySQL DBs
cdfce7c2
TM
700 $class = $this->escape($class);
701 $sql = "SHOW COLUMNS FROM $class;";
d0e7939c
TM
702 $columns = $this->safe_query_fetch($sql);
703 /*foreach($columns as $colk => $col) foreach($col as $key => $val) {
704 if(in_array($col['Field'],$disable_cols)) $columns[$colk]['Extra']='auto_increment';
705 }*/
706 return $columns;
cdfce7c2
TM
707 }
708
709 function columns_get_selectbox($columns, $class=false, $suffix_id='_id', $suffix_name='_name') {
1c99d83b 710 $selectbox=array( //TODO: Hardcoded...
41e57f9e 711 'model_countable' => array(0 => 'no', 1 => 'yes'),
3e939604
TM
712 'model_eshop_hide' => array(0 => 'no', 1 => 'yes'),
713 'vendor_id' => array('COMPULSORY' => 'select...')
1c99d83b 714 );
cdfce7c2 715 foreach($columns as $column) {
66b6f4d6 716 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
717 if($class && $column['Field'] == $class.$suffix_id) continue;
718 if(!preg_match('/'.$suffix_id.'$/', $column['Field'])) continue;
719 $table=preg_replace('/'.$suffix_id.'$/','',$column['Field']);
66b6f4d6 720
117817be 721 $history = $this->contains_history($table) ? " WHERE ${table}_valid_till=0" : '';
b4dcae05 722 $sql = "SELECT $table$suffix_id, $table$suffix_name FROM $table$history;"; //TODO use build_query_select()!!!
326a9fc9 723 $result = $this->safe_query_fetch($sql, false);
66b6f4d6 724 if(!$result) continue;
cdfce7c2
TM
725 foreach($result as $row) $selectbox[$table.$suffix_id][$row[$table.$suffix_id]]=$row[$table.$suffix_name];
726 }
727 //echo('<pre>'); print_r($selectbox);
66b6f4d6 728 return array_filter($selectbox, 'ksort');
9ea191cb
TM
729 }
730
d0e7939c 731 function map_unique($key, $value, $select, $table, $fatal=true) { //TODO: Guess $select and $table if not passed
16261142
TM
732 $history = $this->contains_history($table) ? " AND ${table}_valid_till=0" : '';
733 $value=$this->quote($value);
734 $sql = "SELECT $select FROM $table WHERE $key=$value$history LIMIT 1;"; //TODO use build_query_select()!!!
326a9fc9 735 $result = $this->safe_query_fetch($sql);
d0e7939c 736 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
737 }
738
9ea191cb
TM
739 function contains_history($table) {
740 $history_tables = array('item'); //TODO Autodetect
741 return in_array($table, $history_tables);
cdfce7c2
TM
742 }
743
744 function build_query_insert($table, $values, $replace=true, $suffix_id='_id') {
b66fadbb
TM
745 //Init
746 $history = $this->contains_history($table);
747
9ea191cb 748 //Escaping
cdfce7c2
TM
749 $table = $this->escape($table);
750
751 //Get list of POSTed columns
aa3fd0a8
TM
752 $columns_array = array_map(array($this,'escape'), array_keys($values[0]));
753 $columns = implode(',',$columns_array);
cdfce7c2 754
9fb856ba 755 //Build query
b66fadbb 756 $sql = '';
b66fadbb
TM
757 //echo('<pre>'); die(print_r($values));
758
759 if($history) {
760 $history_update=false; foreach($values as $row) if(is_numeric($row[$table.'_id'])) $history_update=true;
761 if($history_update) {
762 $sql .= "UPDATE $table";
117817be
TM
763 $sql .= " SET ${table}_valid_till=NOW()";
764 $sql .= " WHERE ${table}_valid_till=0 AND (";
b66fadbb
TM
765 $or = '';
766 foreach($values as $row) {
5b0075fa 767 $sql .= $or.' '.$table.'_id='.$this->quote($row[$table.'_id']);
b66fadbb
TM
768 $or = ' OR';
769 }
770 $sql .= " );\n\n";
771 $replace = false;
772 }
773 }
774
cdfce7c2 775 //Insert into table (columns)
aa3fd0a8 776 $sql .= "INSERT INTO $table ($columns) VALUES ";
cdfce7c2
TM
777
778 //Values (a,b,c),(d,e,f)
779 $comma='';
780 foreach($values as $row) {
9fb856ba
TM
781 $row_quoted = array_map(array($this,'quote'), $row); //Check
782 if($history) {
b66fadbb
TM
783 foreach($row as $column => $value) {
784 switch($column) {
785 case $table.'_valid_from':
786 $row_quoted[$column] = 'NOW()';
787 break;
788 case $table.'_valid_till':
789 $row_quoted[$column] = '0';
790 break;
9fb856ba 791 case $table.'_author':
e9f6461f
TM
792 $row_quoted[$column] = $this->auth->get_user_id();
793 //die($this->auth->get_user_id().'=USER');
b66fadbb 794 break;
b66fadbb
TM
795 }
796 }
797 }
798 $sql .= $comma.'('.implode(',',$row_quoted).')';
cdfce7c2
TM
799 $comma = ',';
800 }
801
aa3fd0a8
TM
802 //On duplicate key
803 if($replace) {
804 foreach($columns_array as $col) {
805 if($col == $table.'_id' || $col == $table.'_valid_till') continue;
806 $on_duplicate[] = "$col=VALUES($col)";
807 }
808 $sql .= "\nON DUPLICATE KEY UPDATE ".implode(',', $on_duplicate);
809 }
810
cdfce7c2
TM
811 //Terminate
812 $sql .= ';';
813 return $sql;
814 }
815
b4dcae05
TM
816 function insert_or_update($table, $values, $replace=true) {
817 $sql = $this->build_query_insert($table, $values, $replace);
cdfce7c2
TM
818 $this->safe_query($sql);
819 return $this->lastInsertId();
820 }
821
b4dcae05 822 function insert_or_update_multitab($values, $replace=true) {
371a86f4 823 $last=false;
b4dcae05 824 foreach($values as $table => $rows) $last = $this->insert_or_update($table, $rows, $replace);
371a86f4
TM
825 return $last;
826 }
827
cdfce7c2 828 function delete($table, $id, $suffix_id='_id') {
64f31c54 829 if($this->contains_history($table)) return false;
cdfce7c2
TM
830 $key = $this->escape($table.$suffix_id);
831 $table = $this->escape($table);
832 $id = $this->quote($id);
833 return $this->safe_query("DELETE FROM $table WHERE $key = $id LIMIT 1;");
834 }
835}
836
0a027cc7
TM
837/**
838* Trida poskytuje high-level rozhrani k databazi skladu
839*
840* @package Sklad_DB_Abstract
841* @author Tomas Mudrunka
842*/
843class Sklad_DB_Abstract extends Sklad_DB {
844 //TODO Code
845}
846
78bf26a5
TM
847/**
848* Trida implementuje uzivatelske rozhrani skladu
849*
850* Example usage:
851* $sklad = new Sklad_UI();
852* $sklad->process_http_request();
853*
854* @package Sklad_UI
855* @author Tomas Mudrunka
856*/
cdfce7c2
TM
857class Sklad_UI {
858 function __construct() {
859 $this->db = new Sklad_DB();
860 $this->html = new Sklad_HTML();
861 }
862
cb8a6861 863 function render_items($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false) {
d6975011 864 return $this->html->render_item_table($this->db->get_listing($class, $id, $limit, $offset, $where, $search, $history, false),$class);
cdfce7c2
TM
865 }
866
a25f85f8 867 function render_form_add($class) {
cdfce7c2
TM
868 $columns = $this->db->get_columns($class);
869 $selectbox = $this->db->columns_get_selectbox($columns, $class);
a25f85f8 870 return $this->html->render_insert_form($class, $columns, $selectbox);
cdfce7c2
TM
871 }
872
f5baa075 873 function render_form_edit($class, $id, $multi_insert) {
cdfce7c2
TM
874 $columns = $this->db->get_columns($class);
875 $selectbox = $this->db->columns_get_selectbox($columns, $class);
117817be 876 $current = $this->db->get_listing($class, $id, 1);
f5baa075 877 return $this->html->render_insert_form($class, $columns, $selectbox, $current, false, false, $multi_insert);
cdfce7c2
TM
878 }
879
8f451ba7 880 function render_single_record_details($class, $id, $barcode=true) {
cdfce7c2
TM
881 $id_next = $id + 1;
882 $id_prev = $id - 1 > 0 ? $id - 1 : 0;
883 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
a25f85f8
TM
884 $html='';
885 $html.= $this->html->link('<<', "$class/$id_prev/");
886 $html.= '-';
887 $html.= $this->html->link('>>', "$class/$id_next/");
8f451ba7
TM
888 $html.= '&nbsp;&nbsp;&nbsp;';
889 $barcode && $html.='<span style="float:right;">'.$this->html->render_barcode(BARCODE_PREFIX.strtoupper("$class/$id")).'</span>';
a25f85f8 890 $html.= $this->html->link('edit', "$class/$id/edit/");
9fb856ba 891 if($this->db->contains_history($class)) $html.= ' ][ '.$this->html->link('history', "$class/$id/history/");
a25f85f8 892 return $html;
cdfce7c2
TM
893 }
894
a25f85f8 895 function render_listing_navigation($class, $id, $limit, $offset) {
cdfce7c2
TM
896 $offset_next = $offset + $limit;
897 $offset_prev = $offset - $limit > 0 ? $offset - $limit : 0;
898 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
a25f85f8
TM
899 $html='';
900 $html.= $this->html->link('<<', "$class/$id/$limit/$offset_prev/$get");
901 $html.= '-';
902 $html.= $this->html->link('>>', "$class/$id/$limit/$offset_next/$get");
a4dae920 903 $html.= '&nbsp;&nbsp;&nbsp;';
a25f85f8
TM
904 $html.= $this->html->link('new', "$class/new/$get");
905 return $html;
cdfce7c2
TM
906 }
907
8f451ba7 908 function render_listing_extensions($class, $id, $limit, $offset, $edit=false, $barcode=true) {
a25f85f8 909 $html='';
cdfce7c2 910 if(is_numeric($id)) {
8f451ba7 911 $html.=$this->render_single_record_details($class, $id, $barcode);
cdfce7c2 912 } else {
a25f85f8 913 $html.=$this->render_listing_navigation($class, '*', $limit, $offset);
cdfce7c2
TM
914 }
915 if($edit) {
f5baa075 916 $html.= $this->render_form_edit($class, $id, false);
cdfce7c2 917 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/delete";
35916247
TM
918 $html.=$this->html->form($action,'POST',array(
919 array(false,'DELETE','submit'),
920 array('sure', false, 'checkbox', false, false, 'sure?')
921 ));
cdfce7c2 922 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/image";
35916247
TM
923 $html.=$this->html->form($action,'POST',array(
924 array('image', false, 'file', false, 'size="30"'),
925 array(false, 'IMAGE', 'submit')
926 ), "enctype='multipart/form-data'");
cdfce7c2 927 }
a25f85f8 928 return $html;
cdfce7c2
TM
929 }
930
931 function check_auth() {
042a4988 932 new HTTP_Auth('WareHouse ['.BACKEND_AUTH.']', true, array($this->db->auth,'check_auth'));
cdfce7c2
TM
933 }
934
a8bbdc31
TM
935 function post_redirect_get($location, $message='', $error=false, $translate=true) {
936 $messaget = $translate ? T($message) : $message;
937 $url_args = $messaget != '' ? '?message='.urlencode($messaget) : '';
8acef003 938 $location = $this->html->internal_url($location).$url_args;
1f74892d 939 header('Location: '.$location);
64f31c54 940 if($error) trigger_error($message);
7efdf72a
TM
941 $location=htmlspecialchars($location);
942 die(
943 "<meta http-equiv='refresh' content='0; url=$location'>".
a8bbdc31 944 $messaget."<br />Location: <a href='$location'>$location</a>"
7efdf72a 945 );
cdfce7c2
TM
946 }
947
623c65e2 948 function safe_include($dir,$name,$vars=array(),$ext='.inc.php') {
64f31c54 949 if(preg_match('/[^a-zA-Z0-9-]/',$name)) $this->post_redirect_get('', 'SAFE INCLUDE: Securityfuck.', true);
3e6c412e 950 $filename="$dir/$name$ext";
64f31c54 951 if(!is_file($filename)) $this->post_redirect_get('', 'SAFE INCLUDE: Fuckfound.', true);
623c65e2 952 foreach($vars as $var => $val) $$var=$val;
3e6c412e
TM
953 ob_start();
954 include($filename);
955 $out=ob_get_contents();
956 ob_end_clean();
957 return $out;
958 }
959
a8bbdc31
TM
960 function check_input_validity($field, $value='', $ruleset=0) {
961 $rules = array(0 => array(
962 'model_barcode' => '/./',
3e939604
TM
963 'item_serial' => '/./',
964 'vendor_id' => '/^[0-9]*$/'
a8bbdc31
TM
965 ));
966 if(isset($rules[$ruleset][$field]) && !preg_match($rules[$ruleset][$field], trim($value))) return false;
967 return true;
968 }
969
bda4a4be 970 function process_http_request_post($action=false, $class=false, $id=false, $force_redirect=false) {
cdfce7c2 971 if($_SERVER['REQUEST_METHOD'] != 'POST') return;
1f74892d 972 //echo('<pre>'); //DEBUG (maybe todo remove), HEADERS ALREADY SENT!!!!
cdfce7c2
TM
973
974 //SephirPOST:
371a86f4
TM
975
976 /* Tenhle foreach() prekopiruje promenne
7d20381f 977 * z: $_POST['values'][$table][$column][$id];
371a86f4
TM
978 * do: $values[$table][$id][$column]
979 */
7d20381f
TM
980 if(isset($_POST['values'])) {
981 $values=array();
982 foreach($_POST['values'] as $table => $columns) {
983 foreach($columns as $column => $ids) {
a8bbdc31
TM
984 foreach($ids as $id => $val) {
985 $values[$table][$id][$column] = trim($val);
986 if(!$this->check_input_validity($column,$val)) {
987 $message = "Spatny vstup: $column [$id] = \"$val\"; ". //XSS
988 $this->html->link('GO BACK', 'javascript:history.back()', false, false);
989 $this->post_redirect_get('', $message, false, false);
990 }
991 }
7d20381f 992 }
cdfce7c2 993 }
7d20381f 994 //die(print_r($values));
cdfce7c2
TM
995 }
996
997 if($action) switch($action) {
998 case 'new':
b4dcae05 999 $replace = false;
cdfce7c2 1000 case 'edit':
b4dcae05 1001 if(!isset($replace)) $replace = true;
64f31c54 1002 $table = $class ? $class : 'item';
cdfce7c2 1003 //print_r($values); //debug
b4dcae05 1004 $last = $this->db->insert_or_update_multitab($values, $replace);
bda4a4be 1005 $last = $force_redirect ? $force_redirect."?last=$last" : "$table/$last/";
d9384cb5 1006 $next = "$table/new/";
bda4a4be
TM
1007 $message = $force_redirect ? '' : 'Hotovo. Další záznam přidáte '.$this->html->link('zde', $next).'.';
1008 $this->post_redirect_get($last, $message);
cdfce7c2
TM
1009 break;
1010 case 'delete':
64f31c54
TM
1011 if(!isset($_POST['sure']) || !$_POST['sure']) $this->post_redirect_get("$class/$id/edit", 'Sure user expected :-)');
1012 $this->db->delete($class, $id) || $this->post_redirect_get("$class/$id/edit", "V tabulce $class jentak neco mazat nebudes chlapecku :-P");
1f74892d 1013 $this->post_redirect_get("$class", "Neco (pravdepodobne /$class/$id) bylo asi smazano. Fnuk :'-(");
cdfce7c2
TM
1014 break;
1015 case 'image':
1016 $image_classes = array('model'); //TODO, use this more widely across the code
64f31c54 1017 if(!in_array($class, $image_classes)) $this->post_redirect_get("$class/$id/edit", "Nekdo nechce k DB Tride '$class' prirazovat obrazky!");
cdfce7c2 1018 $image_destination = DIR_IMAGES."/$class/$id.jpg";
326a9fc9 1019 if($_FILES['image']['name'] == '') $this->post_redirect_get("$class/$id/edit", 'Everything has to be called somehow!', true);
cdfce7c2 1020 if(move_uploaded_file($_FILES['image']['tmp_name'], $image_destination)) {
1f74892d 1021 chmod ($image_destination, 0664);
326a9fc9
TM
1022 $this->post_redirect_get("$class/$id", 'Image has been upbloated successfully :)');
1023 } else $this->post_redirect_get("$class/$id/edit", 'File upload failed :(', true);
cdfce7c2
TM
1024 break;
1025 default:
326a9fc9 1026 $this->post_redirect_get('', 'Nothin\' to do here my cutie :-*');
cdfce7c2
TM
1027 break;
1028 }
1029
1030 die('POSTed pyčo!');
1031 }
1032
1033 function process_http_request() {
1034 $this->check_auth();
1035
1036 @ini_set('magic_quotes_gpc' , 'off');
1037 if(get_magic_quotes_gpc()) {
1038 die(trigger_error("Error: magic_quotes_gpc needs to be disabled! F00K!"));
1039 }
1040
1041 $PATH_INFO=@trim($_SERVER[PATH_INFO]);
a5094502 1042 if($PATH_INFO == '' || $PATH_INFO == '/') $PATH_INFO = FRONTEND_PAGE_WELCOME;
cdfce7c2 1043 $PATH_CHUNKS = preg_split('/\//', $PATH_INFO);
81ab8aef 1044 //Sephirot:
cdfce7c2 1045 if(!isset($PATH_CHUNKS[1])) $PATH_CHUNKS[1]='';
88c38b26 1046 if($_SERVER['REQUEST_METHOD'] != 'POST' && $PATH_CHUNKS[1]!='barcode' && $PATH_CHUNKS[1]!='api') //TODO: tyhle podminky naznacujou, ze je v navrhu nejaka drobna nedomyslenost...
e9f6461f 1047 echo $this->html->header($PATH_INFO,$this->db->auth->get_user());
81ab8aef 1048 switch($PATH_CHUNKS[1]) { //TODO: Move some branches to plugins if possible
cdfce7c2
TM
1049 case 'test': //test
1050 die('Tell me why you cry');
1051 break;
88c38b26
TM
1052 case 'assistant': case 'api': //assistant|api
1053 $incdirs = array(
1054 'assistant' => DIR_ASSISTANTS,
1055 'api' => DIR_APIS
1056 );
de77377e
TM
1057 $PATH_CHUNKS[3] = isset($PATH_CHUNKS[3]) ? trim($PATH_CHUNKS[3]) : false;
1058 $assistant_vars['SUBPATH'] = array_slice($PATH_CHUNKS, 3);
1059 $assistant_vars['URL_INTERNAL'] = 'assistant/'.$PATH_CHUNKS[2];
1060 $assistant_vars['URL'] = $_SERVER['SCRIPT_NAME'].'/'.$assistant_vars['URL_INTERNAL'];
5ef6c52f 1061 $assistant_vars['ASSISTANT'] = $PATH_CHUNKS[2];
88c38b26 1062 echo $this->safe_include($incdirs[$PATH_CHUNKS[1]],$PATH_CHUNKS[2],$assistant_vars);
3e6c412e 1063 break;
81ab8aef
TM
1064 case 'barcode': //barcode
1065 Barcode::download_barcode(implode('/',array_slice($PATH_CHUNKS, 2)));
1066 break;
cdfce7c2
TM
1067 default: //?
1068 $search = (isset($_GET['q']) && trim($_GET['q']) != '') ? trim($_GET['q']) : false;
1069 $class = (isset($PATH_CHUNKS[1]) && $PATH_CHUNKS[1] != '') ? $PATH_CHUNKS[1] : 'item';
1070 if(!isset($PATH_CHUNKS[2])) $PATH_CHUNKS[2]='';
1071 switch($PATH_CHUNKS[2]) {
1072 case 'new': //?/new
1073 $this->process_http_request_post($PATH_CHUNKS[2], $class);
a25f85f8 1074 echo $this->render_form_add($class);
cdfce7c2
TM
1075 break;
1076 default: //?/?
1077 $id = (isset($PATH_CHUNKS[2]) && is_numeric($PATH_CHUNKS[2]) ? (int) $PATH_CHUNKS[2] : false);
1078 if(!isset($PATH_CHUNKS[3])) $PATH_CHUNKS[3]='';
1079 $edit=false;
1080 switch($PATH_CHUNKS[3]) {
1081 case 'edit': //?/?/edit
9fb856ba
TM
1082 case 'image': //?/?/image
1083 case 'delete': //?/?/delete
cdfce7c2
TM
1084 $this->process_http_request_post($PATH_CHUNKS[3], $class, $id);
1085 $edit=true;
1086 default: //?/?/?
9fb856ba 1087 $history = $PATH_CHUNKS[3] == 'history' ? true : false;
2415a365
TM
1088 $limit = is_numeric($PATH_CHUNKS[3]) ? (int) $PATH_CHUNKS[3] : FRONTEND_LISTING_LIMIT;
1089 $offset = isset($PATH_CHUNKS[4]) ? (int) $PATH_CHUNKS[4] : 0;
d9d47bd3 1090 $where = @is_array($_GET['where']) ? $_GET['where'] : false;
8f451ba7 1091 echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit, false);
cb8a6861 1092 echo $this->render_items($class, $id, $limit, $offset, $where, $search, $history);
a25f85f8 1093 echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit);
cdfce7c2
TM
1094 //print_r(array("<pre>",$_SERVER));
1095 break;
1096 }
1097 break;
1098 }
1099 break;
1100 }
1101 }
1102}
1103
1104$sklad = new Sklad_UI();
1105$sklad->process_http_request();
1106
54694117 1107echo('<br style="clear:both;" /><hr />');
This page took 1.34098 seconds and 4 git commands to generate.