Compare commits

...

20 Commits

Author SHA1 Message Date
9822a9f738 Merge pull request 'done' (#3) from done into don
Reviewed-on: #3
2023-01-24 20:11:19 +01:00
Johannes Kantz
b607934c8d db pw 2023-01-24 09:01:58 +01:00
Johannes Kantz
62ac1011cc update documentation 2023-01-24 09:01:42 +01:00
Johannes Kantz
c8582c8813 add: delete items from list 2023-01-24 09:01:23 +01:00
Johannes Kantz
b2ce4f829d add: add items to list 2023-01-24 08:47:05 +01:00
Johannes Kantz
9ca46b9b3e add: update and delete units 2023-01-24 04:10:30 +01:00
Johannes Kantz
9a00e7eb16 add: update and delete ingredients 2023-01-24 04:05:15 +01:00
Johannes Kantz
e465ed9e95 add: Documentation 2023-01-23 05:34:13 +01:00
Johannes Kantz
09ab443622 add: test data & slight adjustments 2023-01-23 05:33:21 +01:00
Johannes Kantz
e8775385cf fix: refactor 2023-01-23 05:31:35 +01:00
Johannes Kantz
c717e5c4e9 add: List 2023-01-23 05:26:12 +01:00
Johannes Kantz
67912410d9 add: unit and more simple http status codes 2023-01-23 01:12:43 +01:00
Johannes Kantz
83019b999c add: include http status codes in json response 2023-01-23 01:08:14 +01:00
Johannes Kantz
288dbd6d4c add: Ingredient Route 2023-01-23 00:33:56 +01:00
Johannes Kantz
92f539fa14 fix: typo 2023-01-21 14:10:02 +01:00
Johannes Kantz
c110825140 fix: ignore trailing / at the end of uri 2023-01-21 13:49:59 +01:00
Johannes Kantz
1034dd30f9 add: json error message 2023-01-21 13:25:49 +01:00
Johannes Kantz
464a9c7dbc fix: select fetchAll 2023-01-19 18:37:48 +01:00
Johannes Kantz
082ab46590 Merge branch 'don' of https://git.bib.de/Italienische-Mafia/DirektiveDesDons into don 2023-01-19 17:31:47 +01:00
Johannes Kantz
1038deded0 fix: redirect everything to index.php 2022-12-08 18:01:23 +01:00
8 changed files with 475 additions and 71 deletions

View File

@ -1 +1,5 @@
FallbackResource /DirektiveDesDons/index.php # Redirect everything to index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ /DirektiveDesDons/index.php [L,QSA]

View File

@ -3,29 +3,30 @@ SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET SET
time_zone = "+00:00"; time_zone = "+00:00";
CREATE TABLE `folla`
( /*Menge*/
`id` int auto_increment NOT NULL PRIMARY KEY,
`unita` varchar(200) UNIQUE NOT NULL, /*Einheit*/
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `ingredienti` CREATE TABLE `ingredienti`
( /*Zutaten*/ ( /*Zutaten*/
`id` int auto_increment NOT NULL PRIMARY KEY, `id` int auto_increment NOT NULL PRIMARY KEY,
`cognome` varchar(200) NOT NULL, /*Name*/ `cognome` varchar(200) NOT NULL, /*Name*/
`caloriePerCento` integer(5) NOT NULL, /*Kalorien pro Gramm*/ `calorie` integer(5) NOT NULL, /*Kalorien*/
`ilPeso` integer(5) NULL, /*Gewicht*/ `quantita` integer(5) NOT NULL, /*Anzahl*/
`prezzo` decimal(4, 2) NOT NULL, /*Preis*/ `prezzo` decimal(4, 2) NOT NULL, /*Preis*/
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP `follaID` int NOT NULL, /*MengeID*/
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `folla`
( /*Menge*/
`id` int auto_increment NOT NULL PRIMARY KEY,
`unita` varchar(200) NOT NULL, /*Einheit*/
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `elenco` CREATE TABLE `elenco`
( /*Liste*/ ( /*Liste*/
`id` int auto_increment NOT NULL PRIMARY KEY, `id` int auto_increment NOT NULL PRIMARY KEY,
`creatore` varchar(200) NOT NULL, /*Ersteller*/ `utenteID` int NOT NULL, /*ErstellerID*/
`coloreDiSfondo` integer(10) NOT NULL, /*Hintergrundfarbe*/ `cognome` varchar(200) NOT NULL, /*Name*/
`coloreDiSfondo` varchar(200), /*Hintergrundfarbe*/
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
@ -44,7 +45,6 @@ CREATE TABLE `elencoIngredienti`
`id` int auto_increment NOT NULL PRIMARY KEY, `id` int auto_increment NOT NULL PRIMARY KEY,
`ingredientiID` int NOT NULL, /*ZutatenID*/ `ingredientiID` int NOT NULL, /*ZutatenID*/
`elencoID` int NOT NULL, /*ListeID*/ `elencoID` int NOT NULL, /*ListeID*/
`follaID` int NOT NULL, /*MengeID*/
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
@ -58,9 +58,41 @@ CREATE TABLE `utenteElenco`
ALTER TABLE `elencoIngredienti` /*Liste_Zutaten*/ ALTER TABLE `elencoIngredienti` /*Liste_Zutaten*/
ADD CONSTRAINT `FK_ElencoIngredienti_Ingredienti` FOREIGN KEY (`ingredientiID`) REFERENCES `ingredienti`(`id`), /*Liste_Zutaten hat Foreignkey von Zutaten(id)*/ ADD CONSTRAINT `FK_ElencoIngredienti_Ingredienti` FOREIGN KEY (`ingredientiID`) REFERENCES `ingredienti`(`id`), /*Liste_Zutaten hat Foreignkey von Zutaten(id)*/
ADD CONSTRAINT `FK_ElencoIngredienti_Elenco` FOREIGN KEY (`elencoID`) REFERENCES `elenco`(`id`), /*Liste_Zutaten hat Foreignkey von Liste(id)*/ ADD CONSTRAINT `FK_ElencoIngredienti_Elenco` FOREIGN KEY (`elencoID`) REFERENCES `elenco`(`id`); /*Liste_Zutaten hat Foreignkey von Liste(id)*/
ADD CONSTRAINT `FK_ElencoIngredienti_Folla` FOREIGN KEY (`follaID`) REFERENCES `folla`(`id`); /*Liste_Zutaten hat Foreignkey von Menge(id)*/
ALTER TABLE `utenteElenco` /*Benutzer_Liste*/ ALTER TABLE `utenteElenco` /*Benutzer_Liste*/
ADD CONSTRAINT `FK_UtenteElenco_Utente` FOREIGN KEY (`utenteId`) REFERENCES `utente`(`id`), /*Benutzer_Liste hat Foreignkey von Benutzer(id)*/ ADD CONSTRAINT `FK_UtenteElenco_Utente` FOREIGN KEY (`utenteId`) REFERENCES `utente`(`id`), /*Benutzer_Liste hat Foreignkey von Benutzer(id)*/
ADD CONSTRAINT `FK_UtenteElenco_Elenco` FOREIGN KEY (`elencoId`) REFERENCES `elenco`(`id`); /*Benutzer_Liste hat Foreignkey von Liste(id)*/ ADD CONSTRAINT `FK_UtenteElenco_Elenco` FOREIGN KEY (`elencoId`) REFERENCES `elenco`(`id`); /*Benutzer_Liste hat Foreignkey von Liste(id)*/
ALTER TABLE `ingredienti`
ADD CONSTRAINT `FK_Ingredienti_Folla` FOREIGN KEY (`follaID`) REFERENCES `folla`(`id`); /*Zutaten hat Foreignkey von Menge(id)*/
ALTER TABLE `elenco`
ADD CONSTRAINT `FK_Elenco_Utente` FOREIGN KEY (`utenteId`) REFERENCES `utente`(`id`); /*Liste hat Foreignkey von Benutzer(id)*/
/*Test Data*/
INSERT INTO `utente` (email, parolaDordine, nomeUtente) VALUES ('test@test.com', 'password', "testuser");
INSERT INTO `utente` (email, parolaDordine, nomeUtente) VALUES ('test1@test.com', 'password1', "testuser1");
INSERT INTO `folla` (unita) VALUES ('st');
INSERT INTO `folla` (unita) VALUES ('g');
INSERT INTO `folla` (unita) VALUES ('kg');
INSERT INTO `folla` (unita) VALUES ('mg');
INSERT INTO `folla` (unita) VALUES ('l');
INSERT INTO `folla` (unita) VALUES ('ml');
INSERT INTO `folla` (unita) VALUES ('TL');
INSERT INTO `folla` (unita) VALUES ('EL');
INSERT INTO `ingredienti` (cognome, calorie, quantita, prezzo, follaID) VALUES ('Raffinierter Zucker', 3870, 1000, 5, 2);
INSERT INTO `ingredienti` (cognome, calorie, quantita, prezzo, follaID) VALUES ('Die Chips von der Tanke', 843, 375, 4.30, 2);
INSERT INTO `elenco` (utenteID, cognome) VALUES (1, 'Liste den Einkauf bei Netto');
INSERT INTO `elencoIngredienti` (ingredientiID, elencoID) VALUES (1, 1);
INSERT INTO `elencoIngredienti` (ingredientiID, elencoID) VALUES (2, 1);

View File

@ -22,6 +22,7 @@ class BancaDati {
, $this->pw , $this->pw
, array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION)); , array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION));
} catch (PDOException $e) { } catch (PDOException $e) {
var_dump($e);
die; die;
} }
} }
@ -54,8 +55,10 @@ class BancaDati {
try { try {
$sth = $this->pdo->prepare($sql); $sth = $this->pdo->prepare($sql);
$sth->execute(); $sth->execute();
return $this->pdo->lastInsertId();
}catch (PDOException $e){ }catch (PDOException $e){
die; return false;
//die;
} }
} }
@ -108,7 +111,7 @@ class BancaDati {
* @return void * @return void
* @author Malte Schulze Hobeling * @author Malte Schulze Hobeling
*/ */
public function select(string $table, array $where){ public function select(string $table, array $where = []){
$whereString = ""; $whereString = "";
$orderString = ""; $orderString = "";
if(isset($where["by"])){ if(isset($where["by"])){
@ -125,9 +128,9 @@ class BancaDati {
} }
$whereString .= "`" . $col . "` LIKE '" . $v . "'"; $whereString .= "`" . $col . "` LIKE '" . $v . "'";
} }
$sql = "SELECT * FROM ".$table." WHERE ".$whereString.$orderString.";"; $sql = "SELECT * FROM " . $table . ((count($where) > 0) ? " WHERE ".$whereString.$orderString : "") .";";
try { try {
return $this->pdo->query($sql)->fetch(); return $this->pdo->query($sql)->fetchAll(PDO::FETCH_ASSOC);
}catch (PDOException $e){ }catch (PDOException $e){
die; die;
} }

View File

@ -0,0 +1,142 @@
# Dokumentation
Eine auflistung von allen Funktionen und API-Endpunkten mit Erklärung.
- User
- Einkaufsliste
- Zutaten
- Einheiten
---
## User
### User erstellen
```shell
POST 127.0.0.1/DirektiveDesDons/user
BODY
{
"username": "Benutzername",
"email": "email"
"password": "Passwort",
}
```
### Aktueller User ausgeben
```shell
GET 127.0.0.1/DirektiveDesDons/user
```
### Login
```shell
POST 127.0.0.1/DirektiveDesDons/login
BODY
{
"username": "Benutzername",
"password": "Passwort"
}
```
---
## Einkaufsliste
### Einkaufsliste erstellen
```shell
POST 127.0.0.1/DirektiveDesDons/list
BODY
{
"name": "Einkaufsliste 1"
"backgoundColor": "#123",
}
```
### Einkauslisten ausgeben
```shell
GET 127.0.0.1/DirektiveDesDons/list
```
### Einkaufsliste ausgeben
```shell
GET 127.0.0.1/DirektiveDesDons/list/1
```
### Einkaufsliste löschen
```shell
DELETE 127.0.0.1/DirektiveDesDons/list/1
```
### Zutat zu Einkaufsliste hinzufügen
```shell
POST 127.0.0.1/DirektiveDesDons/list/1
BODY
{
"ingredientId": 1
}
```
### Zutat von Liste löschen
```shell
DELETE 127.0.0.1/DirektiveDesDons/list/1/4
```
---
## Zutaten
### Zutaten erstellen
```shell
POST 127.0.0.1/DirektiveDesDons/ingredient
BODY
{
"name": "Nüsse",
"calories": "123",
"quantity": "5",
"unit": "st",
"price": "12.5"
}
```
### Zutaten ausgeben
```shell
GET 127.0.0.1/DirektiveDesDons/ingredient
```
### Zutat ausgeben
```shell
GET 127.0.0.1/DirektiveDesDons/ingredient/1
```
### Zutat löschen
```shell
DELETE 127.0.0.1/DirektiveDesDons/ingredient/1
```
---
## MengenEinheiten
### Einheiten auflisten
```shell
GET 127.0.0.1/DirektiveDesDons/unit
```
### Einheit Erstellen
```shell
POST 127.0.0.1/DirektiveDesDons/unit
BODY
{
"name": "lbs"
}
```
### Einheit löschen
```shell
DELETE 127.0.0.1/DirektiveDesDons/unit/4
```

View File

@ -31,6 +31,7 @@ class Response
http_response_code($status); http_response_code($status);
} }
header('Content-Type: application/json; charset=utf-8'); header('Content-Type: application/json; charset=utf-8');
$data["status"] = http_response_code();
echo json_encode($data); echo json_encode($data);
} }

