nonebot2/none/notice_request.py

110 lines
3.0 KiB
Python
Raw Normal View History

2018-10-15 17:03:50 +00:00
from typing import Optional, Callable, Union
2018-06-27 14:50:01 +00:00
from aiocqhttp.bus import EventBus
2018-07-04 01:28:31 +00:00
from . import NoneBot
2018-10-15 17:03:50 +00:00
from .exceptions import CQHttpError
2018-06-27 14:50:01 +00:00
from .log import logger
2018-07-02 08:54:29 +00:00
from .session import BaseSession
2018-10-15 17:03:50 +00:00
from .typing import Context_T
2018-06-27 14:50:01 +00:00
_bus = EventBus()
def _make_event_deco(post_type: str) -> Callable:
def deco_deco(arg: Optional[Union[str, Callable]] = None,
*events: str) -> Callable:
def deco(func: Callable) -> Callable:
if isinstance(arg, str):
for e in [arg] + list(events):
_bus.subscribe(f'{post_type}.{e}', func)
else:
_bus.subscribe(post_type, func)
return func
if isinstance(arg, Callable):
return deco(arg)
return deco
return deco_deco
on_notice = _make_event_deco('notice')
on_request = _make_event_deco('request')
class NoticeSession(BaseSession):
__slots__ = ()
2018-10-15 17:03:50 +00:00
def __init__(self, bot: NoneBot, ctx: Context_T):
2018-06-27 14:50:01 +00:00
super().__init__(bot, ctx)
class RequestSession(BaseSession):
__slots__ = ()
2018-10-15 17:03:50 +00:00
def __init__(self, bot: NoneBot, ctx: Context_T):
2018-06-27 14:50:01 +00:00
super().__init__(bot, ctx)
2018-08-22 15:00:22 +00:00
async def approve(self, remark: str = '') -> None:
"""
Approve the request.
:param remark: remark of friend (only works in friend request)
"""
try:
await self.bot.call_action(
action='.handle_quick_operation_async',
self_id=self.ctx.get('self_id'),
context=self.ctx,
operation={'approve': True, 'remark': remark}
)
except CQHttpError:
pass
2018-08-22 15:00:22 +00:00
async def reject(self, reason: str = '') -> None:
"""
Reject the request.
:param reason: reason to reject (only works in group request)
"""
try:
await self.bot.call_action(
action='.handle_quick_operation_async',
self_id=self.ctx.get('self_id'),
context=self.ctx,
operation={'approve': False, 'reason': reason}
)
except CQHttpError:
pass
2018-06-27 14:50:01 +00:00
2018-10-15 17:03:50 +00:00
async def handle_notice_or_request(bot: NoneBot, ctx: Context_T) -> None:
2018-06-27 14:50:01 +00:00
post_type = ctx['post_type'] # "notice" or "request"
detail_type = ctx[f'{post_type}_type']
event = f'{post_type}.{detail_type}'
if ctx.get('sub_type'):
event += f'.{ctx["sub_type"]}'
if post_type == 'notice':
2018-07-20 16:46:34 +00:00
_log_notice(ctx)
2018-06-27 14:50:01 +00:00
session = NoticeSession(bot, ctx)
2018-07-01 12:01:05 +00:00
else: # must be 'request'
2018-07-20 16:46:34 +00:00
_log_request(ctx)
2018-06-27 14:50:01 +00:00
session = RequestSession(bot, ctx)
logger.debug(f'Emitting event: {event}')
2018-12-25 12:40:36 +00:00
try:
await _bus.emit(event, session)
except Exception as e:
logger.error(f'An exception occurred while handling event {event}:')
logger.exception(e)
2018-07-20 16:46:34 +00:00
2018-10-15 17:03:50 +00:00
def _log_notice(ctx: Context_T) -> None:
2018-07-20 16:46:34 +00:00
logger.info(f'Notice: {ctx}')
2018-10-15 17:03:50 +00:00
def _log_request(ctx: Context_T) -> None:
2018-07-20 16:46:34 +00:00
logger.info(f'Request: {ctx}')