You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
57 lines
1.5 KiB
9 months ago
|
<?php
|
||
|
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Author: CRMEB Team <admin@crmeb.com>
|
||
|
// +----------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
namespace app\common\middleware;
|
||
|
|
||
|
|
||
|
use app\Request;
|
||
|
use crmeb\interfaces\MiddlewareInterface;
|
||
|
use think\Response;
|
||
|
|
||
|
abstract class BaseMiddleware implements MiddlewareInterface
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @var Request
|
||
|
*/
|
||
|
protected $request;
|
||
|
|
||
|
protected $args = [];
|
||
|
|
||
|
abstract public function before(Request $request);
|
||
|
|
||
|
/**
|
||
|
* @param int $num
|
||
|
* @param mixed $default
|
||
|
* @return mixed
|
||
|
* @author xaboy
|
||
|
* @day 2020-04-10
|
||
|
*/
|
||
|
public function getArg($num, $default = null)
|
||
|
{
|
||
|
return isset($this->args[$num]) ? $this->args[$num] : $default;
|
||
|
}
|
||
|
|
||
|
final public function handle(Request $request, \Closure $next, ...$args): Response
|
||
|
{
|
||
|
$this->args = $args;
|
||
|
$this->request = $request;
|
||
|
$this->before($request);
|
||
|
$response = $next($request);
|
||
|
$this->after($response);
|
||
|
return $response;
|
||
|
}
|
||
|
|
||
|
abstract public function after(Response $response);
|
||
|
}
|