Route/Route.php
2024-11-13 20:28:28 +00:00

101 lines
3.3 KiB
PHP

<?php
namespace WillySoft;
use Exception;
abstract class Route
{
static $prefix = '';
static $groups = [[]];
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('/', urldecode(
strtok($_SERVER['REQUEST_URI'], '?')
));
$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)
{
if (!str_starts_with(
$_SERVER['REQUEST_URI'],
self::$prefix . $prefix
)) return;
self::$prefix = self::$prefix . $prefix;
array_push(self::$groups, []);
$callback();
array_pop(self::$groups);
self::$prefix = rtrim(self::$prefix, $prefix);
}
}