78 lines
2.4 KiB
PHP
78 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
namespace App\System\Controller\Monitor;
|
|
|
|
use App\System\Service\CacheMonitorService;
|
|
use Hyperf\Di\Annotation\Inject;
|
|
use Hyperf\HttpServer\Annotation\Controller;
|
|
use Hyperf\HttpServer\Annotation\DeleteMapping;
|
|
use Hyperf\HttpServer\Annotation\GetMapping;
|
|
use Hyperf\HttpServer\Annotation\PostMapping;
|
|
use Builder\Annotation\Auth;
|
|
use Builder\Annotation\OperationLog;
|
|
use Builder\Annotation\Permission;
|
|
use Builder\BaseController;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
/**
|
|
* 缓存监控
|
|
* Class CacheMonitorController
|
|
* @package App\System\Controller\Monitor
|
|
*/
|
|
#[Controller(prefix: "system/cache"), Auth]
|
|
class CacheMonitorController extends BaseController
|
|
{
|
|
#[Inject]
|
|
protected CacheMonitorService $service;
|
|
|
|
/**
|
|
* 获取Redis服务器信息
|
|
* @return ResponseInterface
|
|
* @throws \Psr\Container\ContainerExceptionInterface
|
|
* @throws \Psr\Container\NotFoundExceptionInterface
|
|
*/
|
|
#[GetMapping("monitor"), Permission("system:cache, system:cache:monitor")]
|
|
public function getCacheInfo(): ResponseInterface
|
|
{
|
|
return $this->success($this->service->getCacheServerInfo());
|
|
}
|
|
|
|
/**
|
|
* 查看key内容
|
|
* @return ResponseInterface
|
|
* @throws \Psr\Container\ContainerExceptionInterface
|
|
* @throws \Psr\Container\NotFoundExceptionInterface
|
|
*/
|
|
#[PostMapping("view")]
|
|
public function view(): ResponseInterface
|
|
{
|
|
return $this->success(['content' => $this->service->view($this->request->input('key'))]);
|
|
}
|
|
|
|
/**
|
|
* 删除一个缓存
|
|
* @return ResponseInterface
|
|
* @throws \Psr\Container\ContainerExceptionInterface
|
|
* @throws \Psr\Container\NotFoundExceptionInterface
|
|
*/
|
|
#[DeleteMapping("delete"), Permission("system:cache:delete"), OperationLog]
|
|
public function delete(): ResponseInterface
|
|
{
|
|
return $this->service->delete($this->request->input('key', null))
|
|
? $this->success()
|
|
: $this->error();
|
|
}
|
|
|
|
/**
|
|
* 清空所有缓存
|
|
* @return ResponseInterface
|
|
* @throws \Psr\Container\ContainerExceptionInterface
|
|
* @throws \Psr\Container\NotFoundExceptionInterface
|
|
*/
|
|
#[DeleteMapping("clear"), Permission("system:cache:clear"), OperationLog]
|
|
public function clear(): ResponseInterface
|
|
{
|
|
return $this->service->clear() ? $this->success() : $this->error();
|
|
}
|
|
} |