X-Git-Url: https://git.harvie.cz/?a=blobdiff_plain;f=index.php;h=cee0e79a61c9bc3a0b9bd168e371c714cfb3c7e4;hb=1f74892d01741330f526551309a17b7245a75807;hp=15c19ec306b624495c72ef994cad98e67e29f5c8;hpb=371a86f428c19e978ce5381e2547cc9b03b65e40;p=mirrors%2FSokoMan.git diff --git a/index.php b/index.php index 15c19ec..cee0e79 100755 --- a/index.php +++ b/index.php @@ -33,7 +33,8 @@ class Sklad_HTML { function header($title='') { $home = URL_HOME; $script = $_SERVER['SCRIPT_NAME']; - $search = @trim($_GET['q']); + $search = htmlspecialchars(@trim($_GET['q'])); + $message = htmlspecialchars(@trim($_GET['message'])); return << @@ -53,6 +54,9 @@ class Sklad_HTML { +
+ $message +
EOF; } @@ -80,8 +84,12 @@ EOF; return $html; } + function internal_url($link) { + return $_SERVER['SCRIPT_NAME'].'/'.$link; + } + function link($title='n/a', $link='#void', $internal=true) { - if($internal) $link = $_SERVER['SCRIPT_NAME'].'/'.$link; + if($internal) $link = $this->internal_url($link); return "$title"; } @@ -181,7 +189,7 @@ EOF; //$html.=$this->input('table', $class, 'hidden'); foreach($columns as $column) { $html.=$class.':'.$column['Field'].': '; - $name='value;'.$class.';'.$column['Field'].'[]'; + $name="values[$class][".$column['Field'].'][]'; $val = $update ? $current[$column['Field']] : false; switch(true) { case preg_match('/auto_increment/', $column['Extra']): @@ -438,17 +446,17 @@ class Sklad_UI { new HTTP_Auth('SkladovejSystem', true, array($this->db->lms,'check_auth')); } - function post_redirect_get($last, $next) { //TODO prepracovat, tohle je uplna picovina... - //header('Location: '.$_SERVER['REQUEST_URI']); //TODO redirect (need templating system or ob_start() first!!!) - echo 'Hotovo. Poslední vložený záznam naleznete '.$this->html->link('zde', $last).'.
'. - 'Další záznam přidáte '.$this->html->link('zde', $next).'.'; - die(); + function post_redirect_get($location, $message='') { + $location = $this->html->internal_url($location).'?message='.urlencode($message); + header('Location: '.$location); + die("Location: $location"); } - function safe_include($dir,$name,$ext='.inc.php') { + function safe_include($dir,$name,$vars=array(),$ext='.inc.php') { if(preg_match('/[^a-zA-Z0-9-]/',$name)) die(trigger_error('SAFE INCLUDE: Securityfuck.')); $filename="$dir/$name$ext"; if(!is_file($filename)) die(trigger_error('SAFE INCLUDE: Fuckfound.')); + foreach($vars as $var => $val) $$var=$val; ob_start(); include($filename); $out=ob_get_contents(); @@ -458,29 +466,24 @@ class Sklad_UI { function process_http_request_post($action=false, $class=false, $id=false) { if($_SERVER['REQUEST_METHOD'] != 'POST') return; - echo('
'); //DEBUG (maybe todo remove)
+		//echo('
'); //DEBUG (maybe todo remove), HEADERS ALREADY SENT!!!!
 
 		//SephirPOST:
 
 		/* Tenhle foreach() prekopiruje promenne
-		 * z:		$_POST['value;$table;$column'][$id];
+		 * z:		$_POST['values'][$table][$column][$id];
 		 * do:	$values[$table][$id][$column]
 		 */
-
-		$values=array();
-		foreach($_POST as $key => $value) {
-			$name = preg_split('/;/',$key);
-			if(isset($name[0])) switch($name[0]) {
-				case 'value':
-					foreach($value as $id => $val) $values[$name[1]][$id][$name[2]]=$value[$id];
-					break;
-				default:
-					break;
+		if(isset($_POST['values'])) {
+			$values=array();
+			foreach($_POST['values'] as $table => $columns) {
+				foreach($columns as $column => $ids) {
+					foreach($ids as $id => $val) $values[$table][$id][$column] = $val;
+				}
 			}
+			//die(print_r($values));
 		}
 
-		//die(print_r($values));
-
 		if($action) switch($action) {
 			case 'new':
 			case 'edit':
@@ -489,12 +492,16 @@ class Sklad_UI {
 				$table='item';
 				//print_r($values); //debug
 				$last = $this->db->insert_or_update_multitab($values);
-				$this->post_redirect_get("$table/$last/", "$table/new/");
+				$last = "$table/$last/";
+				$next = "$table/new/";
+				echo 'Hotovo. Poslední vložený záznam naleznete '.$this->html->link('zde', $last).'.
'. + 'Další záznam přidáte '.$this->html->link('zde', $next).'.'; + die(); break; case 'delete': if(!isset($_POST['sure']) || !$_POST['sure']) die(trigger_error('Sure user expected :-)')); - //$this->db->delete($class, $id); - die('Neco asi bylo smazano. Fnuk :\'-('); //TODO REDIRECT + $this->db->delete($class, $id); + $this->post_redirect_get("$class", "Neco (pravdepodobne /$class/$id) bylo asi smazano. Fnuk :'-("); break; case 'image': $image_classes = array('model'); //TODO, use this more widely across the code @@ -502,9 +509,9 @@ class Sklad_UI { $image_destination = DIR_IMAGES."/$class/$id.jpg"; if($_FILES['image']['name'] == '') die(trigger_error('Kazde neco se musi nejak jmenovat!')); if(move_uploaded_file($_FILES['image']['tmp_name'], $image_destination)) { - chmod ($image_destination, 0664); - die('Obrazek se naladoval :)'); //TODO REDIRECT - } else die(trigger_error('Soubor se nenahral :(')); + chmod ($image_destination, 0664); + $this->post_redirect_get("$class/$id", 'Obrazek se naladoval :)'); + } else die(trigger_error('Soubor se nenahral :(')); break; default: trigger_error('Nothin\' to do here my cutie :-*'); @@ -523,7 +530,7 @@ class Sklad_UI { } $PATH_INFO=@trim($_SERVER[PATH_INFO]); - echo $this->html->header($PATH_INFO); + if($_SERVER['REQUEST_METHOD'] != 'POST') echo $this->html->header($PATH_INFO); //Sephirot: @@ -534,7 +541,8 @@ class Sklad_UI { die('Tell me why you cry'); break; case 'assistant': //assistant - echo $this->safe_include(DIR_ASSISTANTS,$PATH_CHUNKS[2]); + $assistant_vars['step'] = isset($PATH_CHUNKS[3]) && is_numeric($PATH_CHUNKS[3]) ? trim($PATH_CHUNKS[3]) : false; + echo $this->safe_include(DIR_ASSISTANTS,$PATH_CHUNKS[2],$assistant_vars); break; default: //? $search = (isset($_GET['q']) && trim($_GET['q']) != '') ? trim($_GET['q']) : false;