97 lines
3.7 KiB
PHP
97 lines
3.7 KiB
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
declare(strict_types=1);
|
|||
|
|
|
|||
|
|
namespace App\Controller\Api\V1;
|
|||
|
|
|
|||
|
|
use App\Controller\AbstractController;
|
|||
|
|
use App\Middleware\AuthMiddleware;
|
|||
|
|
use App\Middleware\PermissionMiddleware;
|
|||
|
|
use App\Service\MqStatusService;
|
|||
|
|
use Hyperf\HttpServer\Annotation\Controller;
|
|||
|
|
use Hyperf\HttpServer\Annotation\Middleware;
|
|||
|
|
use Hyperf\HttpServer\Annotation\RequestMapping;
|
|||
|
|
use OpenApi\Attributes as OA;
|
|||
|
|
use Psr\Http\Message\ResponseInterface;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 消息队列状态监控接口
|
|||
|
|
*
|
|||
|
|
* 仅 admin 角色可访问,返回 RabbitMQ 队列运行状态
|
|||
|
|
*/
|
|||
|
|
#[OA\Tag(name: 'MQ Status', description: '消息队列状态监控')]
|
|||
|
|
#[Controller(prefix: "/api/v1/mq")]
|
|||
|
|
#[Middleware(AuthMiddleware::class)]
|
|||
|
|
#[Middleware(PermissionMiddleware::class)]
|
|||
|
|
class MqStatusController extends AbstractController
|
|||
|
|
{
|
|||
|
|
public function __construct(
|
|||
|
|
protected readonly MqStatusService $mqStatusService,
|
|||
|
|
) {}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 获取消息队列状态
|
|||
|
|
*/
|
|||
|
|
#[OA\Get(
|
|||
|
|
path: '/api/v1/mq/status',
|
|||
|
|
summary: '获取消息队列状态',
|
|||
|
|
description: '查询 RabbitMQ 各队列的消息数、消费者数和运行状态。支持按队列类型筛选。仅 admin 角色可访问。',
|
|||
|
|
security: [['bearerAuth' => []]],
|
|||
|
|
tags: ['MQ Status'],
|
|||
|
|
parameters: [
|
|||
|
|
new OA\Parameter(
|
|||
|
|
name: 'queue',
|
|||
|
|
in: 'query',
|
|||
|
|
required: false,
|
|||
|
|
description: '队列类型筛选(orders/products/refunds/inventory)',
|
|||
|
|
schema: new OA\Schema(type: 'string', enum: ['orders', 'products', 'refunds', 'inventory'])
|
|||
|
|
),
|
|||
|
|
],
|
|||
|
|
responses: [
|
|||
|
|
new OA\Response(
|
|||
|
|
response: 200,
|
|||
|
|
description: '获取成功',
|
|||
|
|
content: new OA\JsonContent(properties: [
|
|||
|
|
new OA\Property(property: 'code', type: 'integer', example: 0),
|
|||
|
|
new OA\Property(property: 'message', type: 'string', example: '获取成功'),
|
|||
|
|
new OA\Property(property: 'data', ref: '#/components/schemas/MqQueueStatus'),
|
|||
|
|
])
|
|||
|
|
),
|
|||
|
|
new OA\Response(response: 400, description: '无效的队列类型参数', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')),
|
|||
|
|
new OA\Response(response: 401, description: '未认证', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')),
|
|||
|
|
new OA\Response(response: 403, description: '无权限', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')),
|
|||
|
|
new OA\Response(response: 500, description: 'RabbitMQ 连接异常', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')),
|
|||
|
|
]
|
|||
|
|
)]
|
|||
|
|
#[RequestMapping(path: "status", methods: "GET")]
|
|||
|
|
public function status(): ResponseInterface|array
|
|||
|
|
{
|
|||
|
|
$queue_type = $this->request->input('queue');
|
|||
|
|
|
|||
|
|
// 校验队列类型参数
|
|||
|
|
if ($queue_type !== null && !in_array($queue_type, $this->mqStatusService->getValidQueueTypes(), true)) {
|
|||
|
|
return $this->response->json([
|
|||
|
|
'code' => 400,
|
|||
|
|
'message' => "无效的队列类型: {$queue_type},可选值: " . implode(', ', $this->mqStatusService->getValidQueueTypes()),
|
|||
|
|
'data' => null,
|
|||
|
|
])->withStatus(400);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
try {
|
|||
|
|
$data = $this->mqStatusService->getStatus($queue_type);
|
|||
|
|
|
|||
|
|
return [
|
|||
|
|
'code' => 0,
|
|||
|
|
'message' => '获取成功',
|
|||
|
|
'data' => $data,
|
|||
|
|
];
|
|||
|
|
} catch (\Throwable $e) {
|
|||
|
|
return $this->response->json([
|
|||
|
|
'code' => 500,
|
|||
|
|
'message' => 'RabbitMQ 连接异常: ' . $e->getMessage(),
|
|||
|
|
'data' => null,
|
|||
|
|
])->withStatus(500);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|