import { OneBotAction } from '@/napcat-onebot/action/OneBotAction'; import { ActionName } from '@/napcat-onebot/action/router'; import { Static, Type } from '@sinclair/typebox'; import { GoCQHTTPActionsExamples } from '../example/GoCQHTTPActionsExamples'; export const GoCQHTTPCheckUrlSafelyPayloadSchema = Type.Object({ url: Type.String({ description: '要检查的 URL' }), }); export type GoCQHTTPCheckUrlSafelyPayload = Static; export const GoCQHTTPCheckUrlSafelyReturnSchema = Type.Object({ level: Type.Number({ description: '安全等级 (1: 安全, 2: 未知, 3: 危险)' }), }); export type GoCQHTTPCheckUrlSafelyReturn = Static; export class GoCQHTTPCheckUrlSafely extends OneBotAction { override actionName = ActionName.GoCQHTTP_CheckUrlSafely; override payloadSchema = GoCQHTTPCheckUrlSafelyPayloadSchema; override returnSchema = GoCQHTTPCheckUrlSafelyReturnSchema; override actionSummary = '检查URL安全性'; override actionDescription = '检查指定URL的安全等级'; override actionTags = ['Go-CQHTTP']; override payloadExample = GoCQHTTPActionsExamples.GoCQHTTPCheckUrlSafely.payload; override returnExample = GoCQHTTPActionsExamples.GoCQHTTPCheckUrlSafely.response; async _handle () { return { level: 1 }; } }