nonebot2/little_shit.py
2016-12-29 23:45:34 +08:00

91 lines
2.8 KiB
Python

import os
from config import config
class SkipException(Exception):
pass
def _mkdir_if_not_exists_and_return_path(path):
os.makedirs(path, exist_ok=True)
return path
def get_root_dir():
return os.path.split(os.path.realpath(__file__))[0]
def get_filters_dir():
return _mkdir_if_not_exists_and_return_path(os.path.join(get_root_dir(), 'filters'))
def get_commands_dir():
return _mkdir_if_not_exists_and_return_path(os.path.join(get_root_dir(), 'commands'))
def get_db_dir():
return _mkdir_if_not_exists_and_return_path(os.path.join(get_root_dir(), 'data', 'db'))
def get_default_db_path():
return os.path.join(get_db_dir(), 'default.sqlite')
def get_tmp_dir():
return _mkdir_if_not_exists_and_return_path(os.path.join(get_root_dir(), 'data', 'tmp'))
def get_source(ctx_msg):
"""
Source is used to distinguish the interactive sessions.
Note: This value may change after restarting the bot.
:return: an unique value representing a source, or None if the 'via' field is not recognized
"""
if ctx_msg.get('via') == 'qq':
if ctx_msg.get('type') == 'group_message':
return 'g' + ctx_msg.get('group_uid') + 'p' + ctx_msg.get('sender_uid')
elif ctx_msg.get('type') == 'discuss_message':
return 'd' + ctx_msg.get('discuss_id') + 'p' + ctx_msg.get('sender_uid')
else:
return 'p' + str(ctx_msg.get('sender_uid'))
elif ctx_msg.get('via') == 'wx':
if ctx_msg.get('type') == 'group_message':
return 'g' + ctx_msg.get('group_id') + 'p' + ctx_msg.get('sender_id')
else:
return 'p' + ctx_msg.get('sender_id')
def get_target(ctx_msg):
"""
Target is used to distinguish the records in database.
Note: This value will not change after restarting the bot.
:return: an unique value representing a target, or None if there is no persistent unique value
"""
if ctx_msg.get('via') == 'qq':
if ctx_msg.get('type') == 'group_message':
return 'g' + str(ctx_msg.get('group_uid'))
elif ctx_msg.get('type') == 'discuss_message':
# TODO: 看看讨论组 ID 重新启动会不会变
pass
elif ctx_msg.get('type') == 'friend_message':
return 'p' + str(ctx_msg.get('sender_uid'))
elif ctx_msg.get('via') == 'wx':
if ctx_msg.get('type') == 'friend_message' and ctx_msg.get('sender_account'):
return 'p' + str(ctx_msg.get('sender_account'))
return None
def get_command_start_flags():
return tuple(sorted(config['command_start_flags'], reverse=True))
def get_command_name_separators():
return tuple(sorted(config['command_name_separators'], reverse=True))
def get_command_args_start_flags():
return tuple(sorted(('[ \t\n]',) + config['command_args_start_flags'], reverse=True))