2022-12-08 14:26:04 +01:00
|
|
|
<?php
|
2022-12-08 14:43:05 +01:00
|
|
|
|
|
|
|
require_once("Router/Router.php");
|
|
|
|
require_once("Router/Response.php");
|
2023-01-23 00:33:56 +01:00
|
|
|
require_once("Router/Route.php");
|
2022-12-21 10:14:44 +01:00
|
|
|
require_once("BancaDati/BancaDati.php");
|
2023-01-11 14:41:58 +01:00
|
|
|
require_once("User.php");
|
2022-12-08 14:43:05 +01:00
|
|
|
|
|
|
|
use Router\Response;
|
|
|
|
use Router\Router;
|
2023-01-23 00:33:56 +01:00
|
|
|
use Router\Route;
|
2022-12-21 10:14:44 +01:00
|
|
|
use BancaDati\BancaDati;
|
2022-12-08 14:43:05 +01:00
|
|
|
|
2023-01-23 01:12:43 +01:00
|
|
|
abstract class HTTP_STATUS_CODE
|
|
|
|
{
|
|
|
|
const OK = 200;
|
|
|
|
const CREATED = 201;
|
|
|
|
const BAD_REQUEST = 400;
|
|
|
|
const FORBIDDEN = 403;
|
|
|
|
const NOT_FOUNT = 404;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-12-08 14:43:05 +01:00
|
|
|
$app = new Router("/DirektiveDesDons");
|
2022-12-21 10:26:12 +01:00
|
|
|
$db = new BancaDati();
|
2022-12-08 14:43:05 +01:00
|
|
|
|
2023-01-12 15:22:32 +01:00
|
|
|
$app->use("/", function (array &$req, Response $res) {
|
2023-01-11 14:41:58 +01:00
|
|
|
if(isset($_COOKIE["TOKEN"])){
|
2023-01-12 15:22:32 +01:00
|
|
|
$user = new User();
|
2023-01-12 15:29:58 +01:00
|
|
|
if($user->loginWithToken($_COOKIE["TOKEN"])){
|
|
|
|
$req["user"] = $user;
|
|
|
|
}
|
2023-01-11 14:41:58 +01:00
|
|
|
}
|
|
|
|
});
|
2022-12-08 14:43:05 +01:00
|
|
|
|
2023-01-23 00:33:56 +01:00
|
|
|
$app->get("/", function (array $req, Response $res) use ($db) {
|
2022-12-08 14:43:05 +01:00
|
|
|
$res->send("Hello World");
|
2023-01-12 15:29:58 +01:00
|
|
|
//var_dump($req["user"]);
|
2022-12-08 14:43:05 +01:00
|
|
|
});
|
|
|
|
|
2023-01-23 00:33:56 +01:00
|
|
|
/*
|
|
|
|
* User
|
|
|
|
*/
|
2022-12-08 14:52:20 +01:00
|
|
|
$app->get("/user", function (array $req, Response $res) {
|
2023-01-23 00:33:56 +01:00
|
|
|
if(isset($req["user"])){
|
|
|
|
$res->json(["id" => $req["user"]->id, "username" => $req["user"]->username, "email" => $req["user"]->email]);
|
|
|
|
}else {
|
2023-01-23 01:12:43 +01:00
|
|
|
$res->json(["status" => HTTP_STATUS_CODE::FORBIDDEN, "message" => "You are not logged in. Goto '/login' to login"]);
|
2023-01-23 00:33:56 +01:00
|
|
|
}
|
2022-12-08 14:52:20 +01:00
|
|
|
});
|
2023-01-12 14:44:52 +01:00
|
|
|
$app->get("/user/:id", function (array $req, Response $res) use ($db) {
|
|
|
|
$db->select("utente", ["username" => $req["id"]]);
|
2022-12-21 10:14:44 +01:00
|
|
|
$res->send("user " . $req["params"]["id"]);
|
|
|
|
});
|
2023-01-23 00:33:56 +01:00
|
|
|
$app->post("/signup", function (array $req, Response $res) use ($db) {
|
2023-01-18 09:51:43 +01:00
|
|
|
$newUsername = $req["body"]["username"];
|
|
|
|
$newPassword = $req["body"]["password"];
|
|
|
|
$newEmail = $req["body"]["email"];
|
|
|
|
$db->insert("utente", ["email" => "$newEmail", "parolaDordine" => "$newPassword", "nomeUtente" => "$newUsername"]);
|
|
|
|
|
2023-01-23 01:12:43 +01:00
|
|
|
$res->send("Account Created", HTTP_STATUS_CODE::CREATED);
|
2023-01-12 14:44:52 +01:00
|
|
|
});
|
2022-12-08 14:52:20 +01:00
|
|
|
|
2023-01-12 14:44:52 +01:00
|
|
|
$app->post("/login", function( array $req, Response $res) use ($db) {
|
2023-01-11 14:41:58 +01:00
|
|
|
$username = $req["body"]["username"];
|
2023-01-12 14:44:52 +01:00
|
|
|
$password = $req["body"]["password"];
|
|
|
|
|
|
|
|
$user = new User();
|
2023-01-12 15:04:15 +01:00
|
|
|
$usertoken = $user->loginWithUsername($username, $password);
|
2023-01-11 14:41:58 +01:00
|
|
|
|
2023-01-12 15:04:15 +01:00
|
|
|
if($usertoken){
|
|
|
|
setcookie("TOKEN", $usertoken, time()+3600); // 1h
|
2023-01-23 01:12:43 +01:00
|
|
|
$res->send("Login successful" . "token: " . $usertoken);
|
2023-01-11 14:41:58 +01:00
|
|
|
}else{
|
2023-01-23 01:12:43 +01:00
|
|
|
$res->send("Login failed", HTTP_STATUS_CODE::FORBIDDEN);
|
2023-01-11 14:41:58 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-01-23 00:33:56 +01:00
|
|
|
/*
|
|
|
|
* Ingredients
|
|
|
|
*/
|
|
|
|
$app->route("/ingredient")
|
|
|
|
->get(function (array $req, Response $res) use ($db) {
|
2023-01-23 01:12:43 +01:00
|
|
|
$res->json(["data" => $db->select("ingredienti")]);
|
2023-01-23 00:33:56 +01:00
|
|
|
})
|
|
|
|
->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"];
|
2023-01-19 14:27:30 +01:00
|
|
|
|
2023-01-23 00:33:56 +01:00
|
|
|
$unitInTable = $db->select("folla", ["unita" => $unit]);
|
|
|
|
if(count($unitInTable) > 1){
|
2023-01-23 01:12:43 +01:00
|
|
|
$res->json(["message" => "Unit: " . $unit . " does not exist. Please create unit first"], HTTP_STATUS_CODE::BAD_REQUEST);
|
2023-01-23 00:33:56 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$unitId = $unitInTable[0]["id"];
|
2023-01-19 14:27:30 +01:00
|
|
|
|
2023-01-23 00:33:56 +01:00
|
|
|
$id = $db->insert("ingredienti", ["cognome" => "$name", "calorie" => "$calories", "quantita" => "$quantity", "follaID" => $unitId, "prezzo" => "$price"]);
|
|
|
|
if(!$id){
|
2023-01-23 01:12:43 +01:00
|
|
|
$res->json(["message" => "Something went wrong when creating the Ingredient"], HTTP_STATUS_CODE::BAD_REQUEST);
|
2023-01-23 00:33:56 +01:00
|
|
|
return;
|
|
|
|
}
|
2023-01-19 14:36:32 +01:00
|
|
|
|
2023-01-23 01:12:43 +01:00
|
|
|
$res->json(["message" => "New ingredient has been listed",
|
2023-01-23 00:33:56 +01:00
|
|
|
"ingredient" => $db->select("ingredienti", ["id" => $id])]);
|
|
|
|
});
|
|
|
|
$app->get("/ingredient/:id", function (array $req, Response $res) use ($db) {
|
|
|
|
$id = $req["params"]["id"];
|
|
|
|
$ingredient = $db->select("ingredienti", ["id" => $id])[0];
|
2023-01-23 01:12:43 +01:00
|
|
|
$res->json(["data" => $ingredient]);
|
2023-01-19 14:36:32 +01:00
|
|
|
});
|
|
|
|
|
2023-01-23 01:12:43 +01:00
|
|
|
/*
|
|
|
|
* Unit
|
|
|
|
*/
|
|
|
|
$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"];
|
|
|
|
|
|
|
|
if(!isset($name) || strlen($name) < 1 || strlen($name) > 200){
|
|
|
|
$res->json(["message" => "Invalid Request. Please follow the 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->get("/unit/:id", function (array $req, Response $res) use ($db) {
|
|
|
|
$id = $req["params"]["id"];
|
|
|
|
$ingredient = $db->select("folla", ["id" => $id])[0];
|
|
|
|
$res->json(["data" => $ingredient]);
|
|
|
|
});
|
2023-01-23 00:33:56 +01:00
|
|
|
|
2022-12-08 14:43:05 +01:00
|
|
|
$app->start();
|