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