73 lines
2.0 KiB
TypeScript
73 lines
2.0 KiB
TypeScript
import { load } from 'cheerio';
|
|
|
|
import type { Route } from '@/types';
|
|
import cache from '@/utils/cache';
|
|
import got from '@/utils/got';
|
|
import { parseDate } from '@/utils/parse-date';
|
|
import timezone from '@/utils/timezone';
|
|
|
|
export const route: Route = {
|
|
path: '/chapter/:id',
|
|
categories: ['reading'],
|
|
example: '/hbooker/chapter/100113279',
|
|
parameters: { id: '小说 id, 可在对应小说页 URL 中找到' },
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: false,
|
|
},
|
|
radar: [
|
|
{
|
|
source: ['hbooker.com/book/:id'],
|
|
},
|
|
],
|
|
name: '章节',
|
|
maintainers: ['keocheung'],
|
|
handler,
|
|
};
|
|
|
|
async function handler(ctx) {
|
|
const id = ctx.req.param('id');
|
|
const limit = Number.parseInt(ctx.req.query('limit')) || 10;
|
|
|
|
const baseUrl = 'https://www.hbooker.com';
|
|
|
|
const { data: response } = await got(`${baseUrl}/book/${id}?arr_reverse=1`);
|
|
const $ = load(response);
|
|
|
|
const list = $('div.book-chapter-list ul li a')
|
|
.slice(0, limit)
|
|
.toArray()
|
|
.map((item) => {
|
|
item = $(item);
|
|
return {
|
|
title: item.text(),
|
|
link: item.attr('href'),
|
|
};
|
|
});
|
|
const items = await Promise.all(
|
|
list.map((item) =>
|
|
cache.tryGet(item.link, async () => {
|
|
const { data: response } = await got(item.link);
|
|
const $ = load(response);
|
|
|
|
const rawDate = $('div.read-hd p span').eq(2).text();
|
|
item.pubDate = timezone(parseDate(rawDate.replace('更新时间:', '')), +8);
|
|
|
|
return item;
|
|
})
|
|
)
|
|
);
|
|
|
|
return {
|
|
title: `欢乐书客 ${$('div.book-title h1').text()}`,
|
|
link: `${baseUrl}/book/${id}`,
|
|
description: $('div.book-desc').text(),
|
|
image: $('div.book-cover img').attr('src'),
|
|
item: items,
|
|
};
|
|
}
|