41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php
|
|
namespace App\Controller;
|
|
|
|
// 61eec33c8829a.91a1d27d70ba26710092381a073d9e546597dff6033de272
|
|
require dirname(path: __DIR__) . '/vendor/autoload.php';
|
|
|
|
// read config
|
|
$configFile = dirname(path: __DIR__) . "/config.json";
|
|
$configJSON = file_get_contents($configFile);
|
|
$config = json_decode($configJSON, associative: true);
|
|
|
|
|
|
// TODO only valid clients?
|
|
header(header: "Access-Control-Allow-Origin: *");
|
|
header(header: "Content-Type: application/json; charset=UTF-8");
|
|
header(header: "Access-Control-Allow-Methods: OPTIONS,GET,POST,PUT,DELETE");
|
|
header(header: "Access-Control-Max-Age: 3600");
|
|
header(header: "Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With");
|
|
|
|
|
|
|
|
// TODO make a log class
|
|
$oFile = fopen (filename: 'log.txt', mode: 'a');
|
|
|
|
$uri = parse_url(url: $_SERVER['REQUEST_URI'], component: PHP_URL_PATH);
|
|
fputs(stream: $oFile, data: $uri . PHP_EOL);
|
|
fclose(stream: $oFile);
|
|
|
|
$uri = explode( separator: '/', string: $uri );
|
|
if ($uri[1] !== 'api') {
|
|
header(header: "HTTP/1.1 404 Not Found");
|
|
exit();
|
|
}
|
|
|
|
$requestMethod = $_SERVER["REQUEST_METHOD"];
|
|
$databaseConnection = new DatabaseConnection(config: $config);
|
|
|
|
$controller = new RequestController(databaseConnection: $databaseConnection, requestMethod: $requestMethod, uri: $uri);
|
|
$controller->processRequest();
|
|
|