2022-06-15 11:52:36 +00:00
|
|
|
|
from telegram import Update
|
2022-06-26 06:17:43 +00:00
|
|
|
|
from telegram.ext import CallbackContext, CommandHandler
|
2022-06-15 11:52:36 +00:00
|
|
|
|
|
2022-06-26 06:17:43 +00:00
|
|
|
|
from manager import listener_plugins_class
|
2022-06-15 11:52:36 +00:00
|
|
|
|
from plugins.admin import bot_admins_only
|
|
|
|
|
from plugins.base import BasePlugins
|
2022-06-26 06:17:43 +00:00
|
|
|
|
from service import BaseService
|
2022-06-15 11:52:36 +00:00
|
|
|
|
|
|
|
|
|
|
2022-06-26 06:17:43 +00:00
|
|
|
|
@listener_plugins_class()
|
2022-06-15 11:52:36 +00:00
|
|
|
|
class Wiki(BasePlugins):
|
|
|
|
|
"""
|
|
|
|
|
有关WIKI
|
|
|
|
|
"""
|
2022-06-26 06:17:43 +00:00
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def create_handlers(service: BaseService) -> list:
|
|
|
|
|
wiki = Wiki(service)
|
|
|
|
|
return [
|
|
|
|
|
CommandHandler("refresh_wiki", wiki.refresh_wiki, block=False),
|
|
|
|
|
]
|
|
|
|
|
|
2022-06-15 11:52:36 +00:00
|
|
|
|
@bot_admins_only
|
|
|
|
|
async def refresh_wiki(self, update: Update, _: CallbackContext):
|
|
|
|
|
message = update.message
|
|
|
|
|
await message.reply_text("正在刷新Wiki缓存,请稍等")
|
|
|
|
|
await self.service.wiki.refresh_wiki()
|
|
|
|
|
await message.reply_text("刷新Wiki缓存成功")
|