2018-12-28 19:05:34 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Created by PhpStorm.
|
|
|
|
* User: jedi
|
|
|
|
* Date: 12/28/18
|
|
|
|
* Time: 6:13 PM
|
2018-12-29 19:17:54 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
include "backend.php";
|
|
|
|
|
|
|
|
function hasval($var){
|
|
|
|
return isset($var) && !empty($var);
|
|
|
|
}
|
|
|
|
|
2019-02-21 23:10:56 +00:00
|
|
|
$successmsg = "added one item";
|
|
|
|
|
2018-12-29 19:17:54 +00:00
|
|
|
switch($_GET["action"]) {
|
|
|
|
case "add_featurerequest":
|
|
|
|
if (hasval($_POST["title"]) && hasval($_POST["desc"])) {
|
|
|
|
/* Prepared statement, stage 1: prepare */
|
2018-12-30 11:50:42 +00:00
|
|
|
if (!($stmt = $mysqli->prepare("INSERT INTO feature_request(title, `desc`) VALUES (?, ?)"))) {
|
|
|
|
$errormsg = "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
|
|
|
|
}else
|
|
|
|
if (!$stmt->bind_param("ss", $_POST["title"], $_POST["desc"])) {
|
|
|
|
$errormsg = "Binding parameters failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}else
|
|
|
|
if (!$stmt->execute()) {
|
|
|
|
$errormsg = "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
$errormsg = "all values have to be set";
|
|
|
|
}
|
|
|
|
break;
|
2018-12-30 12:26:45 +00:00
|
|
|
case "add_found":
|
2018-12-30 11:50:42 +00:00
|
|
|
if (hasval($_POST["was"]) && hasval($_POST["wann"]) && hasval($_POST["wo"])) {
|
|
|
|
/* Prepared statement, stage 1: prepare */
|
2019-02-21 23:02:28 +00:00
|
|
|
if (!($stmt = $mysqli->prepare("INSERT INTO found_items(was, wann, wo) VALUES (?, ?, ?)"))) {
|
2018-12-30 11:50:42 +00:00
|
|
|
$errormsg = "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
|
2018-12-29 19:17:54 +00:00
|
|
|
}
|
|
|
|
if (!$stmt->bind_param("sss", $_POST["was"], $_POST["wann"], $_POST["wo"])) {
|
2018-12-30 11:50:42 +00:00
|
|
|
$errormsg = "Binding parameters failed: (" . $stmt->errno . ") " . $stmt->error;
|
2018-12-29 19:17:54 +00:00
|
|
|
}
|
|
|
|
if (!$stmt->execute()) {
|
2018-12-30 11:50:42 +00:00
|
|
|
$errormsg = "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
|
2018-12-29 19:17:54 +00:00
|
|
|
}
|
2018-12-30 11:50:42 +00:00
|
|
|
}else{
|
|
|
|
$errormsg = "all values have to be set";
|
2018-12-29 19:17:54 +00:00
|
|
|
}
|
2018-12-30 11:50:42 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
case "add_lost":
|
|
|
|
if (hasval($_POST["was"]) && hasval($_POST["wann"]) && hasval($_POST["wo"]) && hasval($_POST["contact"])) {
|
|
|
|
/* Prepared statement, stage 1: prepare */
|
2019-02-21 23:02:28 +00:00
|
|
|
if (!($stmt = $mysqli->prepare("INSERT INTO lost_items(was, wann, wo, contact) VALUES (?, ?, ?, ?)"))) {
|
2018-12-30 11:50:42 +00:00
|
|
|
$errormsg = "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->bind_param("ssss", $_POST["was"], $_POST["wann"], $_POST["wo"], $_POST["contact"])) {
|
|
|
|
$errormsg = "Binding parameters failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->execute()) {
|
|
|
|
$errormsg = "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
$errormsg = "all values have to be set";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "get_stats";
|
|
|
|
echo json_encode(array("status"=>"ok","stats"=>get_stats()));
|
|
|
|
break;
|
2019-02-21 23:10:56 +00:00
|
|
|
case "delete_found_item":
|
|
|
|
if(hasval($_POST["id"])) {
|
|
|
|
/* Prepared statement, stage 1: prepare */
|
|
|
|
if (!($stmt = $mysqli->prepare("UPDATE found_items SET del = 1 WHERE id = ?"))) {
|
|
|
|
$errormsg = "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->bind_param("i", $_POST["id"])) {
|
|
|
|
$errormsg = "Binding parameters failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->execute()) {
|
|
|
|
$errormsg = "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
$successmsg = "one item deleted";
|
|
|
|
}else{
|
|
|
|
$errormsg = "id not set";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "delete_lost_item":
|
|
|
|
if(hasval($_POST["id"])) {
|
|
|
|
/* Prepared statement, stage 1: prepare */
|
|
|
|
if (!($stmt = $mysqli->prepare("UPDATE lost_items SET del = 1 WHERE id = ?"))) {
|
|
|
|
$errormsg = "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->bind_param("i", $_POST["id"])) {
|
|
|
|
$errormsg = "Binding parameters failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->execute()) {
|
|
|
|
$errormsg = "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
$successmsg = "one item deleted";
|
2019-02-22 12:26:57 +00:00
|
|
|
}else{
|
|
|
|
$errormsg = "id not set";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "edit_found_item":
|
|
|
|
if(hasval($_POST["id"]) && hasval($_POST["was"]) && hasval($_POST["wann"])) {
|
|
|
|
/* Prepared statement, stage 1: prepare */
|
|
|
|
$was=$_POST["was"];
|
|
|
|
if (!($stmt = $mysqli->prepare("UPDATE found_items SET was=?, wo=?, `date`=? WHERE id = ?"))) {
|
|
|
|
$errormsg = "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->bind_param("sssi", $_POST["was"] , $_POST["wo"], $_POST["wann"], $_POST["id"])) {
|
|
|
|
$errormsg = "Binding parameters failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->execute()) {
|
|
|
|
$errormsg = "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isset($_FILES["image"])){
|
|
|
|
if(!file_exists ( "upload/")){
|
|
|
|
mkdir("upload/");
|
|
|
|
}
|
|
|
|
|
|
|
|
$hash = md5($_FILES['image']['name'].time());
|
|
|
|
if(move_uploaded_file($_FILES['image']['tmp_name'], "upload/".$hash)){
|
|
|
|
if (!($stmt = $mysqli->prepare("INSERT INTO files(hash, item_id) VALUES (?, ?)"))) {
|
|
|
|
$errormsg = "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->bind_param("si", $hash, $_POST["id"])) {
|
|
|
|
$errormsg = "Binding parameters failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->execute()) {
|
|
|
|
$errormsg = "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
$successmsg = "one item edited";
|
|
|
|
}else{
|
|
|
|
$errormsg = "upload failed";
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
$errormsg = "upload failed";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-21 23:10:56 +00:00
|
|
|
}else{
|
|
|
|
$errormsg = "id not set";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "add_found_item":
|
|
|
|
if (hasval($_POST["was"])) {
|
|
|
|
/* Prepared statement, stage 1: prepare */
|
|
|
|
if (!($stmt = $mysqli->prepare("INSERT INTO found_items(was) VALUES (?)"))) {
|
|
|
|
$errormsg = "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->bind_param("s", $_POST["was"])) {
|
|
|
|
$errormsg = "Binding parameters failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->execute()) {
|
|
|
|
$errormsg = "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
$item_id = $mysqli->insert_id;
|
|
|
|
|
|
|
|
if(isset($_FILES["image"])){
|
|
|
|
if(!file_exists ( "upload/")){
|
|
|
|
mkdir("upload/");
|
|
|
|
}
|
|
|
|
|
|
|
|
$hash = md5($_FILES['image']['name'].time());
|
|
|
|
if(move_uploaded_file($_FILES['image']['tmp_name'], "upload/".$hash)){
|
|
|
|
if (!($stmt = $mysqli->prepare("INSERT INTO files(hash, item_id) VALUES (?, ?)"))) {
|
|
|
|
$errormsg = "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->bind_param("si", $hash, $item_id)) {
|
|
|
|
$errormsg = "Binding parameters failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
if (!$stmt->execute()) {
|
|
|
|
$errormsg = "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
|
|
|
|
}
|
|
|
|
$successmsg = "upload ok";
|
|
|
|
}else{
|
|
|
|
$errormsg = "upload failed";
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
$errormsg = "upload failed";
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
$errormsg = "all values have to be set";
|
|
|
|
}
|
|
|
|
break;
|
2018-12-30 11:50:42 +00:00
|
|
|
default:
|
|
|
|
$errormsg = "action unknown";
|
2018-12-29 19:17:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-12-30 11:50:42 +00:00
|
|
|
if(empty($errormsg))
|
2019-02-21 23:10:56 +00:00
|
|
|
echo json_encode(array("get"=>$_GET,"post"=>$_POST,"files"=>$_FILES,"status"=>"ok","message"=>$successmsg));
|
2018-12-30 11:50:42 +00:00
|
|
|
else
|
2019-02-21 23:10:56 +00:00
|
|
|
echo json_encode(array("get"=>$_GET,"post"=>$_POST,"files"=>$_FILES,"status"=>"error","message"=>$errormsg));
|
2018-12-29 19:17:54 +00:00
|
|
|
|
|
|
|
?>
|