-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathjcomic.js
More file actions
499 lines (445 loc) · 12.4 KB
/
Copy pathjcomic.js
File metadata and controls
499 lines (445 loc) · 12.4 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
/** @type {import('./_venera_.js')} */
const JCOMIC_BASE = "https://jcomic.net";
const JCOMIC_REFERER = JCOMIC_BASE + "/";
function trimTitle(raw) {
if (!raw) return "";
const idx = raw.lastIndexOf(" (");
if (idx > 0) return raw.slice(0, idx).trim();
return raw.trim();
}
function parseIdFromHref(href) {
if (!href) return null;
try {
const u = href.split("?")[0];
const parts = u.split("/").filter(Boolean); // 过滤空字符串
if (parts.length >= 2) {
return decodeURIComponent(parts[1]);
}
return decodeURIComponent(parts[parts.length - 1]);
} catch {
return null;
}
}
function parseEpIdFromHref(href) {
if (!href) return null;
const u = href.split("?")[0];
const parts = u.split("/").filter(Boolean);
if (parts.length >= 3) {
return decodeURIComponent(parts[2]);
}
return null;
}
/**
* 解析作品卡片 -> Comic
* @param {Element} card
*/
function parseComicCard(card) {
try {
const link = card.querySelector('a[href^="/eps/"], a[href^="/page/"]');
if (!link) return null;
const href = link.attributes["href"];
const id = parseIdFromHref(href);
if (!id) return null;
const img = card.querySelector("img.comic-thumb");
const cover = img ? img.attributes["src"] : "";
const titleEl = card.querySelector("p.comic-title");
const rawTitle = titleEl ? titleEl.text.trim() : id;
const title = trimTitle(rawTitle);
// 作者
const authorButtons = card.querySelectorAll('a[href^="/author/"] button');
const authors = Array.from(authorButtons).map((b) => b.text.trim());
const subTitle = authors.join(" ");
// 分类标签
const catButtons = card.querySelectorAll('a[href^="/cat/"] button');
let tags = [];
if (catButtons.length) {
tags = Array.from(catButtons).map((b) => b.text.trim());
} else {
// 有些结构是 a[href^="/cat/..."] 包着文字
const catAnchors = card.querySelectorAll('a[href^="/cat/"]');
tags = Array.from(catAnchors)
.map((a) => a.text.trim())
.filter(Boolean);
}
// 最后更新
const dateEl = card.querySelector("p.comic-date");
const description = dateEl ? dateEl.text.trim() : "";
return new Comic({
id,
title,
subTitle,
cover,
tags,
language: "zh-Hant",
description,
});
} catch (e) {
return null;
}
}
/**
* 通用:解析分页最大页数
* @param {HtmlDocument} doc
*/
function parseMaxPage(doc) {
const pag = doc.querySelector("ul.pagination");
if (!pag) return 1;
const as = pag.querySelectorAll("a");
let max = 1;
as.forEach((a) => {
const t = a.text.trim();
const n = parseInt(t, 10);
if (!Number.isNaN(n) && n > max) max = n;
});
return max;
}
/**
* 通用:解析列表页所有作品
* @param {HtmlDocument} doc
*/
function parseComicList(doc) {
const cards = doc.querySelectorAll(
'div.row.col-lg-4.col-md-6.col-xs-12, div.row.col-md-6.col-xs-12'
);
const result = [];
cards.forEach((card) => {
const c = parseComicCard(card);
if (c) result.push(c);
});
return result;
}
class JComic extends ComicSource {
name = "jcomic.net";
key = "jcomic";
version = "1.0.0";
minAppVersion = "1.4.6";
url =
"https://cdn.jsdelivr.net/gh/venera-app/venera-configs@main/jcomic.js";
currentComic = null;
_buildUrl(path) {
if (path.startsWith("http://") || path.startsWith("https://")) return path;
if (!path.startsWith("/")) path = "/" + path;
return JCOMIC_BASE + path;
}
/**
* [Optional] init
*/
init() {}
/// explore
explore = [
{
title: "JComic",
type: "multiPageComicList",
load: async (page) => {
if (!page) page = 1;
const cat = "最近更新";
const encoded = encodeURI(cat);
const path = page === 1 ? `/cat/${encoded}` : `/cat/${encoded}/${page}`;
const url = this._buildUrl(path);
const resp = await Network.get(url, { referer: JCOMIC_REFERER });
if (resp.status !== 200) throw new Error(resp.status);
const doc = new HtmlDocument(resp.body);
const comics = parseComicList(doc);
const maxPage = parseMaxPage(doc);
return { comics, maxPage };
},
loadNext(next) {},
},
];
// 分类列表
category = {
title: "jcomic.net",
parts: [
{
name: "分類",
type: "fixed",
categories: [
"最近更新",
"隨機",
"全彩",
"長篇",
"單行本",
"同人",
"短篇",
"Cosplay",
"歐美",
"WEBTOON",
"圓神領域",
"碧藍幻想",
"CG雜圖",
"英語 ENG",
"生肉",
"純愛",
"百合花園",
"耽美花園",
"偽娘哲學",
"後宮閃光",
"扶他樂園",
"姐姐系",
"妹妹系",
"SM",
"性轉換",
"足の恋",
"重口地帶",
"人妻",
"NTR",
"強暴",
"非人類",
"艦隊收藏",
"Love Live",
"SAO 刀劍神域",
"Fate",
"東方",
"禁書目錄",
],
itemType: "category",
categoryParams: [
"最近更新",
"隨機",
"全彩",
"長篇",
"單行本",
"同人",
"短篇",
"Cosplay",
"歐美",
"WEBTOON",
"圓神領域",
"碧藍幻想",
"CG雜圖",
"英語 ENG",
"生肉",
"純愛",
"百合花園",
"耽美花園",
"偽娘哲學",
"後宮閃光",
"扶他樂園",
"姐姐系",
"妹妹系",
"SM",
"性轉換",
"足の恋",
"重口地帶",
"人妻",
"NTR",
"強暴",
"非人類",
"艦隊收藏",
"Love Live",
"SAO 刀劍神域",
"Fate",
"東方",
"禁書目錄",
],
},
],
enableRankingPage: false,
};
categoryComics = {
/**
* @param category {string}
* @param param {string}
* @param options {string[]}
* @param page {number}
*/
load: async (category, param, options, page) => {
if (!page) page = 1;
const encoded = encodeURI(param);
const path = page === 1 ? `/cat/${encoded}` : `/cat/${encoded}/${page}`;
const url = this._buildUrl(path);
const resp = await Network.get(url, { referer: JCOMIC_REFERER });
if (resp.status !== 200) throw new Error(resp.status);
const doc = new HtmlDocument(resp.body);
const comics = parseComicList(doc);
const maxPage = parseMaxPage(doc);
return { comics, maxPage };
},
optionList: [],
ranking: null,
};
/// 搜索
search = {
/**
* @param keyword {string}
* @param options {string[]}
* @param page {number}
*/
load: async (keyword, options, page) => {
if (!page) page = 1;
const kw = (keyword || "").trim();
if (!kw) {
return { comics: [], maxPage: 1 };
}
const encoded = encodeURIComponent(kw);
const path = page === 1 ? `/search/${encoded}` : `/search/${encoded}/${page}`;
const url = this._buildUrl(path);
const resp = await Network.get(url, { referer: JCOMIC_REFERER });
if (resp.status !== 200) throw new Error(resp.status);
const doc = new HtmlDocument(resp.body);
const comics = parseComicList(doc);
const maxPage = parseMaxPage(doc);
return { comics, maxPage };
},
loadNext: async (keyword, options, next) => {},
optionList: [
{
type: "select",
options: ["0-Default"],
label: "sort",
default: null,
},
],
enableTagsSuggestions: false,
};
/// 单本漫画
comic = {
/**
* 载入漫画信息和章节列表
* @param id {string} - 原始标题字符串
* @returns {Promise<ComicDetails>}
*/
loadInfo: async (id) => {
const encodedId = encodeURI(id);
const url = this._buildUrl(`/eps/${encodedId}`);
const resp = await Network.get(url, { referer: JCOMIC_REFERER });
if (resp.status !== 200) throw new Error(resp.status);
const doc = new HtmlDocument(resp.body);
const infoBlock = doc.querySelector(
'div.row.col-md-6.col-xs-12'
);
if (!infoBlock) {
throw new Error("failed to parse comic info");
}
// 标题和总页数
const titleEl = infoBlock.querySelector("p.comic-title");
const rawTitle = titleEl ? titleEl.text.trim() : id;
const title = trimTitle(rawTitle);
let totalPages = 1;
const pageMatch = /\((\d+)\)/.exec(rawTitle);
if (pageMatch) {
totalPages = parseInt(pageMatch[1], 10) || 1;
}
// 封面
const img = infoBlock.querySelector("img.comic-thumb");
const cover = img ? img.attributes["src"] : "";
// 作者
const authorButtons = infoBlock.querySelectorAll(
'a[href^="/author/"] button'
);
const authors = Array.from(authorButtons).map((b) => b.text.trim());
// 分类标签
const catButtons = infoBlock.querySelectorAll('a[href^="/cat/"] button');
const categories = Array.from(catButtons).map((b) => b.text.trim());
// 更新时间
const dateEl = infoBlock.querySelector("p.comic-date");
const uploadTime = dateEl ? dateEl.text.trim() : "";
// 章节列表
const allPageLinks = doc.querySelectorAll('a[href^="/page/"]');
let eps = [];
allPageLinks.forEach((a) => {
const href = a.attributes["href"];
// 检查这个链接是否属于当前漫画
const linkComicId = parseIdFromHref(href);
if (linkComicId === id) {
const epId = parseEpIdFromHref(href);
if (epId) {
let text = a.text.trim();
if (!text) {
const btn = a.querySelector("button");
if (btn) text = btn.text.trim();
}
eps.push({
id: epId,
title: text || `第${epId}話`,
});
}
}
});
// tags Map
const tags = new Map();
if (authors.length) tags.set("authors", authors);
if (categories.length) tags.set("categories", categories);
// 构建 chapters Map
const chapters = new Map();
eps.forEach((ep) => {
chapters.set(ep.id, ep.title);
});
this.currentComic = {
id,
title,
cover,
authors,
categories,
eps,
};
return new ComicDetails({
title,
cover,
tags,
chapters,
maxPage: totalPages,
thumbnails: [cover],
uploadTime,
url: url,
recommend: undefined,
});
},
/**
* 载入章节图片
* @param comicId {string}
* @param epId {string}
* @returns {Promise<{images: string[]}>}
*/
loadEp: async (comicId, epId) => {
const encodedComicId = encodeURI(comicId);
let path = `/page/${encodedComicId}`;
if (epId) {
// epId 里可能有 11.5、14.2 等,直接当原始字符串 encode 一下
path += "/" + encodeURIComponent(epId);
}
const url = JCOMIC_BASE + path;
const resp = await Network.get(url, { referer: JCOMIC_REFERER });
if (resp.status !== 200) throw new Error(resp.status);
const doc = new HtmlDocument(resp.body);
const imgs = doc.querySelectorAll("img.comic-thumb");
const images = Array.from(imgs).map((img) => img.attributes["src"]);
return { images };
},
onImageLoad: (url, comicId, epId) => {
return {
url,
headers: {
referer: JCOMIC_REFERER,
},
};
},
onThumbnailLoad: (url) => {
return {
url,
headers: {
referer: JCOMIC_REFERER,
},
};
},
onClickTag: (namespace, tag) => {
const keyword = tag;
return {
page: "category",
attributes: {
category: "分類",
param: keyword,
},
};
},
link: {
domains: ["jcomic.net"],
linkToId: (url) => {
const reg = /https?:\/\/jcomic\.net\/(?:eps|page)\/([^\/?#]+)(?:\/[^\/?#]+)?/;
const m = reg.exec(url);
if (!m) throw new Error("Invalid jcomic url");
return decodeURIComponent(m[1]);
},
},
};
}