3 * SkladovySystem - Storage management system compatible with LMS
4 * Copyright (C) 2011 Tomas Mudrunka
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.
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.
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/>.
20 require_once('sklad.conf.php');
21 require_once('Sklad_LMS-fake.class.php');
22 require_once('HTTP_Auth.class.php');
25 * Trida poskytuje vseobecne funkce pro generovani HTML kodu
27 * Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)!
30 * @author Tomas Mudrunka
35 foreach($row as $var) {
36 if(trim($var) == '') $var = ' ';
37 $html.="<td>$var</td>";
43 function table(&$table, $params='border=1') {
44 $html="<table $params>";
46 foreach($table as $row) {
48 $html.=$this->row(array_keys($row));
51 $html.=$this->row($row);
57 function link($title='n/a', $link='#void', $internal=true) {
58 if($internal) $link = $this->internal_url($link);
59 return "<a href='$link'>$title</a>";
62 function img($src='#void', $title='img') {
63 return "<img src='$src' alt='$title' title='$title' width=64 />";
66 function input($name=false, $value=false, $type='text', $placeholder=false, $options=false) {
67 $html = "<input type='$type' ";
68 if($name) $html.= "name='$name' ";
69 if(!is_bool($value)) $html.= "value='$value' ";
70 if($options) $html.= "$options ";
71 if($placeholder) $html.= "placeholder='$placeholder' ";
76 function select($name, $selectbox, $default=false) {
77 //echo('<pre>'); print_r($selectbox);
78 $html = "<select name='$name'>";
81 $value=$default; $title=$selectbox[$value];
82 $html .= "<option value='$value'>$value :: $title</option>";
83 unset($selectbox[$value]);
85 foreach($selectbox as $value => $title) {
86 $html .= "<option value='$value'>$value :: $title</option>";
94 * Trida poskytuje podpurne funkce pro generovani HTML kodu specificke pro sklad
96 * Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)!
99 * @author Tomas Mudrunka
101 class Sklad_HTML
extends HTML
{
102 function header($title='') {
104 $script = $_SERVER['SCRIPT_NAME'];
105 $search = htmlspecialchars(@trim
($_GET['q']));
106 $message = strip_tags(@trim
($_GET['message']),'<a><b><u><i>');
109 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
111 <h1><a href="$script/">SystémSklad</a><small>$title</small></h1>
113 <style type="text/css">
114 .menu li, .menu * li {
121 background-color: yellow;
124 .menu, .menu * menu {
133 .menu li:hover menu {
140 <li><a href="?logout">Logout</a></li>
141 <li><a href="$script/">Home</a></li>
142 <li><a href="#">Assistants</A>
144 <li><a href="$script/assistant/new-item">new-item</a></li>
147 <li><a href="#">List</a>
149 <li><a href="$script/item">item</a></li>
150 <li><a href="$script/model">model</a></li>
151 <li><a href="$script/category">category</a></li>
152 <li><a href="$script/producer">producer</a></li>
153 <li><a href="$script/vendor">vendor</a></li>
154 <li><a href="$script/room">room</a></li>
155 <li><a href="$script/status">status</a></li>
158 <li><a href="#">New</a>
160 <li><a href="$script/item/new">item</a></li>
161 <li><a href="$script/model/new">model</a></li>
162 <li><a href="$script/category/new">category</a></li>
163 <li><a href="$script/producer/new">producer</a></li>
164 <li><a href="$script/vendor/new">vendor</a></li>
165 <li><a href="$script/room/new">room</a></li>
166 <li><a href="$script/status/new">status</a></li>
171 <div style="float: right;">
172 <form action="?" method="GET">
173 <input type="text" name="q" placeholder="regexp..." value="$search" />
174 <input type="submit" value="filter" />
176 <!-- form action="$script/" method="GET">
177 <input type="text" name="q" placeholder="regexp..." value="$search" />
178 <input type="submit" value="search items" />
182 <hr style="clear: both;" />
183 <div style="background-color:#FFDDDD;">
184 <font color="red">$message</font>
189 function internal_url($link) {
190 return $_SERVER['SCRIPT_NAME'].'/'.$link;
193 function table_add_images(&$table) {
194 $image = array('model_id');
195 foreach($table as $id => $row) {
196 foreach($image as $column) if(isset($table[$id][$column])) {
197 $type = @array_shift
(preg_split('/_/', $column));
198 $src=URL_IMAGES
."/$type/".$table[$id][$column].'.jpg';
199 $table[$id][$type.'_image']=$this->img($src, $table[$id][$column]);
204 function table_collapse(&$table) {
206 'item_id' => 'item_id',
207 'model_id' => 'model_name',
208 'category_id' => 'category_name',
209 'producer_id' => 'producer_name',
210 'vendor_id' => 'vendor_name',
211 'room_id' => 'room_name',
212 'status_id' => 'status_name',
214 foreach($table as $id => $row) {
215 foreach($collapse as $link => $title)
216 if(isset($table[$id][$link])) {
217 $type = @array_shift
(preg_split('/_/', $link));
218 if($link != $title) unset($table[$id][$link]);
219 $table[$id][$title]=$this->link($row[$title], $type.'/'.$row[$link].'/');
224 function table_sort(&$table) {
225 $precedence = array('item_id', 'model_image', 'model_name','model_descript','category_name','status_name','room_name');
226 $table_sorted = array();
227 foreach($table as $id => $row) {
228 $table_sorted[$id] = array();
229 foreach($precedence as $column) if(isset($table[$id][$column])) {
230 $table_sorted[$id][$column]=$table[$id][$column];
231 unset($table[$id][$column]);
233 $table_sorted[$id]=array_merge($table_sorted[$id],$table[$id]);
235 $table = $table_sorted;
238 function render_item_table($table) {
239 $this->table_add_images($table);
240 $this->table_collapse($table);
241 $this->table_sort($table);
242 return $this->table($table);
245 function render_insert_form($class, $columns, $selectbox=array(), $current=false, $hidecols=false, $multi_insert=true) {
246 //echo('<pre>'); print_r($selectbox);
247 //echo('<pre>'); print_r($current);
249 if(is_array($current)) {
251 $current = array_shift($current);
254 if(!is_array($hidecols)) $hidecols = array('item_author', 'item_valid_from', 'item_valid_till'); //TODO Autodetect
256 $html='<form method="POST">';
257 if($multi_insert) $html.='<div name="input_set" style="float:left; border:1px solid grey;">';
258 //$html.=$this->input('table', $class, 'hidden');
259 foreach($columns as $column) {
260 $html.=$class.':<b>'.$column['Field'].'</b>: ';
261 $name="values[$class][".$column['Field'].'][]';
262 $val = $update ?
$current[$column['Field']] : false;
264 case (preg_match('/auto_increment/', $column['Extra']) ||
in_array($column['Field'], $hidecols)):
266 $html.=$this->input($name, $val, 'hidden');
267 $html.=$val.'(AUTO)';
269 case isset($selectbox[$column['Field']]):
270 $html.=$this->select($name,$selectbox[$column['Field']],$val);
273 $html.=$this->input($name, $val);
280 //TODO, move to separate JS file
283 <span name="input_set_next"></span><br style="clear:both" />
285 function duplicate_element(what, where) {
286 document.getElementsByName(where)[0].outerHTML =
287 document.getElementsByName(what)[0].outerHTML
288 + document.getElementsByName(where)[0].outerHTML;
291 <a href='#' onClick="duplicate_element('input_set', 'input_set_next')">+</a>
295 $btn = is_array($current) ?
'UPDATE' : 'INSERT';
296 $html.=$this->input(false, $btn, 'submit');
303 * Trida poskytuje rozhrani k databazi skladu
306 * @author Tomas Mudrunka
308 class Sklad_DB
extends PDO
{
309 function __construct() {
310 $this->lms
= new Sklad_LMS();
313 DB_DSN
, DB_USER
, DB_PASS
,
314 array(PDO
::MYSQL_ATTR_INIT_COMMAND
=> "SET NAMES utf8") //Force UTF8 for MySQL
318 function escape($str) {
319 return preg_replace('(^.|.$)', '', $this->quote($str)); //TODO HACK
322 function build_query_select($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false, $order=false, $suffix_id='_id') {
325 'item' => array('model', 'category', 'producer', 'vendor', 'room', 'status'),
326 'model' => array('category', 'producer')
327 ); //TODO Autodetect using foreign keys?
328 $search_fields = array(
329 'item' => array('item_id','model_name','model_barcode','model_descript','producer_name','vendor_name')
333 $class = $this->escape($class);
336 $sql="SELECT * FROM $class\n";
338 if(isset($join[$class])) foreach($join[$class] as $j) $sql .= "LEFT JOIN $j USING($j$suffix_id)\n";
341 $search = $this->quote($search);
342 if(!isset($search_fields[$class])) $this->post_redirect_get($class, "Ve tride $class zatim vyhledavat nemozno :-(");
344 foreach($search_fields[$class] as $column) $search .= "OR $column REGEXP $search ";
345 $where[] = "FALSE $search";
346 } elseif($id) $where[] = "$class$suffix_id = $id";
347 if(!$history && $this->contains_history($class)) $where[] = $class.'_valid_till=0';
349 if($where) $sql .= 'WHERE '.implode(' AND ', $where)."\n";
351 if(!$order) $order = $class.$suffix_id;
352 if($this->contains_history($class)) $order .= ",${class}_valid_from DESC";
353 $sql .= "ORDER BY $order\n";
356 $limit = $this->escape((int)$limit);
357 $offset = $this->escape((int)$offset);
358 $sql .= "LIMIT $offset,$limit\n";
364 function safe_query($sql, $fatal=true) {
365 $result = $this->query($sql);
367 $error = $this->errorInfo();
368 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>");
374 function get_listing($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false, $indexed=array(), $suffix_id='_id') {
375 $sql = $this->build_query_select($class, $id, $limit, $offset, $where, $search, $history);
376 $result = $this->safe_query($sql)->fetchAll(PDO
::FETCH_ASSOC
);
377 if(!$result ||
!is_array($indexed)) return $result;
379 foreach($result as $key => $row) $indexed[$row[$class.$suffix_id]]=$row;
383 function get_columns($class) {
384 $class = $this->escape($class);
385 $sql = "SHOW COLUMNS FROM $class;";
386 return $this->safe_query($sql)->fetchAll(PDO
::FETCH_ASSOC
);
389 function columns_get_selectbox($columns, $class=false, $suffix_id='_id', $suffix_name='_name') {
391 foreach($columns as $column) {
392 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)!
393 if($class && $column['Field'] == $class.$suffix_id) continue;
394 if(!preg_match('/'.$suffix_id.'$/', $column['Field'])) continue;
395 $table=preg_replace('/'.$suffix_id.'$/','',$column['Field']);
397 $history = $this->contains_history($table) ?
" WHERE ${table}_valid_till=0" : '';
398 $sql = "SELECT $table$suffix_id, $table$suffix_name FROM $table$history;";
399 $result = $this->safe_query($sql, false);
400 if(!$result) continue;
401 $result = $result->fetchAll(PDO
::FETCH_ASSOC
);
402 foreach($result as $row) $selectbox[$table.$suffix_id][$row[$table.$suffix_id]]=$row[$table.$suffix_name];
404 //echo('<pre>'); print_r($selectbox);
405 return array_filter($selectbox, 'ksort');
408 function contains_history($table) {
409 $history_tables = array('item'); //TODO Autodetect
410 return in_array($table, $history_tables);
413 function build_query_insert($table, $values, $replace=true, $suffix_id='_id') {
415 $history = $this->contains_history($table);
418 $table = $this->escape($table);
420 //Get list of POSTed columns
421 $columns_array = array_map(array($this,'escape'), array_keys($values[0]));
422 $columns = implode(',',$columns_array);
426 //echo('<pre>'); die(print_r($values));
429 $history_update=false; foreach($values as $row) if(is_numeric($row[$table.'_id'])) $history_update=true;
430 if($history_update) {
431 $sql .= "UPDATE $table";
432 $sql .= " SET ${table}_valid_till=NOW()";
433 $sql .= " WHERE ${table}_valid_till=0 AND (";
435 foreach($values as $row) {
436 $sql .= $or.' '.$table.'_id='.$row[$table.'_id'];
444 //Insert into table (columns)
445 $sql .= "INSERT INTO $table ($columns) VALUES ";
447 //Values (a,b,c),(d,e,f)
449 foreach($values as $row) {
450 $row_quoted = array_map(array($this,'quote'), $row); //Check
452 foreach($row as $column => $value) {
454 case $table.'_valid_from':
455 $row_quoted[$column] = 'NOW()';
457 case $table.'_valid_till':
458 $row_quoted[$column] = '0';
460 case $table.'_author':
461 $row_quoted[$column] = $this->lms
->get_authorized_user_id();
462 //die($this->lms->get_authorized_user_id().'=USER');
467 $sql .= $comma.'('.implode(',',$row_quoted).')';
473 foreach($columns_array as $col) {
474 if($col == $table.'_id' ||
$col == $table.'_valid_till') continue;
475 $on_duplicate[] = "$col=VALUES($col)";
477 $sql .= "\nON DUPLICATE KEY UPDATE ".implode(',', $on_duplicate);
485 function insert_or_update($table, $values) {
486 $sql = $this->build_query_insert($table, $values);
487 $this->safe_query($sql);
488 return $this->lastInsertId();
491 function insert_or_update_multitab($values) {
493 foreach($values as $table => $rows) $last = $this->insert_or_update($table, $rows);
497 function delete($table, $id, $suffix_id='_id') {
498 if($this->contains_history($table)) return false;
499 $key = $this->escape($table.$suffix_id);
500 $table = $this->escape($table);
501 $id = $this->quote($id);
502 return $this->safe_query("DELETE FROM $table WHERE $key = $id LIMIT 1;");
507 * Trida poskytuje high-level rozhrani k databazi skladu
509 * @package Sklad_DB_Abstract
510 * @author Tomas Mudrunka
512 class Sklad_DB_Abstract
extends Sklad_DB
{
517 * Trida implementuje uzivatelske rozhrani skladu
520 * $sklad = new Sklad_UI();
521 * $sklad->process_http_request();
524 * @author Tomas Mudrunka
527 function __construct() {
528 $this->db
= new Sklad_DB();
529 $this->html
= new Sklad_HTML();
532 function render_items($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false) {
533 return $this->html
->render_item_table($this->db
->get_listing($class, $id, $limit, $offset, $where, $search, $history, false));
536 function render_form_add($class) {
537 $columns = $this->db
->get_columns($class);
538 $selectbox = $this->db
->columns_get_selectbox($columns, $class);
539 return $this->html
->render_insert_form($class, $columns, $selectbox);
542 function render_form_edit($class, $id) {
543 $columns = $this->db
->get_columns($class);
544 $selectbox = $this->db
->columns_get_selectbox($columns, $class);
545 $current = $this->db
->get_listing($class, $id, 1);
546 return $this->html
->render_insert_form($class, $columns, $selectbox, $current);
549 function render_single_record_details($class, $id) {
551 $id_prev = $id - 1 > 0 ?
$id - 1 : 0;
552 $get = $_SERVER['QUERY_STRING'] != '' ?
'?'.$_SERVER['QUERY_STRING'] : '';
554 $html.= $this->html
->link('<<', "$class/$id_prev/");
556 $html.= $this->html
->link('>>', "$class/$id_next/");
558 $html.= $this->html
->link('edit', "$class/$id/edit/");
559 if($this->db
->contains_history($class)) $html.= ' ][ '.$this->html
->link('history', "$class/$id/history/");
563 function render_listing_navigation($class, $id, $limit, $offset) {
564 $offset_next = $offset +
$limit;
565 $offset_prev = $offset - $limit > 0 ?
$offset - $limit : 0;
566 $get = $_SERVER['QUERY_STRING'] != '' ?
'?'.$_SERVER['QUERY_STRING'] : '';
568 $html.= $this->html
->link('<<', "$class/$id/$limit/$offset_prev/$get");
570 $html.= $this->html
->link('>>', "$class/$id/$limit/$offset_next/$get");
572 $html.= $this->html
->link('new', "$class/new/$get");
576 function render_listing_extensions($class, $id, $limit, $offset, $edit=false) {
578 if(is_numeric($id)) {
579 $html.=$this->render_single_record_details($class, $id);
581 $html.=$this->render_listing_navigation($class, '*', $limit, $offset);
584 $html.= $this->render_form_edit($class, $id);
585 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/delete";
586 $html.= "<form action='$action' method='POST'>";
587 $html.= $this->html
->input(false, 'DELETE', 'submit');
588 $html.= 'sure?'.$this->html
->input('sure', false, 'checkbox');
590 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/image";
591 $html.= "<form action='$action' method='POST' enctype='multipart/form-data'>";
592 $html.= $this->html
->input('image', false, 'file', false, 'size="30"');
593 $html.= $this->html
->input(false, 'IMAGE', 'submit');
599 function check_auth() {
600 new HTTP_Auth('SkladovejSystem', true, array($this->db
->lms
,'check_auth'));
603 function post_redirect_get($location, $message='', $error=false) {
604 $location = $this->html
->internal_url($location).'?message='.urlencode($message);
605 header('Location: '.$location);
606 if($error) trigger_error($message);
607 die("Location: <a href='$location'>$location</a>");
610 function safe_include($dir,$name,$vars=array(),$ext='.inc.php') {
611 if(preg_match('/[^a-zA-Z0-9-]/',$name)) $this->post_redirect_get('', 'SAFE INCLUDE: Securityfuck.', true);
612 $filename="$dir/$name$ext";
613 if(!is_file($filename)) $this->post_redirect_get('', 'SAFE INCLUDE: Fuckfound.', true);
614 foreach($vars as $var => $val) $
$var=$val;
617 $out=ob_get_contents();
622 function process_http_request_post($action=false, $class=false, $id=false) {
623 if($_SERVER['REQUEST_METHOD'] != 'POST') return;
624 //echo('<pre>'); //DEBUG (maybe todo remove), HEADERS ALREADY SENT!!!!
628 /* Tenhle foreach() prekopiruje promenne
629 * z: $_POST['values'][$table][$column][$id];
630 * do: $values[$table][$id][$column]
632 if(isset($_POST['values'])) {
634 foreach($_POST['values'] as $table => $columns) {
635 foreach($columns as $column => $ids) {
636 foreach($ids as $id => $val) $values[$table][$id][$column] = $val;
639 //die(print_r($values));
642 if($action) switch($action) {
645 $table = $class ?
$class : 'item';
646 //print_r($values); //debug
647 $last = $this->db
->insert_or_update_multitab($values);
648 $last = "$table/$last/";
649 $next = "$table/new/";
650 $this->post_redirect_get($last, 'Hotovo. Další záznam přidáte '.$this->html
->link('zde', $next).'.');
653 if(!isset($_POST['sure']) ||
!$_POST['sure']) $this->post_redirect_get("$class/$id/edit", 'Sure user expected :-)');
654 $this->db
->delete($class, $id) ||
$this->post_redirect_get("$class/$id/edit", "V tabulce $class jentak neco mazat nebudes chlapecku :-P");
655 $this->post_redirect_get("$class", "Neco (pravdepodobne /$class/$id) bylo asi smazano. Fnuk :'-(");
658 $image_classes = array('model'); //TODO, use this more widely across the code
659 if(!in_array($class, $image_classes)) $this->post_redirect_get("$class/$id/edit", "Nekdo nechce k DB Tride '$class' prirazovat obrazky!");
660 $image_destination = DIR_IMAGES
."/$class/$id.jpg";
661 if($_FILES['image']['name'] == '') $this->post_redirect_get("$class/$id/edit", 'Kazde neco se musi nejak jmenovat!', true);
662 if(move_uploaded_file($_FILES['image']['tmp_name'], $image_destination)) {
663 chmod ($image_destination, 0664);
664 $this->post_redirect_get("$class/$id", 'Obrazek se naladoval :)');
665 } else $this->post_redirect_get("$class/$id/edit", 'Soubor se nenahral :(', true);
668 trigger_error('Nothin\' to do here my cutie :-*');
675 function process_http_request() {
678 @ini_set
('magic_quotes_gpc' , 'off');
679 if(get_magic_quotes_gpc()) {
680 die(trigger_error("Error: magic_quotes_gpc needs to be disabled! F00K!"));
683 $PATH_INFO=@trim
($_SERVER[PATH_INFO
]);
684 if($_SERVER['REQUEST_METHOD'] != 'POST') echo $this->html
->header($PATH_INFO); //TODO tahle podminka naznacuje ze je v navrhu nejaka drobna nedomyslenost...
688 $PATH_CHUNKS = preg_split('/\//', $PATH_INFO);
689 if(!isset($PATH_CHUNKS[1])) $PATH_CHUNKS[1]='';
690 switch($PATH_CHUNKS[1]) {
692 die('Tell me why you cry');
694 case 'assistant': //assistant
695 $assistant_vars['step'] = isset($PATH_CHUNKS[3]) && is_numeric($PATH_CHUNKS[3]) ?
trim($PATH_CHUNKS[3]) : false;
696 echo $this->safe_include(DIR_ASSISTANTS
,$PATH_CHUNKS[2],$assistant_vars);
699 $search = (isset($_GET['q']) && trim($_GET['q']) != '') ?
trim($_GET['q']) : false;
700 $class = (isset($PATH_CHUNKS[1]) && $PATH_CHUNKS[1] != '') ?
$PATH_CHUNKS[1] : 'item';
701 if(!isset($PATH_CHUNKS[2])) $PATH_CHUNKS[2]='';
702 switch($PATH_CHUNKS[2]) {
704 $this->process_http_request_post($PATH_CHUNKS[2], $class);
705 echo $this->render_form_add($class);
708 $id = (isset($PATH_CHUNKS[2]) && is_numeric($PATH_CHUNKS[2]) ?
(int) $PATH_CHUNKS[2] : false);
709 if(!isset($PATH_CHUNKS[3])) $PATH_CHUNKS[3]='';
711 switch($PATH_CHUNKS[3]) {
712 case 'edit': //?/?/edit
713 case 'image': //?/?/image
714 case 'delete': //?/?/delete
715 $this->process_http_request_post($PATH_CHUNKS[3], $class, $id);
718 $history = $PATH_CHUNKS[3] == 'history' ?
true : false;
719 $limit = (int) (isset($PATH_CHUNKS[3]) ?
$PATH_CHUNKS[3] : '0');
720 $offset = (int) (isset($PATH_CHUNKS[4]) ?
$PATH_CHUNKS[4] : '0');
721 $where = false; //TODO get from URL
722 echo $this->render_items($class, $id, $limit, $offset, $where, $search, $history);
723 echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit);
724 //print_r(array("<pre>",$_SERVER));
734 $sklad = new Sklad_UI();
735 $sklad->process_http_request();
This page took 0.984149 seconds and 5 git commands to generate.