114 lines
3.1 KiB
PHP
114 lines
3.1 KiB
PHP
<?php
|
|
|
|
/** @param callable(_K_Api): void $apiFun */
|
|
function CreateApi(callable $apiFun, bool $devmode = false)
|
|
{
|
|
header("Access-Control-Allow-Origin: *");
|
|
header('Access-Control-Allow-Methods: GET, POST, OPTIONS');
|
|
header("Access-Control-Allow-Headers: Content-Type, Authorization");
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
|
|
http_response_code(200);
|
|
exit;
|
|
}
|
|
|
|
$api = new _K_Api();
|
|
$api->dev_mode = $devmode;
|
|
$apiFun($api);
|
|
$api->end();
|
|
}
|
|
class _K_Api
|
|
{
|
|
private $has_exec = false;
|
|
public $dev_mode = false;
|
|
/** @param callable(_K_ApiRequest): string|array|int|float|bool $fun */
|
|
public function on(string $route, string $method, callable $fun)
|
|
{
|
|
$request_url = (count($_GET) > 0 ? array_keys($_GET)[0] : '');
|
|
$r = str_starts_with($route, '/') ? substr($route, 1) : $route;
|
|
if ($this->has_exec) return;
|
|
if ($r != $request_url) {
|
|
return;
|
|
} else {
|
|
$this->has_exec = true;
|
|
|
|
$req_method = $_SERVER['REQUEST_METHOD'];
|
|
if ($req_method != $method) {
|
|
http_response_code(405);
|
|
$_a = "";
|
|
if ($this->dev_mode)
|
|
$_a = " - using $req_method, available $method";
|
|
die("ERROR: Method Not Allowed" . $_a);
|
|
return;
|
|
}
|
|
|
|
$data = [];
|
|
if ($method == 'GET' && count($_GET) > 1) {
|
|
$data = array_slice(array_keys($_GET), 1);
|
|
} else if ($method == 'POST' && count($_POST) > 0) {
|
|
$data = $_POST;
|
|
}
|
|
|
|
$fun = $fun(new _K_ApiRequest($data));
|
|
if (is_string($fun) || is_numeric($fun)) {
|
|
if (json_validate($fun) && !is_numeric($fun)) {
|
|
Header('Content-Type: application/json');
|
|
}
|
|
echo $fun;
|
|
} else if (is_array($fun) || is_bool($fun)) {
|
|
Header('Content-Type: application/json');
|
|
echo json_encode($fun);
|
|
} else {
|
|
http_response_code(500);
|
|
$_a = "Internal Server Error";
|
|
if ($this->dev_mode) {
|
|
$_type = gettype($fun);
|
|
$_a = "unknown return type ($_type), (available bool, array, numeric, string)";
|
|
}
|
|
die("ERROR: " . $_a);
|
|
return;
|
|
}
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
public function end()
|
|
{
|
|
if (!$this->has_exec) {
|
|
http_response_code(404);
|
|
echo 'ERROR: Not Found';
|
|
}
|
|
}
|
|
}
|
|
|
|
class _K_ApiRequest
|
|
{
|
|
public array $data;
|
|
public _K_ApiResponse $res;
|
|
|
|
public function __construct(array $data)
|
|
{
|
|
$this->data = $data;
|
|
$this->res = new _K_ApiResponse($this);
|
|
}
|
|
public function hasData(array $dataArr)
|
|
{
|
|
foreach ($dataArr as $i) {
|
|
if (!isset($this->data[$i])) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|
|
class _K_ApiResponse
|
|
{
|
|
public function __construct($req) {}
|
|
public function code(int $httpCode)
|
|
{
|
|
http_response_code($httpCode);
|
|
}
|
|
}
|