feat(route): add v2ex xna (#16251)

* feat(route): add v2ex xna

* Update lib/routes/v2ex/xna.ts

feat: v2ex xna limit default set to 50

---------
This commit is contained in:
下雨就像弹钢琴🎹
2024-07-25 19:19:07 +08:00
committed by GitHub
parent a018f0820e
commit e5d191c362
+55
View File
@@ -0,0 +1,55 @@
import { Route, ViewType } from '@/types';
import got from '@/utils/got';
import { load } from 'cheerio';
export const route: Route = {
path: '/xna',
categories: ['bbs', 'blog'],
view: ViewType.Articles,
example: '/v2ex/xna',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
name: 'XNA',
maintainers: ['luckyscript'],
handler,
};
async function handler(ctx) {
const host = 'https://v2ex.com';
const pageUrl = `${host}/xna`;
const response = await got({
method: 'get',
url: pageUrl,
});
const $ = load(response.data);
const items = $('div.xna-entry-main-container')
.toArray()
.slice(0, ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit')) : 50)
.map((dom) => {
const link = $(dom).find('.xna-entry-title > a');
const author = $(dom).find('.xna-source-author > a').text();
return {
title: $(link).text(),
link: $(link).attr('href'),
description: $(link).text(),
author,
};
});
return {
title: `V2EX-xna`,
link: pageUrl,
description: `V2EX-xna`,
item: items,
};
}