RSSHub/lib/routes/aisixiang/column.ts

66 lines
1.9 KiB
TypeScript
Raw 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 { Route } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { load } from 'cheerio';
import timezone from '@/utils/timezone';
import { parseDate } from '@/utils/parse-date';
import { rootUrl, ossUrl, ProcessFeed } from './utils';
export const route: Route = {
path: '/column/:id',
categories: ['reading'],
example: '/aisixiang/column/722',
parameters: { id: '栏目 ID, 可在对应栏目 URL 中找到' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
name: '栏目',
maintainers: ['HenryQW', 'nczitzk'],
handler,
};
async function handler(ctx) {
const id = ctx.req.param('id');
const limit = ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit'), 10) : 30;
const currentUrl = new URL(`/data/search?column=${id}`, rootUrl).href;
const { data: response } = await got(currentUrl);
const $ = load(response);
const title = $('div.article-title a').first().text().replaceAll('[]', '');
const items = $('div.article-title')
.slice(0, limit)
.toArray()
.map((item) => {
item = $(item);
const a = item.find('a[title]');
return {
title: a.text(),
link: new URL(a.prop('href'), rootUrl).href,
author: a.text().split('')[0],
pubDate: timezone(parseDate(item.find('span').text()), +8),
};
});
return {
item: await ProcessFeed(limit, cache.tryGet, items),
title: `爱思想 - ${title}`,
link: currentUrl,
description: $('div.tips').text(),
language: 'zh-cn',
image: new URL('images/logo.jpg', ossUrl).href,
subtitle: title,
};
}