-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
36 lines (24 loc) · 845 Bytes
/
index.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
<?php
declare(strict_types=1);
//autoloading class files
spl_autoload_register(function ($class){
require __DIR__ . "/src/$class.php";
});
//setting exception handler
set_error_handler("ErrorHandler::handleError");
set_exception_handler("ErrorHandler::handleException");
//getting API responses in json format
header("Content-type: application/json; charset=UTF-8");
//breaking the url into parts in an array
$parts = explode("/", $_SERVER['REQUEST_URI']);
if($parts[1] != "products"){
http_response_code(404);
exit;
}
$id = $parts[2] ?? null;
//obj invocations
$database = new Database("localhost", "plain_php_api", "phpmyadmin", "0101157029");
$gateway = new ProductGateway($database);
$controller = new ProductsController($gateway);
//object invocations
$controller->processRequest($_SERVER["REQUEST_METHOD"], $id);