2024-01-28 00:16:42 +08:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import typing
|
|
|
|
|
|
|
|
import pydantic
|
|
|
|
import mirai
|
|
|
|
|
|
|
|
from ..core import app, entities as core_entities
|
|
|
|
from . import errors, operator
|
|
|
|
|
|
|
|
|
|
|
|
class CommandReturn(pydantic.BaseModel):
|
|
|
|
|
|
|
|
text: typing.Optional[str]
|
|
|
|
"""文本
|
|
|
|
"""
|
|
|
|
|
|
|
|
image: typing.Optional[mirai.Image]
|
|
|
|
|
|
|
|
error: typing.Optional[errors.CommandError]= None
|
|
|
|
|
|
|
|
class Config:
|
|
|
|
arbitrary_types_allowed = True
|
|
|
|
|
|
|
|
|
|
|
|
class ExecuteContext(pydantic.BaseModel):
|
|
|
|
|
|
|
|
query: core_entities.Query
|
|
|
|
|
2024-01-29 21:22:27 +08:00
|
|
|
session: core_entities.Session
|
2024-01-28 00:16:42 +08:00
|
|
|
|
|
|
|
command_text: str
|
|
|
|
|
|
|
|
command: str
|
|
|
|
|
|
|
|
crt_command: str
|
|
|
|
|
|
|
|
params: list[str]
|
|
|
|
|
|
|
|
crt_params: list[str]
|
|
|
|
|
|
|
|
privilege: int
|