|
from .Extension import Extension |
|
import requests, random |
|
|
|
|
|
ext_config:dict = { |
|
"name": "emoticon", |
|
"arguments": { |
|
"keyword": "str", |
|
}, |
|
"description": "Send a emoticon related to the keyword(in chinese). usage in response: /#emoticon&开心#/", |
|
|
|
"refer_word": [], |
|
|
|
"max_call_times_per_msg": 3, |
|
|
|
"author": "KroMiose", |
|
|
|
"version": "0.0.1", |
|
|
|
"intro": "发送表情包", |
|
} |
|
|
|
class CustomExtension(Extension): |
|
async def call(self, arg_dict: dict, ctx_data: dict) -> dict: |
|
""" 当拓展被调用时执行的函数 *由拓展自行实现* |
|
|
|
参数: |
|
arg_dict: dict, 由ai解析的参数字典 {参数名: 参数值} |
|
""" |
|
custom_config:dict = self.get_custom_config() |
|
|
|
token = custom_config.get('token', None) |
|
if token is None: |
|
return { |
|
'text': "[ext_emoticon] 请在配置文件中填写alapi访问token" |
|
} |
|
|
|
keyword = arg_dict.get('keyword', '') |
|
req_args = { |
|
'token': custom_config['token'], |
|
'keyword': str(keyword), |
|
'page': 1, |
|
'type': 7, |
|
} |
|
|
|
url = f"https://v2.alapi.cn/api/doutu" |
|
|
|
try: |
|
res = requests.get(url, params=req_args, timeout=10).json() |
|
except Exception as e: |
|
return { |
|
'text': f"[ext_emoticon] 访问api时发生错误: {e}" |
|
} |
|
|
|
if res.get('data') and len(res['data']) > 0: |
|
|
|
return { |
|
'image': random.choice(res['data']) |
|
} |
|
else: |
|
return { |
|
'text': f"[ext_emoticon] 未找到与'{keyword}'相关的表情" if self.get_custom_config().get('debug', False) else None |
|
} |
|
|
|
def __init__(self, custom_config: dict): |
|
super().__init__(ext_config.copy(), custom_config) |