From cec3a97227dd3f9a88bbafe7f2bc96bf513f53ae Mon Sep 17 00:00:00 2001 From: Kyomotoi <1172294279@qq.com> Date: Sun, 2 Aug 2020 00:29:45 +0800 Subject: [Update] Refactor this project --- ATRIbot/plugins/cloudmusic.py | 87 ------------------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 ATRIbot/plugins/cloudmusic.py (limited to 'ATRIbot/plugins/cloudmusic.py') diff --git a/ATRIbot/plugins/cloudmusic.py b/ATRIbot/plugins/cloudmusic.py deleted file mode 100644 index 4452eee..0000000 --- a/ATRIbot/plugins/cloudmusic.py +++ /dev/null @@ -1,87 +0,0 @@ -import json -import nonebot -from orjson import loads -from html import unescape - -import requests - -def request_api(url): - response = requests.request("GET", url) - html = response.text - return html - - -REPORT_FORMAT = """Status: {status} -Song id: {id} -Br: {br} -Download: {url} -MD5: {md5}""" - - -@nonebot.on_natural_language(only_to_me = False) -async def fk_tx_app_cloudmusic(session: nonebot.NLPSession): - rich_message = [x for x in session.ctx['message'] if x.get('type') == 'rich'] - - if not rich_message: - return - - rich_message = rich_message[0]['data']['content'] - - if '网易云音乐' not in str(rich_message): - return - - if 'music' not in str(rich_message): - return - - data = loads(unescape(rich_message)) - - URL = data['music']['jumpUrl'] - rep = URL.split('/') - wid = rep[4] - - url = f'https://api.imjad.cn/cloudmusic/?type=song&id={wid}&br=320000' - print(url) - - dc = json.loads(request_api(url)) - - await session.send( - REPORT_FORMAT.format( - status = dc["code"], - id = dc["data"][0]["id"], - br = dc["data"][0]["br"], - url = dc["data"][0]["url"], - md5 = dc["data"][0]["md5"], - ) - ) - - -@nonebot.on_natural_language(only_to_me = False) -async def cloudmusic_link(session: nonebot.NLPSession): - share_message = [x for x in session.ctx['message'] if x.get('type') == 'share'] - - if not share_message: - return - - share_message = share_message[0]['data']['url'] - - if 'music.163.com' not in str(share_message): - return - - rep = share_message.replace('=', '/') - rep = rep.replace('&', '/') - wid = rep[4] - - url = f'https://api.imjad.cn/cloudmusic/?type=song&id={wid}&br=320000' - print(url) - - dc = json.loads(request_api(url)) - - await session.send( - REPORT_FORMAT.format( - status = dc["code"], - id = dc["data"][0]["id"], - br = dc["data"][0]["br"], - url = dc["data"][0]["url"], - md5 = dc["data"][0]["md5"], - ) - ) -- cgit v1.2.3