update ALL

This commit is contained in:
qist
2024-05-13 09:18:33 +08:00
parent d00445bc1f
commit 55034358cb
34 changed files with 708 additions and 522 deletions

View File

@@ -66,28 +66,15 @@ class JianPianSpider extends Spider {
let vodShort = new VodShort();
vodShort.vod_id = data["id"]
if (data["path"] !== undefined) {
if (!this.catOpenStatus) {
vodShort.vod_pic = data["path"] + "@Referer=www.jianpianapp.com@User-Agent=jianpian-version353@JPAUTH=y261ow7kF2dtzlxh1GS9EB8nbTxNmaK/QQIAjctlKiEv"
} else {
vodShort.vod_pic = this.jsBase + Utils.base64Encode(data["path"])
}
vodShort.vod_pic = this.jsBase + Utils.base64Encode(data["path"])
} else {
if (!this.catOpenStatus) {
vodShort.vod_pic = data["thumbnail"] + "@Referer=www.jianpianapp.com@User-Agent=jianpian-version353@JPAUTH=y261ow7kF2dtzlxh1GS9EB8nbTxNmaK/QQIAjctlKiE"
} else {
vodShort.vod_pic = this.jsBase + Utils.base64Encode(data["thumbnail"])
}
vodShort.vod_pic = this.jsBase + Utils.base64Encode(data["thumbnail"])
}
vodShort.vod_name = data["title"]
if (this.catOpenStatus) {
vodShort.vod_remarks = `评分:${data["score"]}`
} else {
if (data["playlist"] !== undefined) {
vodShort.vod_remarks = `评分:${data["score"]}` + " " + data["playlist"]["title"]
} else {
vodShort.vod_remarks = `评分:${data["score"]}`
}
if (data["mask"] !== undefined){
vodShort.vod_remarks = data["mask"]
}else{
vodShort.vod_remarks = data["playlist"]["title"]
}
vod_list.push(vodShort)
}