RSSHub/lib/routes/psnine/node.ts

81 lines
2.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { load } from 'cheerio';
import type { Route } from '@/types';
import cache from '@/utils/cache';
import ofetch from '@/utils/ofetch';
import { parseDate } from '@/utils/parse-date';
import timezone from '@/utils/timezone';
const handler = async (ctx) => {
const { id = 'news', order = 'obdate' } = ctx.req.param();
const rootUrl = 'https://www.psnine.com';
const currentUrl = `${rootUrl}/node/${id}?ob=${order}`;
const response = await ofetch(currentUrl);
const $ = load(response);
$('.psnnode, .node').remove();
const list = $('.title a')
.toArray()
.map((item) => {
const $item = $(item);
const meta = $item.parent().next();
return {
title: $item.text(),
link: $item.attr('href'),
pubDate: timezone(
parseDate(
meta
.contents()
.filter((_, i) => i.nodeType === 3)
.text()
.trim()
.split(/\s{2,}/, 1)[0],
['YYYY-MM-DD HH:mm', 'MM-DD HH:mm']
),
8
),
};
});
const items = await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
const detailResponse = await ofetch(item.link);
const $ = load(detailResponse);
item.author = $('a[itemprop="author"]').eq(0).text();
item.description = $('div[itemprop="articleBody"]').html();
return item;
})
)
);
return {
title: `${$('title').text()} - PSN中文站`,
link: currentUrl,
item: items,
};
};
export const route: Route = {
path: '/node/:id?/:order?',
parameters: {
id: '节点 id见下表默认为 news',
order: '排序,`date` 即最新,默认为 `obdate` 即综合排序',
},
categories: ['game'],
example: '/psnine/node/news',
name: '节点',
maintainers: ['betta-cyber', 'nczitzk'],
handler,
radar: [
{
source: ['psnine.com/node/:id'],
},
],
};