63 lines
2.1 KiB
PHP
63 lines
2.1 KiB
PHP
<?php
|
|
session_start();
|
|
|
|
spl_autoload_register(function ($className) {
|
|
if (substr($className, 0, 4) !== 'ppb\\') { return; }
|
|
|
|
$fileName = __DIR__.'/'.str_replace('\\', DIRECTORY_SEPARATOR, substr($className, 4)).'.php';
|
|
|
|
if (file_exists($fileName)) { include $fileName; }
|
|
});
|
|
|
|
$endpoint = explode('/', trim($_SERVER['PATH_INFO'],'/'));
|
|
$data = json_decode(file_get_contents('php://input'), true);
|
|
|
|
$controllerName = $endpoint[0];
|
|
$id = false;
|
|
$alias = false;
|
|
|
|
if (isset($endpoint[1])) {
|
|
if (preg_match('/\b[0-9a-f]{8}\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\b[0-9a-f]{12}\b/', $endpoint2)) {
|
|
$id = $endpoint2;
|
|
} else {
|
|
$alias = $endpoint2;
|
|
}
|
|
}
|
|
|
|
$controllerClassName = 'ppb\\Controller\\'.ucfirst($controllerName). 'Controller';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == "DELETE") {
|
|
$methodName = "delete" . ucfirst($controllerName);
|
|
} else if ($_SERVER['REQUEST_METHOD'] == "PUT") {
|
|
$methodName = "update" . ucfirst($controllerName);
|
|
} else if ($_SERVER['REQUEST_METHOD'] == "POST") {
|
|
$methodName = "write" . ucfirst($controllerName);
|
|
} else if ($_SERVER['REQUEST_METHOD'] == "GET") {
|
|
if ($alias) {
|
|
$methodName = $alias;
|
|
} else {
|
|
$methodName = "get" . ucfirst($controllerName);
|
|
}
|
|
}
|
|
|
|
if (method_exists($controllerClassName, $methodName)) {
|
|
$controller = new $controllerClassName();
|
|
if ($_SERVER['REQUEST_METHOD'] == "GET") {
|
|
if ($id) {
|
|
$controller->$methodName($id);
|
|
} else {
|
|
$controller->$methodName();
|
|
}
|
|
} else if ($_SERVER['REQUEST_METHOD'] == "POST"){
|
|
$controller->$methodName($data);
|
|
} else if ($_SERVER['REQUEST_METHOD'] == "DELETE"){
|
|
$controller->$methodName($id);
|
|
} else {
|
|
$controller->$methodName($id, $data);
|
|
}
|
|
} else {
|
|
//http_response_code(404);
|
|
new \ppb\Library\Msg(true, 'Page not found: '.$controllerClassName.'::'.$methodName);
|
|
|
|
}
|
|
?>
|