2021-07-30 21:21:51 +08:00
|
|
|
|
from configs.config import TL_KEY, ALAPI_TOKEN, ALAPI_AI_CHECK
|
2021-05-20 19:21:05 +08:00
|
|
|
|
from configs.path_config import IMAGE_PATH, DATA_PATH
|
2021-07-30 21:21:51 +08:00
|
|
|
|
from aiohttp.client import ClientSession
|
2021-06-24 15:32:06 +08:00
|
|
|
|
from services.log import logger
|
2021-07-30 21:21:51 +08:00
|
|
|
|
from utils.message_builder import image, face
|
2021-06-30 19:50:55 +08:00
|
|
|
|
from utils.utils import get_bot
|
|
|
|
|
|
import re
|
2021-07-30 21:21:51 +08:00
|
|
|
|
import aiohttp
|
|
|
|
|
|
import random
|
|
|
|
|
|
import os
|
2021-05-20 19:21:05 +08:00
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
import ujson as json
|
|
|
|
|
|
except ModuleNotFoundError:
|
|
|
|
|
|
import json
|
|
|
|
|
|
|
|
|
|
|
|
url = "http://openapi.tuling123.com/openapi/api/v2"
|
|
|
|
|
|
|
2021-06-24 15:32:06 +08:00
|
|
|
|
check_url = "https://v2.alapi.cn/api/censor/text"
|
|
|
|
|
|
|
2021-05-20 19:21:05 +08:00
|
|
|
|
index = 0
|
|
|
|
|
|
|
2021-07-30 21:21:51 +08:00
|
|
|
|
anime_data = json.load(open(DATA_PATH + "anime.json", "r", encoding="utf8"))
|
2021-05-20 19:21:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 图灵AI
|
2021-07-30 21:21:51 +08:00
|
|
|
|
async def get_chat_result(text: str, img_url: str, user_id: int, nickname: str) -> str:
|
2021-05-20 19:21:05 +08:00
|
|
|
|
global index
|
|
|
|
|
|
if index == 5:
|
|
|
|
|
|
index = 0
|
|
|
|
|
|
if len(text) < 6 and random.random() < 0.6:
|
|
|
|
|
|
keys = anime_data.keys()
|
|
|
|
|
|
for key in keys:
|
|
|
|
|
|
if text.find(key) != -1:
|
2021-07-30 21:21:51 +08:00
|
|
|
|
return random.choice(anime_data[key]).replace("你", nickname)
|
|
|
|
|
|
async with aiohttp.ClientSession() as sess:
|
|
|
|
|
|
rst = await tu_ling(text, img_url, user_id, sess)
|
|
|
|
|
|
if not rst:
|
|
|
|
|
|
rst = await xie_ai(text, sess)
|
|
|
|
|
|
if not rst:
|
|
|
|
|
|
return no_result()
|
|
|
|
|
|
if nickname:
|
|
|
|
|
|
if len(nickname) < 5:
|
|
|
|
|
|
if random.random() < 0.5:
|
|
|
|
|
|
nickname = "~".join(nickname) + "~"
|
|
|
|
|
|
if random.random() < 0.2:
|
|
|
|
|
|
if nickname.find("大人") == -1:
|
|
|
|
|
|
nickname += "大~人~"
|
|
|
|
|
|
rst = rst.replace("小主人", nickname).replace("小朋友", nickname)
|
|
|
|
|
|
return rst
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 图灵接口
|
|
|
|
|
|
async def tu_ling(text: str, img_url: str, user_id: int, sess: ClientSession):
|
|
|
|
|
|
global index
|
2021-07-06 21:29:23 +08:00
|
|
|
|
try:
|
|
|
|
|
|
if text:
|
|
|
|
|
|
req = {
|
2021-07-30 21:21:51 +08:00
|
|
|
|
"perception": {
|
|
|
|
|
|
"inputText": {"text": text},
|
|
|
|
|
|
"selfInfo": {
|
|
|
|
|
|
"location": {"city": "陨石坑", "province": "火星", "street": "第5坑位"}
|
2021-07-06 21:29:23 +08:00
|
|
|
|
},
|
2021-07-30 21:21:51 +08:00
|
|
|
|
},
|
|
|
|
|
|
"userInfo": {"apiKey": TL_KEY[index], "userId": str(user_id)},
|
2021-07-06 21:29:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
elif img_url:
|
|
|
|
|
|
req = {
|
|
|
|
|
|
"reqType": 1,
|
2021-07-30 21:21:51 +08:00
|
|
|
|
"perception": {
|
|
|
|
|
|
"inputImage": {"url": img_url},
|
|
|
|
|
|
"selfInfo": {
|
|
|
|
|
|
"location": {"city": "陨石坑", "province": "火星", "street": "第5坑位"}
|
2021-05-20 19:21:05 +08:00
|
|
|
|
},
|
2021-07-30 21:21:51 +08:00
|
|
|
|
},
|
|
|
|
|
|
"userInfo": {"apiKey": TL_KEY[index], "userId": str(user_id)},
|
2021-07-06 21:29:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
except IndexError:
|
|
|
|
|
|
index = 0
|
2021-07-30 21:21:51 +08:00
|
|
|
|
return ""
|
|
|
|
|
|
text = ""
|
|
|
|
|
|
async with sess.post(url, json=req) as response:
|
|
|
|
|
|
if response.status != 200:
|
|
|
|
|
|
return no_result()
|
|
|
|
|
|
resp_payload = json.loads(await response.text())
|
|
|
|
|
|
if int(resp_payload["intent"]["code"]) in [4003]:
|
|
|
|
|
|
return ""
|
|
|
|
|
|
if resp_payload["results"]:
|
|
|
|
|
|
for result in resp_payload["results"]:
|
|
|
|
|
|
if result["resultType"] == "text":
|
|
|
|
|
|
text = result["values"]["text"]
|
|
|
|
|
|
if "请求次数超过" in text:
|
|
|
|
|
|
text = ""
|
|
|
|
|
|
return text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 屑 AI
|
|
|
|
|
|
async def xie_ai(text: str, sess: ClientSession):
|
|
|
|
|
|
async with sess.get(
|
|
|
|
|
|
f"http://api.qingyunke.com/api.php?key=free&appid=0&msg={text}"
|
|
|
|
|
|
) as res:
|
|
|
|
|
|
content = ""
|
|
|
|
|
|
data = json.loads(await res.text())
|
|
|
|
|
|
if data["result"] == 0:
|
|
|
|
|
|
content = data["content"]
|
|
|
|
|
|
if "菲菲" in content:
|
|
|
|
|
|
content = content.replace("菲菲", "真寻")
|
|
|
|
|
|
if "公众号" in content:
|
|
|
|
|
|
content = ""
|
|
|
|
|
|
if "{br}" in content:
|
|
|
|
|
|
content = content.replace("{br}", "\n")
|
|
|
|
|
|
if "提示" in content:
|
|
|
|
|
|
content = content[: content.find("提示")]
|
|
|
|
|
|
if "淘宝" in content:
|
|
|
|
|
|
return ""
|
|
|
|
|
|
while True:
|
|
|
|
|
|
r = re.search("{face:(.*)}", content)
|
|
|
|
|
|
if r:
|
|
|
|
|
|
id_ = r.group(1)
|
|
|
|
|
|
content = content.replace(
|
|
|
|
|
|
"{" + f"face:{id_}" + "}", str(face(int(id_)))
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
|
|
|
|
|
break
|
|
|
|
|
|
return content if not content and not ALAPI_AI_CHECK else await check_text(content, sess)
|
2021-05-20 19:21:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
2021-07-30 21:21:51 +08:00
|
|
|
|
# 打招呼内容
|
2021-05-20 19:21:05 +08:00
|
|
|
|
def hello() -> str:
|
2021-07-30 21:21:51 +08:00
|
|
|
|
result = random.choice(
|
|
|
|
|
|
(
|
|
|
|
|
|
"哦豁?!",
|
|
|
|
|
|
"你好!Ov<",
|
|
|
|
|
|
f"库库库,呼唤{list(get_bot().config.nickname)[0]}做什么呢",
|
|
|
|
|
|
"我在呢!",
|
|
|
|
|
|
"呼呼,叫俺干嘛",
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
2021-05-20 19:21:05 +08:00
|
|
|
|
img = random.choice(os.listdir(IMAGE_PATH + "zai/"))
|
|
|
|
|
|
if img[-4:] == ".gif":
|
|
|
|
|
|
result += image(img, "zai")
|
|
|
|
|
|
else:
|
|
|
|
|
|
result += image(img, "zai")
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-30 21:21:51 +08:00
|
|
|
|
# 没有回答时回复内容
|
2021-05-20 19:21:05 +08:00
|
|
|
|
def no_result() -> str:
|
2021-07-30 21:21:51 +08:00
|
|
|
|
return (
|
|
|
|
|
|
random.choice(
|
|
|
|
|
|
[
|
|
|
|
|
|
"你在说啥子?",
|
2021-08-04 15:19:45 +08:00
|
|
|
|
f"纯洁的小真寻没听懂",
|
2021-07-30 21:21:51 +08:00
|
|
|
|
"下次再告诉你(下次一定)",
|
|
|
|
|
|
"你觉得我听懂了吗?嗯?",
|
|
|
|
|
|
"我!不!知!道!",
|
|
|
|
|
|
]
|
|
|
|
|
|
)
|
|
|
|
|
|
+ image(random.choice(os.listdir(IMAGE_PATH + "noresult/")), "noresult")
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 检测屑AI回复的文本是否是 *话
|
|
|
|
|
|
async def check_text(text: str, sess: ClientSession) -> str:
|
2021-06-24 15:32:06 +08:00
|
|
|
|
if not ALAPI_TOKEN:
|
|
|
|
|
|
return text
|
2021-07-30 21:21:51 +08:00
|
|
|
|
params = {"token": ALAPI_TOKEN, "text": text}
|
|
|
|
|
|
try:
|
|
|
|
|
|
async with sess.get(check_url, timeout=2, params=params) as response:
|
|
|
|
|
|
data = await response.json()
|
|
|
|
|
|
if data["code"] == 200:
|
|
|
|
|
|
if data["conclusion_type"] == 2:
|
|
|
|
|
|
return ''
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logger.error(f"检测违规文本错误...e:{e}")
|
|
|
|
|
|
return text
|