PaiGram/plugins
2022-06-22 21:33:07 +08:00
..
admin.py 修改单词拼写错误 2022-06-09 23:35:32 +08:00
artifact_rate.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
auth.py 移动文件 model/random.pyutils 目录 2022-06-19 17:54:30 +08:00
base.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
cookies.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
daily_note.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
errorhandler.py 修改 conversation_error_handler 回复的错误信息 2022-06-19 23:15:43 +08:00
gacha.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
help.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
inline.py Remove unused imports 2022-06-18 02:34:12 +08:00
ledger.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
post.py 修改推送文章模块的键盘 2022-06-19 13:45:48 +08:00
quiz.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
README.md 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
sign.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
start.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
strategy.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
uid.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
weapon.py 重写相关洪水防御代码 2022-06-22 21:33:07 +08:00
wiki.py 应用 wiki 模块到服务和插件中 2022-06-15 19:52:36 +08:00

plugins 目录

说明

该目录仅限处理交互层和业务层数据交换的任务

如有任何新业务接口,请转到 service 目录添加

如有任何API请求接口请转到 model 目录添加

基础代码

from telegram import Update
from telegram.ext import CallbackContext

from plugins.base import BasePlugins, restricts
from plugins.errorhandler import conversation_error_handler

class Example(BasePlugins):

    @staticmethod
    def create_conversation_handler(service: BaseService):
        example = Example(service)
        return CommandHandler('example', example.command_start)

    @conversation_error_handler
    @restricts()
    async def command_start(self, update: Update, context: CallbackContext) -> None:
        await message.reply_text("Example")

注意

plugins 模块下的类需要继承 BasePlugins

plugins 模块下的类必须提供 create_conversation_handler 静态函数作为构建相应会话过程给 handle.py

在函数注册为命令处理过程(如 CommandHandler )需要添加 conversation_error_handler 修饰器作为错误统一处理

必要的函数必须捕获异常后通知用户或者直接抛出异常

入口函数必须使用 @restricts() 修饰器 防止洪水攻击

注意:@restricts() 修饰器带参,必须带括号,否则会出现调用错误