Testing #10
@ -36,6 +36,14 @@ class BenutzerController
|
|||||||
return json_encode($data);
|
return json_encode($data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function nextId()
|
||||||
|
{
|
||||||
|
$result = $this->db->nextId();
|
||||||
|
|
||||||
|
return json_encode($result);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
@ -94,7 +94,25 @@ class BenutzerModel extends Database
|
|||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function nextId()
|
||||||
|
{
|
||||||
|
|
||||||
|
$pdo = $this->linkDB();
|
||||||
|
|
||||||
|
$sql = "SELECT `auto_increment` FROM INFORMATION_SCHEMA.TABLES WHERE table_name = 'Benutzerkonto'; ";
|
||||||
|
|
||||||
|
try {
|
||||||
|
$stmt = $pdo->prepare($sql);
|
||||||
|
$stmt->execute();
|
||||||
|
} catch (\PDOException $e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$result = $stmt->fetchALL(\PDO::FETCH_ASSOC);
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
134
restAPI.php
134
restAPI.php
@ -1,4 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
Dieses Skript analysiert die URL und generiert daraus die passenden Controller-Aufrufe
|
Dieses Skript analysiert die URL und generiert daraus die passenden Controller-Aufrufe
|
||||||
|
|
||||||
@ -14,72 +14,76 @@
|
|||||||
|
|
||||||
file_get_contents('php://input') die übergebenen json-Strings (für PUT/POST-Requests)
|
file_get_contents('php://input') die übergebenen json-Strings (für PUT/POST-Requests)
|
||||||
*/
|
*/
|
||||||
spl_autoload_register(function ($className) {
|
spl_autoload_register(function ($className) {
|
||||||
if (substr($className, 0, 4) !== 'ppb\\') { return; }
|
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];
|
|
||||||
$endpoint2 = isset($endpoint[1]) ? $endpoint[1] : false;
|
|
||||||
$id = false;
|
|
||||||
$alias = false;
|
|
||||||
|
|
||||||
if ($endpoint2) {
|
|
||||||
if (preg_match('/^[0-9]+$/', $endpoint2)) {
|
|
||||||
$id = $endpoint2;
|
|
||||||
} else {
|
|
||||||
$alias = $endpoint2;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$controllerClassName = 'ppb\\Controller\\'.ucfirst($controllerName). 'Controller';
|
$fileName = __DIR__ . '/' . str_replace('\\', DIRECTORY_SEPARATOR, substr($className, 4)) . '.php';
|
||||||
|
|
||||||
if ($_SERVER['REQUEST_METHOD'] == "DELETE") {
|
if (file_exists($fileName)) {
|
||||||
$methodName = "delete" . ucfirst($controllerName);
|
include $fileName;
|
||||||
} 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)) {
|
|
||||||
|
$endpoint = explode('/', trim($_SERVER['PATH_INFO'], '/'));
|
||||||
header('Content-Type: application/json');
|
$data = json_decode(file_get_contents('php://input'), true);
|
||||||
|
|
||||||
$controller = new $controllerClassName();
|
$controllerName = $endpoint[0];
|
||||||
//GET
|
$endpoint2 = isset($endpoint[1]) ? $endpoint[1] : false;
|
||||||
if ($_SERVER['REQUEST_METHOD'] == "GET") {
|
$id = false;
|
||||||
|
$alias = false;
|
||||||
echo $controller->$methodName($id);
|
|
||||||
|
if ($endpoint2) {
|
||||||
} else
|
if (preg_match('/^[0-9]+$/', $endpoint2)) {
|
||||||
//POST
|
$id = $endpoint2;
|
||||||
if ($_SERVER['REQUEST_METHOD'] == "POST"){
|
|
||||||
echo $controller->$methodName($data);
|
|
||||||
} else
|
|
||||||
//DELETE
|
|
||||||
if ($_SERVER['REQUEST_METHOD'] == "DELETE"){
|
|
||||||
echo $controller->$methodName($id);
|
|
||||||
} else
|
|
||||||
//PUT
|
|
||||||
{
|
|
||||||
echo $controller->$methodName($id, $data);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
//http_response_code(404);
|
$alias = $endpoint2;
|
||||||
new \ppb\Library\Msg(true, 'Page not found: '.$controllerClassName.'::'.$methodName);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$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)) {
|
||||||
|
|
||||||
|
header('Content-Type: application/json');
|
||||||
|
|
||||||
|
$controller = new $controllerClassName();
|
||||||
|
//GET
|
||||||
|
if ($_SERVER['REQUEST_METHOD'] == "GET") {
|
||||||
|
|
||||||
|
echo $controller->$methodName($id);
|
||||||
|
|
||||||
|
} else
|
||||||
|
//POST
|
||||||
|
if ($_SERVER['REQUEST_METHOD'] == "POST") {
|
||||||
|
echo $controller->$methodName($data);
|
||||||
|
} else
|
||||||
|
//DELETE
|
||||||
|
if ($_SERVER['REQUEST_METHOD'] == "DELETE") {
|
||||||
|
echo $controller->$methodName($id);
|
||||||
|
} else
|
||||||
|
//PUT
|
||||||
|
{
|
||||||
|
echo $controller->$methodName($id, $data);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
//http_response_code(404);
|
||||||
|
new \ppb\Library\Msg(true, 'Page not found: ' . $controllerClassName . '::' . $methodName);
|
||||||
|
|
||||||
|
}
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue
Block a user