View File

@ -20,8 +20,9 @@ class Router
*/ */
public function __construct(string $pathname) public function __construct(string $pathname)
{ {
$this->uri = is_countable($_SERVER['REQUEST_URI']) && count($_SERVER['REQUEST_URI']) > 1 ? rtrim($_SERVER['REQUEST_URI'], "/") : $_SERVER['REQUEST_URI']; $this->uri = str_replace($pathname, "", $_SERVER['REQUEST_URI']);
$this->uri = str_replace($pathname, "", $this->uri); $this->uri = strlen($this->uri) > 1 ? rtrim($this->uri, "/") : $this->uri;
$this->requestType = $_SERVER['REQUEST_METHOD']; $this->requestType = $_SERVER['REQUEST_METHOD'];
$this->routes = []; $this->routes = [];
$this->middleware = []; $this->middleware = [];
@ -32,7 +33,7 @@ class Router
if (isset($_POST)) { if (isset($_POST)) {
$this->request["body"] = json_decode(file_get_contents('php://input'), true); $this->request["body"] = json_decode(file_get_contents('php://input'), true);
} }
if (isset($_POST)) { if (isset($_GET)) {
$this->request["params"] = $_GET; $this->request["params"] = $_GET;
} }
@ -235,7 +236,7 @@ class Router
if ($controller) { if ($controller) {
$controller($this->request, $this->response); $controller($this->request, $this->response);
} else { } else {
echo "404"; $this->response->json(["status" => "404", "message" => "Not found"], 404);
} }
} }
} }

