-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcontroller.php
40 lines (31 loc) · 1.01 KB
/
controller.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
require "todo.php";
require "DB.php";
function return_response($status, $statusMessage, $data) {
header("HTTP/1.1 $status $statusMessage");
header("Content-Type: application/json; charset=UTF-8");
echo json_encode($data);
}
$bodyRequest = file_get_contents("php://input");
switch ($_SERVER['REQUEST_METHOD']) {
case 'POST':
$db = new DB();
$new_todo = new Todo;
$new_todo->jsonConstruct($bodyRequest);
$new_todo->DB_insert($db->connection);
$todo_list = Todo::DB_selectAll($db->connection);
return_response(200, "OK", $todo_list);
break;
case 'DELETE':
$db = new DB();
$new_todo = new Todo;
$new_todo->jsonConstruct($bodyRequest);
$new_todo->DB_delete($db->connection);
$todo_list = Todo::DB_selectAll($db->connection);
return_response(200, "OK", $todo_list);
break;
default:
return_response(405, "Method Not Allowed", null);
break;
}
?>