|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
-
-
-
- import os
- import re
- import time
- from common.expired_dict import ExpiredDict
- from channel.channel import Channel
- from bridge.reply import *
- from bridge.context import *
- from config import conf
- from common.log import logger
- from plugins import *
- try:
- from voice.audio_convert import any_to_wav
- except Exception as e:
- pass
-
-
- class ChatChannel(Channel):
- name = None
- user_id = None
- def __init__(self):
- pass
-
-
- def _compose_context(self, ctype: ContextType, content, **kwargs):
- context = Context(ctype, content)
- context.kwargs = kwargs
-
-
-
- if 'origin_ctype' not in context:
- context['origin_ctype'] = ctype
-
- first_in = 'receiver' not in context
-
- if first_in:
- config = conf()
- cmsg = context['msg']
- if cmsg.from_user_id == self.user_id:
- logger.debug("[WX]self message skipped")
- return None
- if context["isgroup"]:
- group_name = cmsg.other_user_nickname
- group_id = cmsg.other_user_id
-
- group_name_white_list = config.get('group_name_white_list', [])
- group_name_keyword_white_list = config.get('group_name_keyword_white_list', [])
- if any([group_name in group_name_white_list, 'ALL_GROUP' in group_name_white_list, check_contain(group_name, group_name_keyword_white_list)]):
- group_chat_in_one_session = conf().get('group_chat_in_one_session', [])
- session_id = cmsg.actual_user_id
- if any([group_name in group_chat_in_one_session, 'ALL_GROUP' in group_chat_in_one_session]):
- session_id = group_id
- else:
- return None
- context['session_id'] = session_id
- context['receiver'] = group_id
- else:
- context['session_id'] = cmsg.other_user_id
- context['receiver'] = cmsg.other_user_id
-
-
- if ctype == ContextType.TEXT:
- if first_in and "」\n- - - - - - -" in content:
- logger.debug("[WX]reference query skipped")
- return None
-
- if context["isgroup"]:
-
- match_prefix = check_prefix(content, conf().get('group_chat_prefix'))
- match_contain = check_contain(content, conf().get('group_chat_keyword'))
- if match_prefix is not None or match_contain is not None:
- if match_prefix:
- content = content.replace(match_prefix, '', 1).strip()
- elif context['msg'].is_at and not conf().get("group_at_off", False):
- logger.info("[WX]receive group at, continue")
- pattern = f'@{self.name}(\u2005|\u0020)'
- content = re.sub(pattern, r'', content)
- elif context["origin_ctype"] == ContextType.VOICE:
- logger.info("[WX]receive group voice, checkprefix didn't match")
- return None
- else:
- return None
- else:
- match_prefix = check_prefix(content, conf().get('single_chat_prefix'))
- if match_prefix is not None:
- content = content.replace(match_prefix, '', 1).strip()
- elif context["origin_ctype"] == ContextType.VOICE:
- pass
- else:
- return None
-
- img_match_prefix = check_prefix(content, conf().get('image_create_prefix'))
- if img_match_prefix:
- content = content.replace(img_match_prefix, '', 1).strip()
- context.type = ContextType.IMAGE_CREATE
- else:
- context.type = ContextType.TEXT
- context.content = content
- elif context.type == ContextType.VOICE:
- if 'desire_rtype' not in context and conf().get('voice_reply_voice'):
- context['desire_rtype'] = ReplyType.VOICE
-
-
- return context
-
-
- def _handle(self, context: Context):
- if context is None or not context.content:
- return
- logger.debug('[WX] ready to handle context: {}'.format(context))
-
- reply = self._generate_reply(context)
-
- logger.debug('[WX] ready to decorate reply: {}'.format(reply))
-
- reply = self._decorate_reply(context, reply)
-
-
- self._send_reply(context, reply)
-
- def _generate_reply(self, context: Context, reply: Reply = Reply()) -> Reply:
- e_context = PluginManager().emit_event(EventContext(Event.ON_HANDLE_CONTEXT, {
- 'channel': self, 'context': context, 'reply': reply}))
- reply = e_context['reply']
- if not e_context.is_pass():
- logger.debug('[WX] ready to handle context: type={}, content={}'.format(context.type, context.content))
- if context.type == ContextType.TEXT or context.type == ContextType.IMAGE_CREATE:
- reply = super().build_reply_content(context.content, context)
- elif context.type == ContextType.VOICE:
- cmsg = context['msg']
- cmsg.prepare()
- file_path = context.content
- wav_path = os.path.splitext(file_path)[0] + '.wav'
- try:
- any_to_wav(file_path, wav_path)
- except Exception as e:
- logger.warning("[WX]any to wav error, use raw path. " + str(e))
- wav_path = file_path
-
- reply = super().build_voice_to_text(wav_path)
-
- try:
- os.remove(file_path)
- os.remove(wav_path)
- except Exception as e:
- logger.warning("[WX]delete temp file error: " + str(e))
-
- if reply.type == ReplyType.TEXT:
- new_context = self._compose_context(
- ContextType.TEXT, reply.content, **context.kwargs)
- if new_context:
- reply = self._generate_reply(new_context)
- else:
- return
- else:
- logger.error('[WX] unknown context type: {}'.format(context.type))
- return
- return reply
-
- def _decorate_reply(self, context: Context, reply: Reply) -> Reply:
- if reply and reply.type:
- e_context = PluginManager().emit_event(EventContext(Event.ON_DECORATE_REPLY, {
- 'channel': self, 'context': context, 'reply': reply}))
- reply = e_context['reply']
- desire_rtype = context.get('desire_rtype')
- if not e_context.is_pass() and reply and reply.type:
- if reply.type == ReplyType.TEXT:
- reply_text = reply.content
- if desire_rtype == ReplyType.VOICE:
- reply = super().build_text_to_voice(reply.content)
- return self._decorate_reply(context, reply)
- if context['isgroup']:
- reply_text = '@' + context['msg'].actual_user_nickname + ' ' + reply_text.strip()
- reply_text = conf().get("group_chat_reply_prefix", "")+reply_text
- else:
- reply_text = conf().get("single_chat_reply_prefix", "")+reply_text
- reply.content = reply_text
- elif reply.type == ReplyType.ERROR or reply.type == ReplyType.INFO:
- reply.content = str(reply.type)+":\n" + reply.content
- elif reply.type == ReplyType.IMAGE_URL or reply.type == ReplyType.VOICE or reply.type == ReplyType.IMAGE:
- pass
- else:
- logger.error('[WX] unknown reply type: {}'.format(reply.type))
- return
- if desire_rtype and desire_rtype != reply.type and reply.type not in [ReplyType.ERROR, ReplyType.INFO]:
- logger.warning('[WX] desire_rtype: {}, but reply type: {}'.format(context.get('desire_rtype'), reply.type))
- return reply
-
- def _send_reply(self, context: Context, reply: Reply):
- if reply and reply.type:
- e_context = PluginManager().emit_event(EventContext(Event.ON_SEND_REPLY, {
- 'channel': self, 'context': context, 'reply': reply}))
- reply = e_context['reply']
- if not e_context.is_pass() and reply and reply.type:
- logger.debug('[WX] ready to send reply: {} to {}'.format(reply, context))
- self._send(reply, context)
-
- def _send(self, reply: Reply, context: Context, retry_cnt = 0):
- try:
- self.send(reply, context)
- except Exception as e:
- logger.error('[WX] sendMsg error: {}'.format(e))
- if retry_cnt < 2:
- time.sleep(3+3*retry_cnt)
- self._send(reply, context, retry_cnt+1)
-
-
-
- def check_prefix(content, prefix_list):
- for prefix in prefix_list:
- if content.startswith(prefix):
- return prefix
- return None
-
- def check_contain(content, keyword_list):
- if not keyword_list:
- return None
- for ky in keyword_list:
- if content.find(ky) != -1:
- return True
- return None
|