2023-03-21 20:41:02 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace WillySoft;
|
|
|
|
|
|
|
|
abstract class Route
|
|
|
|
{
|
2023-03-21 20:51:12 +00:00
|
|
|
static $prefix = '';
|
|
|
|
static $groups = [[]];
|
2023-03-21 20:41:02 +00:00
|
|
|
|
2023-03-21 20:51:12 +00:00
|
|
|
static function match(string $methods, string $uri, callable $callback)
|
|
|
|
{
|
|
|
|
if (!in_array(
|
|
|
|
$_SERVER['REQUEST_METHOD'],
|
|
|
|
array_map(strtoupper(...), explode('|', $methods))
|
|
|
|
)) return;
|
2023-03-21 20:41:02 +00:00
|
|
|
|
2023-03-21 20:51:12 +00:00
|
|
|
$request_uri_parts = explode('/', urldecode(
|
|
|
|
strtok($_SERVER['REQUEST_URI'], '?')
|
|
|
|
));
|
|
|
|
$uri_parts = explode('/', self::$prefix . $uri);
|
|
|
|
$callback_args = [];
|
|
|
|
for ($i = 0; $i < count($uri_parts); $i++) {
|
|
|
|
if ($uri_parts[$i] === '')
|
|
|
|
continue;
|
|
|
|
if ($uri_parts[$i][0] !== '$')
|
|
|
|
continue;
|
|
|
|
if (!isset($request_uri_parts[$i]))
|
|
|
|
return;
|
|
|
|
if (
|
|
|
|
$uri_parts[$i][-1] !== '?'
|
|
|
|
&& $request_uri_parts[$i] === ''
|
|
|
|
) return;
|
|
|
|
if ($request_uri_parts[$i] !== '')
|
|
|
|
array_push($callback_args, $request_uri_parts[$i]);
|
|
|
|
$request_uri_parts[$i] = $uri_parts[$i];
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
implode('/', $uri_parts)
|
|
|
|
!== implode('/', $request_uri_parts)
|
|
|
|
) return;
|
2023-03-21 20:41:02 +00:00
|
|
|
|
2023-03-21 20:51:12 +00:00
|
|
|
foreach (self::$groups as $middlewares) {
|
|
|
|
foreach ($middlewares as $middleware) {
|
|
|
|
$middleware();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$callback(...$callback_args);
|
|
|
|
die();
|
|
|
|
}
|
2023-03-21 20:41:02 +00:00
|
|
|
|
2023-03-21 20:51:12 +00:00
|
|
|
static function get(string $uri, callable $callback)
|
|
|
|
{self::match('get', $uri, $callback);}
|
|
|
|
static function post(string $uri, callable $callback)
|
|
|
|
{self::match('post', $uri, $callback);}
|
|
|
|
static function put(string $uri, callable $callback)
|
|
|
|
{self::match('put', $uri, $callback);}
|
|
|
|
static function patch(string $uri, callable $callback)
|
|
|
|
{self::match('patch', $uri, $callback);}
|
|
|
|
static function delete(string $uri, callable $callback)
|
|
|
|
{self::match('delete', $uri, $callback);}
|
|
|
|
static function options(string $uri, callable $callback)
|
|
|
|
{self::match('options', $uri, $callback);}
|
|
|
|
static function form(string $uri, callable $callback)
|
|
|
|
{self::match('get|post', $uri, $callback);}
|
|
|
|
static function any(string $uri, callable $callback)
|
|
|
|
{self::match('get|post|put|patch|delete|options', $uri, $callback);}
|
2023-03-21 20:41:02 +00:00
|
|
|
|
2023-03-21 20:51:12 +00:00
|
|
|
static function use(callable $middleware)
|
|
|
|
{
|
|
|
|
array_push(
|
|
|
|
self::$groups[array_key_last(self::$groups)],
|
|
|
|
$middleware
|
|
|
|
);
|
|
|
|
}
|
2023-03-21 20:41:02 +00:00
|
|
|
|
2023-03-21 20:55:36 +00:00
|
|
|
static function group(string $prefix, callable $callback)
|
2023-03-21 20:51:12 +00:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
2023-03-21 20:41:02 +00:00
|
|
|
}
|