mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-25 15:22:20 +00:00
NeteaseMusic添加指定搜索结果数量功能
This commit is contained in:
parent
17bf1e9cc4
commit
3d756af278
@ -282,10 +282,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "neteasemusic",
|
"name": "neteasemusic",
|
||||||
"version": "3.7",
|
"version": "3.8",
|
||||||
"section": "daily",
|
"section": "daily",
|
||||||
"maintainer": "TNTcraftHIM",
|
"maintainer": "TNTcraftHIM",
|
||||||
"size": "27.8 kb",
|
"size": "27.9 kb",
|
||||||
"supported": true,
|
"supported": true,
|
||||||
"des-short": "网易云搜歌/随机热歌/点歌",
|
"des-short": "网易云搜歌/随机热歌/点歌",
|
||||||
"des": "可以在线搜索并且快速点歌(可回复信息点歌),也支持随机热歌功能,支持解锁VIP/灰色歌曲。命令:nem。"
|
"des": "可以在线搜索并且快速点歌(可回复信息点歌),也支持随机热歌功能,支持解锁VIP/灰色歌曲。命令:nem。"
|
||||||
|
@ -21,7 +21,7 @@ class RetryError(Exception): # 重试错误,用于再次重试
|
|||||||
|
|
||||||
|
|
||||||
@listener(is_plugin=True, outgoing=True, command="nem",
|
@listener(is_plugin=True, outgoing=True, command="nem",
|
||||||
description="网易云搜/点歌。\n指令s为搜索,p为点歌,id为歌曲ID点歌,r为随机热歌(无关键词)\n搜索灰色歌曲请指定歌手\n可回复搜索结果消息`-nem` `p` `<歌曲数字序号>`点歌",
|
description="网易云搜/点歌。\n指令s为搜索,p为点歌,id为歌曲ID点歌,r为随机热歌(无关键词)\n搜索在s后添加数字如`-nem` `s8` `<关键词>`调整结果数量\n搜索灰色歌曲请尽量**指定歌手**\n可回复搜索结果消息`-nem` `p` `<歌曲数字序号>`点歌",
|
||||||
parameters="<指令> <关键词>")
|
parameters="<指令> <关键词>")
|
||||||
async def nem(context):
|
async def nem(context):
|
||||||
proxies = {}
|
proxies = {}
|
||||||
@ -30,7 +30,7 @@ async def nem(context):
|
|||||||
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", "X-Real-IP": "223.252.199.66"}
|
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", "X-Real-IP": "223.252.199.66"}
|
||||||
proxy = [{'http': 'http://192.210.137.108:8080', 'https': 'http://192.210.137.108:8080'}, {'http': 'http://music.lolico.me:39000', 'https': 'http://music.lolico.me:39000'}, {'http': 'http://aimer.one:2333',
|
proxy = [{'http': 'http://192.210.137.108:8080', 'https': 'http://192.210.137.108:8080'}, {'http': 'http://music.lolico.me:39000', 'https': 'http://music.lolico.me:39000'}, {'http': 'http://aimer.one:2333',
|
||||||
'https': 'http://aimer.one:2333'}, {'http': 'http://fs2.ilogic.net.cn:5200', 'https': 'http://fs2.ilogic.net.cn:5200'}, {'http': 'http://64.64.250.246:8080', 'https': 'http://64.64.250.246:8080'}]
|
'https': 'http://aimer.one:2333'}, {'http': 'http://fs2.ilogic.net.cn:5200', 'https': 'http://fs2.ilogic.net.cn:5200'}, {'http': 'http://64.64.250.246:8080', 'https': 'http://64.64.250.246:8080'}]
|
||||||
helptext = "**使用方法:** `-nem` `<指令>` `<关键词>`\n\n指令s为搜索,p为点歌,id为歌曲ID点歌,r为随机热歌(无关键词)\n搜索灰色歌曲请指定歌手\n可回复搜索结果消息`-nem` `p` `<歌曲数字序号>`点歌"
|
helptext = "**使用方法:** `-nem` `<指令>` `<关键词>`\n\n指令s为搜索,p为点歌,id为歌曲ID点歌,r为随机热歌(无关键词)\n搜索在s后添加数字如`-nem` `s8` `<关键词>`调整结果数量\n搜索灰色歌曲请尽量**指定歌手**\n可回复搜索结果消息`-nem` `p` `<歌曲数字序号>`点歌"
|
||||||
apifailtext = "出错了呜呜呜 ~ 试了好多好多次都无法访问到 API 服务器 。"
|
apifailtext = "出错了呜呜呜 ~ 试了好多好多次都无法访问到 API 服务器 。"
|
||||||
|
|
||||||
if len(context.parameter) < 2:
|
if len(context.parameter) < 2:
|
||||||
@ -89,10 +89,14 @@ async def nem(context):
|
|||||||
return
|
return
|
||||||
idplay = keyword
|
idplay = keyword
|
||||||
context.parameter[0] = "p"
|
context.parameter[0] = "p"
|
||||||
if context.parameter[0] == "s": # 搜索功能
|
if context.parameter[0][0] == "s": # 搜索功能
|
||||||
await context.edit(f"【{keyword}】搜索中 . . .")
|
await context.edit(f"【{keyword}】搜索中 . . .")
|
||||||
|
if len(context.parameter[0]) > 1:
|
||||||
|
limit = str(context.parameter[0][1:])
|
||||||
|
else:
|
||||||
|
limit = "5"
|
||||||
url = "http://music.163.com/api/search/pc?&s=" + \
|
url = "http://music.163.com/api/search/pc?&s=" + \
|
||||||
keyword + "&offset=0&limit=5&type=1"
|
keyword + "&offset=0&limit=" + limit +"&type=1"
|
||||||
for _ in range(20): # 最多尝试20次
|
for _ in range(20): # 最多尝试20次
|
||||||
status = False
|
status = False
|
||||||
req = requests.request("GET", url, headers=headers)
|
req = requests.request("GET", url, headers=headers)
|
||||||
@ -155,21 +159,17 @@ async def nem(context):
|
|||||||
search = re.findall(".*【(.*)】.*", msg)
|
search = re.findall(".*【(.*)】.*", msg)
|
||||||
if search:
|
if search:
|
||||||
try:
|
try:
|
||||||
if int(context.parameter[1]) > 5:
|
start = "#" + context.parameter[1] + ":"
|
||||||
await context.edit("出错了呜呜呜 ~ 无效的歌曲序号。")
|
search = ".*" + start + "(.*?)" + '————————' + ".*"
|
||||||
return
|
msg = re.findall(search, msg, re.S)[0]
|
||||||
else:
|
search = ".*歌曲ID: (.*)\n.*"
|
||||||
start = "#" + context.parameter[1] + ":"
|
title = ".*歌名: (.*?)\n.*"
|
||||||
search = ".*" + start + "(.*?)" + '————————' + ".*"
|
title = "【"+re.findall(title, msg, re.S)[0]+"】"
|
||||||
msg = re.findall(search, msg, re.S)[0]
|
idplay = re.findall(search, msg, re.S)[0]
|
||||||
search = ".*歌曲ID: (.*)\n.*"
|
if reply.sender.is_self:
|
||||||
title = ".*歌名: (.*?)\n.*"
|
await reply.edit(f"{title}点歌完成")
|
||||||
title = "【"+re.findall(title, msg, re.S)[0]+"】"
|
|
||||||
idplay = re.findall(search, msg, re.S)[0]
|
|
||||||
if reply.sender.is_self:
|
|
||||||
await reply.edit(f"{title}点歌完成")
|
|
||||||
except:
|
except:
|
||||||
await context.edit("出错了呜呜呜 ~ 无效的参数。")
|
await context.edit("出错了呜呜呜 ~ 无效的歌曲序号。")
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
await context.edit("出错了呜呜呜 ~ 无效的参数。")
|
await context.edit("出错了呜呜呜 ~ 无效的参数。")
|
||||||
|
Loading…
Reference in New Issue
Block a user