-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathleijing.js
194 lines (162 loc) · 4.44 KB
/
leijing.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
const UA = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36"
const cheerio = createCheerio()
const appConfig = {
ver: 1,
title: '雷鲸',
site: 'https://www.leijing.xyz',
tabs: [
{
name: '剧集',
ext: {
id: '?tagId=42204684250355',
},
},
{
name: '电影',
ext: {
id: '?tagId=42204681950354',
},
},
{
name: '动漫',
ext: {
id: '?tagId=42204792950357',
},
},
{
name: '纪录片',
ext: {
id: '?tagId=42204697150356',
},
},
{
name: '综艺',
ext: {
id: '?tagId=42210356650363',
},
},
{
name: '影视原盘',
ext: {
id: '?tagId=42212287587456',
},
},
],
}
async function getConfig() {
return jsonify(appConfig)
}
async function getCards(ext) {
ext = argsify(ext)
let cards = []
let { page = 1, id } = ext
const url = appConfig.site + `/${id}&page=${page}`
const { data } = await $fetch.get(url, {
headers: {
'Referer': 'https://www.leijing.xyz/',
'User-Agent': UA,
}
});
const $ = cheerio.load(data);
$('.topicItem').each((index, each) => {
if ($(each).find('.cms-lock-solid').length > 0) return;
const href = $(each).find('h2 a').attr('href');
const title = $(each).find('h2 a').text()
const regex = /(?:【.*?】)?(?:(.*?))?([^\s.(]+(?:\s+[^\s.(]+)*)/;
const match = title.match(regex);
const dramaName = match ? match[1] : title;
const r = $(each).find('.summary').text();
const tag = $(each).find('.tag').text();
if (/content/.test(r) && !/cloud/.test(r)) return;
if (/软件|游戏|书籍|图片|公告|音乐|课程/.test(tag)) return;
cards.push({
vod_id: href,
vod_name: dramaName,
vod_pic: '',
vod_remarks: '',
ext: {
url: `https://www.leijing.xyz/${href}`,
},
});
});
return jsonify({
list: cards,
});
}
async function getTracks(ext) {
ext = argsify(ext)
var tracks = []
let url = ext.url
const { data } = await $fetch.get(url, {
headers: {
'Referer': 'https://www.leijing.xyz/',
'User-Agent': UA,
}
});
const $ = cheerio.load(data);
const pans = new Set();
const urlRegex = /(https?:\/\/[^\s(]+)/g;
const processUrl = (url) => {
if (url.startsWith('https://cloud.189.cn/') && !pans.has(url)) {
pans.add(url);
tracks.push({
name: "网盘",
pan: url,
ext: {}
});
}
};
$('div,p,a').each((index, each) => {
const href = ($(each).attr('href') ?? "").replace('http://', 'https://');
processUrl(href);
const text = $(each).text().trim();
const urls = text.match(urlRegex);
if (urls) {
urls.forEach(processUrl);
}
});
return jsonify({ list: [{
title: "默认分组",
tracks,
}]})
}
async function getPlayinfo(ext) {
return jsonify({ 'urls': [] })
}
async function search(ext) {
ext = argsify(ext)
let cards = []
let text = encodeURIComponent(ext.text)
let page = ext.page || 1
let url = `${appConfig.site}/search?keyword=${text}&page=${page}`
const { data } = await $fetch.get(url, {
headers: {
'User-Agent': UA,
},
})
const $ = cheerio.load(data);
$('.topicItem').each((index, each) => {
if ($(each).find('.cms-lock-solid').length > 0) return;
const href = $(each).find('h2 a').attr('href');
const title = $(each).find('h2 a').text()
const regex = /(?:【.*?】)?(?:(.*?))?([^\s.(]+(?:\s+[^\s.(]+)*)/;
const match = title.match(regex);
const dramaName = match ? match[1] : title;
const r = $(each).find('.summary').text();
const tag = $(each).find('.tag').text();
if (/content/.test(r) && !/cloud/.test(r)) return;
if (/软件|游戏|书籍|图片|公告|音乐|课程/.test(tag)) return;
cards.push({
vod_id: href,
vod_name: dramaName,
vod_pic: '',
vod_remarks: '',
ext: {
url: `https://www.leijing.xyz/${href}`,
},
});
});
return jsonify({
list: cards,
})
}