Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

96 lines
3.0KB

  1. """
  2. wechat channel
  3. """
  4. import itchat
  5. import json
  6. from itchat.content import *
  7. from channel.channel import Channel
  8. from concurrent.futures import ThreadPoolExecutor
  9. from common.log import logger
  10. from config import conf
  11. thead_pool = ThreadPoolExecutor(max_workers=8)
  12. @itchat.msg_register(TEXT)
  13. def handler_single_msg(msg):
  14. WechatChannel().handle(msg)
  15. @itchat.msg_register(TEXT, isGroupChat=True)
  16. def handler_group_msg(msg):
  17. WechatChannel().handle_group(msg)
  18. class WechatChannel(Channel):
  19. def __init__(self):
  20. pass
  21. def startup(self):
  22. # login by scan QRCode
  23. itchat.auto_login(enableCmdQR=2)
  24. # start message listener
  25. itchat.run()
  26. def handle(self, msg):
  27. logger.info("[WX]receive msg: " + json.dumps(msg, ensure_ascii=False))
  28. from_user_id = msg['FromUserName']
  29. other_user_id = msg['User']['UserName']
  30. content = msg['Text']
  31. if from_user_id == other_user_id and \
  32. self.check_prefix(content, conf().get('group_chat_prefix')):
  33. str_list = content.split('bot', 1)
  34. if len(str_list) == 2:
  35. content = str_list[1].strip()
  36. thead_pool.submit(self._do_send, content, from_user_id)
  37. def handle_group(self, msg):
  38. logger.info("[WX]receive group msg: " + json.dumps(msg, ensure_ascii=False))
  39. group_id = msg['User']['UserName']
  40. group_name = msg['User'].get('NickName', None)
  41. if not group_name:
  42. return ""
  43. origin_content = msg['Content']
  44. content = msg['Content']
  45. content_list = content.split(' ', 1)
  46. context_special_list = content.split('\u2005', 1)
  47. if len(context_special_list) == 2:
  48. content = context_special_list[1]
  49. elif len(content_list) == 2:
  50. content = content_list[1]
  51. config = conf()
  52. if group_name in config.get('group_name_white_list') \
  53. and (msg['IsAt'] or self.check_prefix(origin_content, config.get('group_chat_prefix'))):
  54. thead_pool.submit(self._do_send_group, content, msg)
  55. def send(self, msg, receiver):
  56. # time.sleep(random.randint(1, 3))
  57. logger.info('[WX] sendMsg={}, receiver={}'.format(msg, receiver))
  58. itchat.send(msg, toUserName=receiver)
  59. def _do_send(self, send_msg, reply_user_id):
  60. context = dict()
  61. context['from_user_id'] = reply_user_id
  62. content = super().build_reply_content(send_msg, context)
  63. if content:
  64. self.send("[bot] " + content, reply_user_id)
  65. def _do_send_group(self, content, msg):
  66. context = dict()
  67. context['from_user_id'] = msg['ActualUserName']
  68. reply_text = super().build_reply_content(content, context)
  69. reply_text = '@' + msg['ActualNickName'] + ' ' + reply_text
  70. if reply_text:
  71. self.send(reply_text, msg['User']['UserName'])
  72. def check_prefix(self, content, prefix_list):
  73. for prefix in prefix_list:
  74. if content.lower().startswith(prefix):
  75. return True
  76. return False