From c3cddcf2ce87631824d31739f1cc9d2c52efacc8 Mon Sep 17 00:00:00 2001 From: Kyomotoi <0w0@imki.moe> Date: Tue, 9 May 2023 17:04:55 +0800 Subject: =?UTF-8?q?=E2=99=BB=EF=B8=8F=20=E9=87=8D=E6=9E=84=E4=BB=A3?= =?UTF-8?q?=E7=A0=81,=20=E8=BF=81=E7=A7=BB=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/plugins/essential/__init__.py | 71 +------------------------------------- 1 file changed, 1 insertion(+), 70 deletions(-) (limited to 'ATRI/plugins/essential/__init__.py') diff --git a/ATRI/plugins/essential/__init__.py b/ATRI/plugins/essential/__init__.py index 883c191..096eb54 100644 --- a/ATRI/plugins/essential/__init__.py +++ b/ATRI/plugins/essential/__init__.py @@ -22,11 +22,10 @@ from ATRI import conf from ATRI.log import log from ATRI.service import Service from ATRI.utils.apscheduler import scheduler -from ATRI.utils import FileDealer, MessageChecker +from ATRI.utils import MessageChecker from ATRI.permission import MASTER from ATRI.message import MessageBuilder -from .models import RequestInfo from .data_source import recall_msg_dealer @@ -41,74 +40,6 @@ __TEMP_DIR.mkdir(parents=True, exist_ok=True) plugin = Service("基础部件").document("对基础请求进行处理") -friend_add_event = plugin.on_request("好友申请", "好友申请检测") - - -@friend_add_event.handle() -async def _(event: FriendRequestEvent): - path = __ESSENTIAL_DIR / "friend_add.json" - file = FileDealer(path) - if not path.is_file(): - await file.write_json(dict()) - data = dict() - - apply_code = event.flag - user_id = event.get_user_id() - apply_comment = event.comment - now_time = str(datetime.now().timestamp()) - - data = file.json() - data[apply_code] = RequestInfo( - user_id=user_id, - comment=apply_comment, - time=now_time, - ).dict() - await file.write_json(data) - - result = ( - MessageBuilder("咱收到一条好友请求!") - .text(f"请求人: {user_id}") - .text(f"申请信息: {apply_comment}") - .text(f"申请码: {apply_code}") - .text("Tip: 好友申请列表") - ) - await plugin.send_to_master(result) - - -group_invite_request = plugin.on_request("应邀入群", "应邀入群检测") - - -@group_invite_request.handle() -async def _(event: GroupRequestEvent): - path = __ESSENTIAL_DIR / "group_invite.json" - file = FileDealer(path) - if not path.is_file(): - await file.write_json(dict()) - data = dict() - - apply_code = event.flag - user_id = event.get_user_id() - apply_comment = event.comment - now_time = str(datetime.now().timestamp()) - - data = file.json() - data[apply_code] = RequestInfo( - user_id=user_id, - comment=apply_comment, - time=now_time, - ).dict() - await file.write_json(data) - - result = ( - MessageBuilder("咱收到一条应邀入群请求!") - .text(f"申请人: {user_id}") - .text(f"申请信息: {apply_comment}") - .text(f"申请码: {apply_code}") - .text("Tip: 应邀入群列表") - ) - await plugin.send_to_master(result) - - group_member_event = plugin.on_notice("群成员变动", "群成员变动检测") -- cgit v1.2.3