View File

@ -18,7 +18,7 @@ class User {
return true; return true;
} }
public function loginWithUsername(string $username, string $password) : string { public function loginWithUsername(string $username, string $password) : string {
$userObject = $this->db->select("utente", ["nomeUtente" => $username]); $userObject = $this->db->select("utente", ["nomeUtente" => $username])[0];
if(!$userObject){ if(!$userObject){
return false; return false;
@ -38,7 +38,7 @@ class User {
return $this->token; return $this->token;
} }
public function loginWithToken(string $token){ public function loginWithToken(string $token){
$userObject = $this->db->select("utente", ["gettone" => $token]); $userObject = $this->db->select("utente", ["gettone" => $token])[0];
if(!$userObject){ if(!$userObject){
return false; return false;
} }

261
index.php
View File

@ -2,16 +2,31 @@
require_once("Router/Router.php"); require_once("Router/Router.php");
require_once("Router/Response.php"); require_once("Router/Response.php");
require_once("Router/Route.php");
require_once("BancaDati/BancaDati.php"); require_once("BancaDati/BancaDati.php");
require_once("User.php"); require_once("User.php");
use Router\Response; use Router\Response;
use Router\Router; use Router\Router;
use Router\Route;
use BancaDati\BancaDati; use BancaDati\BancaDati;
abstract class HTTP_STATUS_CODE {
const OK = 200;
const CREATED = 201;
const BAD_REQUEST = 400;
const FORBIDDEN = 403;
const NOT_FOUNT = 404;
}
$app = new Router("/DirektiveDesDons"); $app = new Router("/DirektiveDesDons");
$db = new BancaDati(); $db = new BancaDati();
/*
* Middleware
*/
$app->use("/", function (array &$req, Response $res) { $app->use("/", function (array &$req, Response $res) {
if (isset($_COOKIE["TOKEN"])) { if (isset($_COOKIE["TOKEN"])) {
$user = new User(); $user = new User();
@ -21,26 +36,36 @@ $app->use("/", function (array &$req, Response $res) {
} }
}); });
$app->get("/", function (array $req, Response $res) { /*
$res->send("Hello World"); * Home
//var_dump($req["user"]); */
$app->get("/", function (array $req, Response $res) use ($db) {
$res->json(["message" => "",
"name" => "Shopping List",
"authors" => "Simon Bock, Johannes Kantz & Malte Schulze Hobeling"]);
}); });
/*
* User
*/
$app->get("/user", function (array $req, Response $res) { $app->get("/user", function (array $req, Response $res) {
$res->send("user"); if (isset($req["user"])) {
$res->json(["id" => $req["user"]->id, "username" => $req["user"]->username, "email" => $req["user"]->email]);
} else {
$res->json(["status" => HTTP_STATUS_CODE::FORBIDDEN, "message" => "You are not logged in. Goto '/login' to login"]);
}
}); });
$app->get("/user/:id", function (array $req, Response $res) use ($db) { $app->get("/user/:id", function (array $req, Response $res) use ($db) {
$db->select("utente", ["username" => $req["id"]]); $db->select("utente", ["username" => $req["id"]]);
$res->send("user " . $req["params"]["id"]); $res->send("user " . $req["params"]["id"]);
}); });
$app->post("/createuser", function (array $req, Response $res) use ($db) { $app->post("/signup", function (array $req, Response $res) use ($db) {
$newUsername = $req["body"]["username"]; $newUsername = $req["body"]["username"];
$newPassword = $req["body"]["password"]; $newPassword = $req["body"]["password"];
$newEmail = $req["body"]["email"]; $newEmail = $req["body"]["email"];
// $db->insert("utente", ["email" => "test@email.com", "parolaDordine" => "password", "nomeUtente" => "testuser"]);
$db->insert("utente", ["email" => "$newEmail", "parolaDordine" => "$newPassword", "nomeUtente" => "$newUsername"]); $db->insert("utente", ["email" => "$newEmail", "parolaDordine" => "$newPassword", "nomeUtente" => "$newUsername"]);
$res->send("user "); $res->send("Account Created", HTTP_STATUS_CODE::CREATED);
}); });
$app->post("/login", function (array $req, Response $res) use ($db) { $app->post("/login", function (array $req, Response $res) use ($db) {
@ -52,27 +77,223 @@ $app->post("/login", function( array $req, Response $res) use ($db) {
if ($usertoken) { if ($usertoken) {
setcookie("TOKEN", $usertoken, time() + 3600); // 1h setcookie("TOKEN", $usertoken, time() + 3600); // 1h
$res->send("Login successful" . "token: " . $usertoken, 200); $res->json(["message" => "Login successful", "token" => $usertoken]);
} else { } else {
$res->send("Login failed", 403); $res->json(["message" => "Login failed"], HTTP_STATUS_CODE::FORBIDDEN);
} }
}); });
$app->post("/createingredients", function (array $req, Response $res) use ($db) { /*
$newIngredient = $req["body"]["ingredient"]; * Ingredients
$newCalorie = $req["body"]["calories"]; */
$newWeight = $req["body"]["weight"]; $app->route("/ingredient")
$newPrice = $req["body"]["price"]; ->get(function (array $req, Response $res) use ($db) {
$db->insert("ingredienti", ["cognome" => "$newIngredient", "caloriePerCento" => "$newCalorie", "ilPeso" => "$newWeight", "prezzo" => "$newPrice"]); $res->json(["data" => $db->select("ingredienti")]);
})
->post(function (array $req, Response $res) use ($db) {
$name = $req["body"]["name"];
$calories = $req["body"]["calories"];
$quantity = $req["body"]["quantity"];
$unit = $req["body"]["unit"];
$price = $req["body"]["price"];
$res->send("New ingredient has been listed "); $unitInTable = $db->select("folla", ["unita" => $unit]);
if (count($unitInTable) > 1) {
$res->json(["message" => "Unit: " . $unit . " does not exist. Please create unit first"], HTTP_STATUS_CODE::BAD_REQUEST);
return;
}
$unitId = $unitInTable[0]["id"];
$id = $db->insert("ingredienti", ["cognome" => "$name", "calorie" => "$calories", "quantita" => "$quantity", "follaID" => $unitId, "prezzo" => "$price"]);
if (!$id) {
$res->json(["message" => "Something went wrong when creating the Ingredient"], HTTP_STATUS_CODE::BAD_REQUEST);
return;
}
$res->json(["message" => "New ingredient has been listed",
"ingredient" => $db->select("ingredienti", ["id" => $id])]);
});
$app->route("/ingredient/:id")
->get(function (array $req, Response $res) use ($db) {
$id = $req["params"]["id"];
$ingredient = $db->select("ingredienti", ["id" => $id])[0];
$res->json(["data" => $ingredient]);
})
->put(function (array $req, Response $res) use ($db) {
$id = $req["params"]["id"];
$name = $req["body"]["name"];
$calories = $req["body"]["calories"];
$quantity = $req["body"]["quantity"];
$unit = $req["body"]["unit"];
$price = $req["body"]["price"];
$unitInTable = $db->select("folla", ["unita" => $unit]);
if (count($unitInTable) > 1) {
$res->json(["message" => "Unit: " . $unit . " does not exist. Please create unit first"], HTTP_STATUS_CODE::BAD_REQUEST);
return;
}
$unitId = $unitInTable[0]["id"];
$db->update("ingredienti", $id, ["cognome" => "$name", "calorie" => "$calories", "quantita" => "$quantity", "follaID" => $unitId, "prezzo" => "$price"]);
$res->json(["message" => "Ingredient has been updated", "data" => $db->select("ingredienti", ["id" => $id])[0]]);
})
->delete(function (array $req, Response $res) use ($db) {
$id = $req["params"]["id"];
$db->delete("ingredienti", $id);
$res->json(["message" => "Ingredient has been deleted"]);
}); });
$app->post("/createunits", function (array $req, Response $res) use ($db) { /*
$newUnit = $req["body"]["unit"]; * Unit
$db->insert("folla", ["unita" => "$newUnit"]); */
$app->route("/unit")
->get(function (array $req, Response $res) use ($db) {
$res->json(["data" => $db->select("folla")]);
})
->post(function (array $req, Response $res) use ($db) {
$name = $req["body"]["name"];
$res->send("New unit has been listed "); if (!isset($name) || strlen($name) < 1 || strlen($name) > 200) {
$res->json(["message" => "Invalid Request. Please follow the Documentation", HTTP_STATUS_CODE::BAD_REQUEST]);
return;
}
$selectWithSameName = $db->select("folla", ["unita" => $name]);
if (count($selectWithSameName) >= 1) {
$res->json(["message" => "Unit: " . $name . " already exists", "data" => $selectWithSameName[0]], HTTP_STATUS_CODE::BAD_REQUEST);
return;
}
$newUnitId = $db->insert("folla", ["unita" => $name]);
$res->json(["message" => "Unit: '" . $name . "' created", "data" => $db->select("folla", ["id" => $newUnitId])[0]], HTTP_STATUS_CODE::CREATED);
});
$app->route("/unit/:id")
->get(function (array $req, Response $res) use ($db) {
$id = $req["params"]["id"];
$ingredient = $db->select("folla", ["id" => $id])[0];
$res->json(["data" => $ingredient]);
})
->put(function (array $req, Response $res) use ($db) {
$id = $req["params"]["id"];
$name = $req["body"]["name"];
if (!isset($name) || strlen($name) < 1 || strlen($name) > 200) {
$res->json(["message" => "Invalid Request. Please follow the Documentation", HTTP_STATUS_CODE::BAD_REQUEST]);
return;
}
$db->update("folla", $id, ["unita" => $name]);
$res->json(["message" => "Unit has been updated", "data" => $db->select("folla", ["id" => $id])]);
})
->delete(function (array $req, Response $res) use ($db) {
$id = $req["params"]["id"];
$db->delete("folla", $id);
$res->json(["message" => "Unit has been deleted"]);
});
/*
* List
*/
$app->use("/list", function (array $req, Response $res) {
if (!isset($req["user"])) {
$res->json(["message" => "You need to be signed in to use lists"], HTTP_STATUS_CODE::FORBIDDEN);
die;
}
});
$app->route("/list")
->get(function (array $req, Response $res) use ($db) {
$lists = $db->select("elenco", ["utenteID" => $req["user"]->id]);
// add items to list
foreach ($lists as &$list) {
$listId = $list["id"];
$ingredients = $db->select("elencoIngredienti", ["elencoId" => $listId]);
$ingredientData = [];
foreach ($ingredients as &$ingredient) {
$ingredientData[] = $db->select("Ingredienti", ["id" => $ingredient["ingredientiID"]]);
}
$list["inredients"] = $ingredientData;
}
$res->json(["data" => $lists]);
})
->post(function (array $req, Response $res) use ($db) {
$name = $req["body"]["name"];
$bgColor = $req["body"]["backgoundColor"] ?? "#fff";
if (!isset($name) || strlen($name) < 1) {
$res->json(["message" => "Invalid Request. Please follow the Documentation"], HTTP_STATUS_CODE::BAD_REQUEST);
return;
}
$lastListId = $db->insert("elenco", ["cognome" => $name, "coloreDiSfondo" => $bgColor, "utenteID" => $req["user"]->id]);
$res->json(["message" => "New List '" . $name . "' created", "data" => $db->select("elenco", ["id" => $lastListId])], HTTP_STATUS_CODE::CREATED);
});
$app->route("/list/:id")
->get(function (array $req, Response $res) use ($db) {
$id = $req["params"]["id"];
$query = $db->select("elenco", ["id" => $id, "utenteID" => $req["user"]->id]);
if (count($query) < 1) {
$res->json(["message" => "List does not exists or you dont have permissions to view it"]);
return;
}
$list = $query[0];
$listId = $list["id"];
$ingredients = $db->select("elencoIngredienti", ["elencoId" => $listId]);
$ingredientData = [];
foreach ($ingredients as &$ingredient) {
$ingredientData[] = $db->select("Ingredienti", ["id" => $ingredient["ingredientiID"]]);
}
$list["inredients"] = $ingredientData;
$res->json(["data" => $list]);
})
->post(function (array $req, Response $res) use ($db) {
$id = $req["params"]["id"];
$ingredientId = $req["body"]["ingredientId"];
if (!isset($ingredientId)) {
$res->json(["message" => "You need to set a valid 'ingredientId'", HTTP_STATUS_CODE::BAD_REQUEST]);
return;
}
$newId = $db->insert("elencoIngredienti", ["ingredientiID" => $ingredientId, "elencoID" => $id]);
if(!$newId){
$res->json(["message" => "Cannot insert item in list"], HTTP_STATUS_CODE::BAD_REQUEST);
return;
}
$res->json(["message" => "Item has been added"]);
})
->delete(function (array $req, Response $res) use ($db) {
$id = $req["params"]["id"];
$list = $db->select("elenco", ["id" => $id]);
if (count($list) < 1) {
$res->json(["message" => "List does not exist"]);
return;
}
if ($list[0]["utenteID"] != $req["user"]->id) {
$res->json(["message" => "You have no permissions the delete this list"], HTTP_STATUS_CODE::FORBIDDEN);
return;
}
$db->delete("elenco", $id);
$res->json(["message" => "List has been deleted"]);
});
$app->delete("/list/:id/:item", function (array $req, Response $res) use ($db) {
$listId = $req["params"]["id"];
$itemId = $req["params"]["item"];
$list = $db->select("elenco", ["id" => $listId, "utenteID" => $req["user"]->id]);
if(count($list) < 1){
$res->json(["message" => "List does not exist or you dont have the permissions to edit the list"]);
return;
}
$db->delete("elencoIngredienti", $itemId);
$res->json(["message" => "Item has been deleted"]);
}); });
$app->start(); $app->start();