- Remove redundant code for checking ignoreLog property - Consolidate logic to check ignoreLog property in a single location - Improve readability and maintainability of the code Signed-off-by: wolfcode <37436228+wolf-leo@users.noreply.github.com>
97 lines
3.8 KiB
PHP
97 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace app\admin\middleware;
|
|
|
|
use app\admin\service\annotation\ControllerAnnotation;
|
|
use app\admin\service\annotation\NodeAnnotation;
|
|
use app\admin\service\SystemLogService;
|
|
use app\common\traits\JumpTrait;
|
|
use app\Request;
|
|
use ReflectionClass;
|
|
use Closure;
|
|
use Doctrine\Common\Annotations\AnnotationReader;
|
|
use Doctrine\Common\Annotations\DocParser;
|
|
use ReflectionException;
|
|
|
|
class SystemLog
|
|
{
|
|
use JumpTrait;
|
|
|
|
/**
|
|
* 敏感信息字段,日志记录时需要加密
|
|
* @var array
|
|
*/
|
|
protected array $sensitiveParams = [
|
|
'password',
|
|
'password_again',
|
|
'phone',
|
|
'mobile',
|
|
];
|
|
|
|
/**
|
|
* @throws ReflectionException
|
|
*/
|
|
public function handle(Request $request, Closure $next)
|
|
{
|
|
$response = $next($request);
|
|
$params = $request->param();
|
|
if (isset($params['s'])) unset($params['s']);
|
|
foreach ($params as $key => $val) {
|
|
in_array($key, $this->sensitiveParams) && $params[$key] = "***********";
|
|
}
|
|
$method = strtolower($request->method());
|
|
$url = $request->url();
|
|
|
|
if (env('APP_DEBUG')) {
|
|
trace(['url' => $url, 'method' => $method, 'params' => $params,], 'requestDebugInfo');
|
|
}
|
|
if ($request->isAjax()) {
|
|
if (in_array($method, ['post', 'put', 'delete'])) {
|
|
|
|
$title = '';
|
|
try {
|
|
$pathInfo = $request->pathinfo();
|
|
$pathInfoExp = explode('/', $pathInfo);
|
|
$_action = end($pathInfoExp) ?? '';
|
|
$pathInfoExp = explode('.', $pathInfoExp[0] ?? '');
|
|
$_name = $pathInfoExp[0] ?? '';
|
|
$_controller = ucfirst($pathInfoExp[1] ?? '');
|
|
if ($_name && $_controller && $_action) {
|
|
$className = "app\admin\controller\\{$_name}\\{$_controller}";
|
|
$reflectionClass = new \ReflectionClass($className);
|
|
$properties = $reflectionClass->getDefaultProperties();
|
|
$ignoreLog = $properties['ignoreLog'] ?? [];
|
|
if (in_array($_action, $ignoreLog)) return $response;
|
|
$parser = new DocParser();
|
|
$parser->setIgnoreNotImportedAnnotations(true);
|
|
$reader = new AnnotationReader($parser);
|
|
$controllerAnnotation = $reader->getClassAnnotation($reflectionClass, ControllerAnnotation::class);
|
|
$reflectionAction = $reflectionClass->getMethod($_action);
|
|
$nodeAnnotation = $reader->getMethodAnnotation($reflectionAction, NodeAnnotation::class);
|
|
$title = $controllerAnnotation->title . ' - ' . $nodeAnnotation->title;
|
|
}
|
|
}catch (\Throwable $exception) {
|
|
}
|
|
|
|
$ip = $request->ip();
|
|
// 限制记录的响应内容,避免过大
|
|
$_response = json_encode($response->getData(), JSON_UNESCAPED_UNICODE);
|
|
$_response = mb_substr($_response, 0, 3000, 'utf-8');
|
|
|
|
$data = [
|
|
'admin_id' => session('admin.id'),
|
|
'title' => $title,
|
|
'url' => $url,
|
|
'method' => $method,
|
|
'ip' => $ip,
|
|
'content' => json_encode($params, JSON_UNESCAPED_UNICODE),
|
|
'response' => $_response,
|
|
'useragent' => $request->server('HTTP_USER_AGENT'),
|
|
'create_time' => time(),
|
|
];
|
|
SystemLogService::instance()->save($data);
|
|
}
|
|
}
|
|
return $response;
|
|
}
|
|
} |