mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
114 lines
2.9 KiB
PHP
114 lines
2.9 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Slince <taosikai@yeah.net>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace think;
|
|
|
|
class Middleware
|
|
{
|
|
protected $queue = [];
|
|
|
|
public function import(array $middlewares = [])
|
|
{
|
|
foreach ($middlewares as $middleware) {
|
|
$this->add($middleware);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function add($middleware)
|
|
{
|
|
if (is_null($middleware)) {
|
|
return;
|
|
}
|
|
|
|
$middleware = $this->buildMiddleware($middleware);
|
|
|
|
$this->queue[] = $middleware;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function unshift($middleware)
|
|
{
|
|
if (is_null($middleware)) {
|
|
return;
|
|
}
|
|
|
|
$middleware = $this->buildMiddleware($middleware);
|
|
|
|
array_unshift($this->queue, $middleware);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function all()
|
|
{
|
|
return $this->queue;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function dispatch(Request $request)
|
|
{
|
|
return call_user_func($this->resolve(), $request);
|
|
}
|
|
|
|
protected function buildMiddleware($middleware)
|
|
{
|
|
if (is_array($middleware)) {
|
|
list($middleware, $param) = $middleware;
|
|
}
|
|
|
|
if ($middleware instanceof \Closure) {
|
|
return [$middleware, null];
|
|
}
|
|
|
|
if (!is_string($middleware)) {
|
|
throw new \InvalidArgumentException('The middleware is invalid');
|
|
}
|
|
|
|
$class = false === strpos($middleware, '\\') ? Container::get('app')->getNamespace() . '\\http\\middleware\\' . $middleware : $middleware;
|
|
|
|
if (strpos($class, ':')) {
|
|
list($class, $param) = explode(':', $class, 2);
|
|
}
|
|
|
|
return [[Container::get($class), 'handle'], isset($param) ? $param : null];
|
|
}
|
|
|
|
protected function resolve()
|
|
{
|
|
return function (Request $request) {
|
|
$middleware = array_shift($this->queue);
|
|
|
|
if (null !== $middleware) {
|
|
list($call, $param) = $middleware;
|
|
|
|
$response = call_user_func_array($call, [$request, $this->resolve(), $param]);
|
|
|
|
if (!$response instanceof Response) {
|
|
throw new \LogicException('The middleware must return Response instance');
|
|
}
|
|
|
|
return $response;
|
|
} else {
|
|
throw new \InvalidArgumentException('The queue was exhausted, with no response returned');
|
|
}
|
|
};
|
|
}
|
|
|
|
}
|