del: 删除冷门功能-评分

This commit is contained in:
zhiyu1998 2023-03-21 02:23:50 +08:00
parent 5011aa5d3d
commit 3f90a5701b
3 changed files with 0 additions and 48 deletions

View File

@ -24,10 +24,6 @@ export class query extends plugin {
reg: "^#医药查询(.*)$",
fnc: "doctor",
},
{
reg: "^#评分(.*)",
fnc: "videoScore",
},
{
reg: "^#(cat)$",
fnc: "cat",
@ -98,47 +94,6 @@ export class query extends plugin {
return !!this.reply(await Bot.makeForwardMsg(msg));
}
async videoScore(e) {
let keyword = e.msg.replace("#评分", "").trim();
const api = `https://movie.douban.com/j/subject_suggest?q=${encodeURI(keyword)}`;
let movieId = 30433417;
fetch(api, {
Headers: {
"User-Agent":
"Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Mobile Safari/537.36",
"Content-Type": "application/json",
},
})
.then(resp => resp.json())
.then(resp => {
if (resp.length === 0 || resp === "") {
e.reply("没找到!");
return true;
}
movieId = resp[0].id;
const doubanApi = `https://movie.querydata.org/api?id=${movieId}`;
fetch(doubanApi, {
Headers: {
"User-Agent":
"Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Mobile Safari/537.36",
"Content-Type": "application/json",
},
})
.then(resp => resp.json())
.then(resp => {
if (resp.length === 0 || resp === "") {
e.reply("没找到!");
return true;
}
e.reply(
`识别:${resp.data[0].name}\n烂番茄评分:${resp.imdbRating}\n豆瓣评分:${resp.doubanRating}\n评分:${resp.imdbRating}`,
);
});
});
return true;
}
async cat(e) {
let images = [];
let reqRes = [

View File

@ -6,9 +6,6 @@
- icon: cat
title: "#cat 开始吸猫"
desc: 猫咪图捕捉
- icon: hot
title: "#评分 xxx"
desc: 电影评分
- icon: computer
title: "#推荐软件"
desc: 推荐PC、Android软件

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB