rsshub
Version:
Make RSS Great Again!
55 lines (50 loc) • 1.52 kB
text/typescript
import { Route } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { load } from 'cheerio';
import { SUB_NAME_PREFIX, SUB_URL } from './const';
import loadArticle from './article';
export const route: Route = {
path: '/tag/:tag',
categories: ['picture'],
example: '/everia/tag/hinatazaka46-日向坂46',
parameters: {
tag: 'Tag of the image stream',
},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['everia.club/tag/:tag'],
target: '/tag/:tag',
},
],
name: 'Images with tag',
maintainers: ['KTachibanaM', 'AiraNadih'],
handler,
};
async function handler(ctx) {
const limit = Number.parseInt(ctx.req.query('limit')) || 20;
const tag = ctx.req.param('tag');
const tagUrl = `${SUB_URL}tag/${tag}/`;
const response = await got(tagUrl);
const $ = load(response.body);
const itemRaw = $('article.blog-entry').slice(0, limit).toArray();
return {
title: `${SUB_NAME_PREFIX} - Tag: ${tag}`,
link: tagUrl,
item: await Promise.all(
itemRaw.map((e) => {
const item = $(e);
const link = item.find('h2.entry-title a').attr('href');
return cache.tryGet(link, () => loadArticle(link));
})
),
};
}