-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathppp.js
159 lines (140 loc) · 4.21 KB
/
ppp.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
// 來自群友:夢
const cheerio = createCheerio()
const UA = 'Mozilla/5.0 (iPhone; CPU iPhone OS 18_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1.1 Mobile/15E148 Safari/604.1'
let appConfig = {
ver: 1,
title: 'pppPorn',
site: 'https://ppp.porn',
}
async function getConfig() {
let config = appConfig
config.tabs = await getTabs()
return jsonify(config)
}
async function getTabs() {
let list = []
let classUrl = `${appConfig.site}/categories/`
const { data } = await $fetch.get(classUrl, {
headers: {
'User-Agent': UA,
'Referer': 'https://ppp.porn/pp1/',
},
})
const $ = cheerio.load(data)
$('section.padding-bottom-xl .card-cat-v2').each((_, e) => {
const title = $(e).find('.card-cat-v2__title').text().trim()
const count = $(e).find('.card-cat-v2__count').text().trim()
const name = `${title}(${count})`
const href = $(e).find('a').attr('href')
list.push({
name,
ui: 1,
ext: {
href: href,
},
})
})
return list
}
async function getCards(ext) {
ext = argsify(ext)
let cards = []
let {href, page = 1 } = ext
let url = `${href}?mode=async&function=get_block&block_id=list_videos_common_videos_list&sort_by=post_date&from=${page}`
const { data } = await $fetch.get(url, {
headers: {
'User-Agent': UA,
},
})
const $ = cheerio.load(data)
$('#list_videos_common_videos_list_items .item').each((_, element) => {
const title = $(element).find('h4 a').text().trim()
const cover = $(element).find('img').attr('data-src')
const href = $(element).find('h4 a').attr('href')
const duration = $(element).find('.card-video__duration').text()
cards.push({
vod_id: href,
vod_name: title,
vod_pic: cover,
vod_duration: duration,
vod_remarks: '',
ext: {
url: 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)
let m3u8Url = null
$('script').each((i, script) => {
const content = $(script).html()
if (content.includes('.m3u8')) {
m3u8Url = content.match(/https?:\/\/[\w./-]+\.m3u8/)[0]
if (m3u8Url) {
tracks.push({
name: '播放',
ext: {
url: m3u8Url,
},
})
}
}
})
return jsonify({
list: [
{
title: '默认分组',
tracks,
},
],
})
}
async function getPlayinfo(ext) {
ext = argsify(ext)
const url = ext.url
return jsonify({ urls: [url] })
}
async function search(ext) {
ext = argsify(ext)
let cards = []
const text = encodeURIComponent(ext.text)
let page = ext.page || 1
let url = `${appConfig.site}/search/${text}/?mode=async&function=get_block&block_id=list_videos_videos_list_search_result&q=${text}&category_ids=&sort_by=&from_videos=${page}&from_albums=${page}`
const { data } = await $fetch.get(url, {
headers: {
'User-Agent': UA,
},
})
const $ = cheerio.load(data)
$('#list_videos_videos_list_search_result_items .item').each((_, element) => {
const title = $(element).find('h4 a').text().trim()
const cover = $(element).find('img').attr('data-src')
const href = $(element).find('h4 a').attr('href')
const duration = $(element).find('.card-video__duration').text()
cards.push({
vod_id: href,
vod_name: title,
vod_pic: cover,
vod_duration: duration,
vod_remarks: '',
ext: {
url: href,
},
})
})
return jsonify({
list: cards,
})
}