Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/github/search.py
2021-12-18 13:42:34 +08:00

34 lines
1.5 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import traceback
from core.elements import MessageSession
from core.utils.bot import get_url
from modules.github.utils import dirty_check, darkCheck
async def search(msg: MessageSession):
try:
result = await get_url('https://api.github.com/search/repositories?q=' + msg.parsed_msg['<query>'], fmt='json')
items = result['items']
item_count_expected = int(result['total_count']) if result['total_count'] < 5 else 5
items_out = []
for item in items:
try:
items_out.append(str(item['full_name'] + ': ' + item['html_url']))
except TypeError:
continue
footnotes = f"另有 {result['total_count'] - 5} 个结果未显示。" if item_count_expected == 5 else ''
message = f"搜索成功:共 {result['total_count']} 个结果。\n" + '\n'.join(
items_out[0:item_count_expected]) + f'\n{footnotes}'
is_dirty = await dirty_check(message) or darkCheck(message)
if is_dirty:
message = 'https://wdf.ink/6OUp'
await msg.sendMessage(message)
except Exception as error:
if result['message'] == 'Not Found':
await msg.sendMessage('发生错误:查无此人,请检查拼写是否正确。')
else:
await msg.sendMessage('发生错误:' + str(
error) + '\n错误汇报地址https://github.com/Teahouse-Studios/bot/issues/new?assignees=OasisAkari&labels=bug&template=report_bug.yaml&title=%5BBUG%5D%3A+')
traceback.print_exc()