RSSHub/lib/routes/cyzone/author.ts

45 lines
1.2 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 type { Route } from '@/types';
import cache from '@/utils/cache';
import { apiRootUrl, getInfo, processItems, rootUrl } from './util';
export const route: Route = {
path: '/author/:id',
categories: ['new-media'],
example: '/cyzone/author/1225562',
parameters: { id: '作者 id可在对应作者页 URL 中找到' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['cyzone.cn/author/:id', 'cyzone.cn/'],
},
],
name: '作者',
maintainers: ['nczitzk'],
handler,
};
async function handler(ctx) {
const id = ctx.req.param('id');
const limit = ctx.req.query('limit') ? Number(ctx.req.query('limit')) : 5;
const apiUrl = new URL('v2/author/author/detail', apiRootUrl).href;
const currentUrl = new URL(`author/${id}`, rootUrl).href;
const items = await processItems(apiUrl, limit, cache.tryGet, {
author_id: id,
});
return {
item: items,
...(await getInfo(currentUrl, cache.tryGet)),
};
}