-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathshandian.js
160 lines (136 loc) · 2.84 KB
/
shandian.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
const cheerio = createCheerio()
const UA = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'
const appConfig = {
ver: 1,
title: '闪电',
site: 'http://1.95.79.193',
tabs: [
{
name: '電影',
ext: {
id: 1,
},
},
{
name: '劇集',
ext: {
id: 2,
},
},
{
name: '動漫',
ext: {
id: 4,
},
},
{
name: '綜藝',
ext: {
id: 3,
},
},
{
name: '短劇',
ext: {
id: 6,
},
},
],
}
async function getConfig() {
return jsonify(appConfig)
}
async function getCards(ext) {
ext = argsify(ext)
let cards = []
let { page = 1, id } = ext
const url = appConfig.site + `/index.php/vod/show/id/${id}/page/${page}.html`
const { data } = await $fetch.get(url, {
headers: {
'User-Agent': UA,
},
})
const $ = cheerio.load(data)
const videos = $('#main .module-item')
videos.each((_, e) => {
const href = $(e).find('.module-item-pic a').attr('href')
const title = $(e).find('.module-item-pic a').attr('title')
const cover = $(e).find('.module-item-pic img').attr('data-src')
const remarks = $(e).find('.module-item-text').text()
cards.push({
vod_id: href,
vod_name: title,
vod_pic: cover,
vod_remarks: remarks,
ext: {
url: `${appConfig.site}${href}`,
},
})
})
return jsonify({
list: cards,
})
}
async function getTracks(ext) {
ext = argsify(ext)
let tracks = []
let url = ext.url
const { data } = await $fetch.get(url, {
headers: {
'User-Agent': UA,
},
})
const $ = cheerio.load(data)
const playlist = $('.module-player-list .module-row-one')
playlist.each((_, e) => {
const name = $(e).find('.module-row-title h4').text().replace('- 第1集', '')
const panShareUrl = $(e).find('.module-row-title p').text()
tracks.push({
name: name.trim(),
pan: panShareUrl,
})
})
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}/index.php/vod/search/page/${page}/wd/${text}.html`
const { data } = await $fetch.get(url, {
headers: {
'User-Agent': UA,
},
})
const $ = cheerio.load(data)
const videos = $('#main .module-search-item')
videos.each((_, e) => {
const href = $(e).find('.video-info-header h3 a').attr('href')
const title = $(e).find('.video-info-header h3 a').attr('title')
const cover = $(e).find('.module-item-pic img').attr('data-src')
const remarks = $(e).find('.video-serial').text()
cards.push({
vod_id: href,
vod_name: title,
vod_pic: cover,
vod_remarks: remarks,
ext: {
url: `${appConfig.site}${href}`,
},
})
})
return jsonify({
list: cards,
})
}