121 lines
3.7 KiB
PHP
121 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace WillySoft;
|
|
|
|
use \Exception;
|
|
|
|
abstract class Route
|
|
{
|
|
static string $prefix = '';
|
|
static array $groups = [
|
|
[]
|
|
];
|
|
|
|
private static function getRequestPath(): string
|
|
{
|
|
static $request_url_path;
|
|
|
|
if (isset($request_url_path)) {
|
|
return $request_url_path;
|
|
}
|
|
|
|
$request_url_path = substr_replace(
|
|
urldecode(strtok($_SERVER['REQUEST_URI'], '?')), '', 0, strlen($_SERVER['SCRIPT_NAME'])
|
|
);
|
|
if ($request_url_path === '')
|
|
$request_url_path = '/';
|
|
|
|
return $request_url_path;
|
|
}
|
|
|
|
static function match(string $methods, string $url_path, callable $callback)
|
|
{
|
|
if (!in_array(
|
|
$_SERVER['REQUEST_METHOD'],
|
|
array_map(strtoupper(...), explode('|', $methods))
|
|
)) return;
|
|
|
|
$request_url_path_parts = explode('/', self::getRequestPath());
|
|
|
|
$url_path_parts = explode('/', self::$prefix . $url_path);
|
|
$callback_args = [];
|
|
for ($i = 1; $i < count($url_path_parts); $i++) {
|
|
if ($url_path_parts[$i] === '')
|
|
continue;
|
|
if ($url_path_parts[$i][0] !== '$')
|
|
continue;
|
|
if (!isset($request_url_path_parts[$i]))
|
|
return;
|
|
|
|
if ($url_path_parts[$i][-1] !== '?'
|
|
&& $request_url_path_parts[$i] === ''
|
|
) return;
|
|
if ($url_path_parts[$i][-1] === '?'
|
|
&& $i !== (count($url_path_parts) - 1)
|
|
) throw new Exception(
|
|
'Only the last route parameter is allowed to be optional.'
|
|
);
|
|
|
|
if ($request_url_path_parts[$i] !== '')
|
|
array_push(
|
|
$callback_args,
|
|
htmlspecialchars($request_url_path_parts[$i])
|
|
);
|
|
|
|
$request_url_path_parts[$i] = $url_path_parts[$i];
|
|
}
|
|
if (
|
|
implode('/', $url_path_parts)
|
|
!== implode('/', $request_url_path_parts)
|
|
) return;
|
|
|
|
foreach (self::$groups as $middlewares) {
|
|
foreach ($middlewares as $middleware) {
|
|
$middleware();
|
|
}
|
|
}
|
|
$callback(...$callback_args);
|
|
die();
|
|
}
|
|
|
|
static function get(string $url_path, callable $callback)
|
|
{self::match('get', $url_path, $callback);}
|
|
static function post(string $url_path, callable $callback)
|
|
{self::match('post', $url_path, $callback);}
|
|
static function put(string $url_path, callable $callback)
|
|
{self::match('put', $url_path, $callback);}
|
|
static function patch(string $url_path, callable $callback)
|
|
{self::match('patch', $url_path, $callback);}
|
|
static function delete(string $url_path, callable $callback)
|
|
{self::match('delete', $url_path, $callback);}
|
|
static function options(string $url_path, callable $callback)
|
|
{self::match('options', $url_path, $callback);}
|
|
static function form(string $url_path, callable $callback)
|
|
{self::match('get|post', $url_path, $callback);}
|
|
static function any(string $url_path, callable $callback)
|
|
{self::match('get|post|put|patch|delete|options', $url_path, $callback);}
|
|
|
|
static function use(callable $middleware)
|
|
{
|
|
array_push(
|
|
self::$groups[array_key_last(self::$groups)],
|
|
$middleware
|
|
);
|
|
}
|
|
|
|
static function group(string $prefix = '', ?callable $callback = null)
|
|
{
|
|
if ($callback === null) {
|
|
throw new InvalidArgumentException('Argument $callback must be of type callable.');
|
|
}
|
|
if (!str_starts_with(
|
|
self::getRequestPath(),
|
|
self::$prefix . $prefix
|
|
)) return;
|
|
self::$prefix = self::$prefix . $prefix;
|
|
array_push(self::$groups, []);
|
|
$callback();
|
|
array_pop(self::$groups);
|
|
self::$prefix = rtrim(self::$prefix, $prefix);
|
|
}
|
|
} |