mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 20:48:40 +00:00
122 lines
3.1 KiB
PHP
122 lines
3.1 KiB
PHP
<?php
|
|
|
|
class Route {
|
|
protected static $routes = [];
|
|
protected static $patterns = [];
|
|
protected static $groupStack = [[]];
|
|
|
|
public static function match($methods, $uri, $action) {
|
|
return self::addRoute(array_map('strtoupper', (array)$methods), $uri, $action);
|
|
}
|
|
public static function any($uri, $action) {
|
|
return self::addRoute(['GET', 'HEAD', 'POST', 'PUT', 'PATCH', 'DELETE'], $uri, $action);
|
|
}
|
|
public static function get($uri, $action) {
|
|
return self::addRoute(['GET', 'HEAD'], $uri, $action);
|
|
}
|
|
public static function post($uri, $action) {
|
|
return self::addRoute('POST', $uri, $action);
|
|
}
|
|
public static function put($uri, $action) {
|
|
return self::addRoute('PUT', $uri, $action);
|
|
}
|
|
public static function patch($uri, $action) {
|
|
return self::addRoute('PATCH', $uri, $action);
|
|
}
|
|
public static function delete($uri, $action) {
|
|
return self::addRoute('DELETE', $uri, $action);
|
|
}
|
|
|
|
public static function group(array $attributes, Closure $callback) {
|
|
self::$groupStack[] = array_merge(self::getGroup(), $attributes);
|
|
call_user_func($callback);
|
|
array_pop(self::$groupStack);
|
|
}
|
|
public static function getGroup() {
|
|
return self::$groupStack[count(self::$groupStack) - 1];
|
|
}
|
|
|
|
public static function pattern($name, $pat) {
|
|
self::$patterns[$name] = $pat;
|
|
}
|
|
|
|
public static function dispatch() {
|
|
foreach (self::$routes as $route) {
|
|
if (self::checkRoute($route)) {
|
|
return $route;
|
|
}
|
|
}
|
|
UOJResponse::page404();
|
|
}
|
|
|
|
protected static function addRoute($methods, $uri, $action) {
|
|
if (is_string($methods)) {
|
|
$methods = [$methods];
|
|
}
|
|
|
|
$cur = [];
|
|
$cur['methods'] = $methods;
|
|
$cur['uri'] = rtrim($uri, '/');
|
|
$cur['action'] = $action;
|
|
$cur = array_merge(self::getGroup(), $cur);
|
|
self::$routes[] = $cur;
|
|
return $cur;
|
|
}
|
|
protected static function checkRoute($route) {
|
|
if (!in_array(UOJContext::requestMethod(), $route['methods'])) {
|
|
return false;
|
|
}
|
|
|
|
$rep_arr = [];
|
|
foreach (self::$patterns as $name => $pat) {
|
|
$rep_arr['{'.$name.'}'] = "(?P<$name>$pat)";
|
|
}
|
|
$rep_arr['/'] = '\/';
|
|
$rep_arr['.'] = '\.';
|
|
|
|
$matches = [];
|
|
if (isset($route['domain'])) {
|
|
$domain_pat = strtr($route['domain'], $rep_arr);
|
|
if (!preg_match('/^'.$domain_pat.'$/', UOJContext::requestDomain(), $domain_matches)) {
|
|
return false;
|
|
}
|
|
$matches = array_merge($matches, $domain_matches);
|
|
}
|
|
if (isset($route['port'])) {
|
|
$ports = explode('/', $route['port']);
|
|
if (!in_array(UOJContext::requestPort(), $ports)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$uri_pat = strtr($route['uri'], $rep_arr);
|
|
if (!preg_match('/^'.$uri_pat.'$/', rtrim(UOJContext::requestPath(), '/'), $uri_matches)) {
|
|
return false;
|
|
}
|
|
$matches = array_merge($matches, $uri_matches);
|
|
|
|
foreach ($matches as $key => $val) {
|
|
if (!is_numeric($key)) {
|
|
$_GET[$key] = $val;
|
|
}
|
|
}
|
|
|
|
if (isset($route['protocol'])) {
|
|
switch ($route['protocol']) {
|
|
case 'http':
|
|
if (UOJContext::isUsingHttps()) {
|
|
permanentlyRedirectToHTTP();
|
|
}
|
|
break;
|
|
case 'https':
|
|
if (!UOJContext::isUsingHttps()) {
|
|
permanentlyRedirectToHTTPS();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|