75 lines
3.2 KiB
TypeScript
75 lines
3.2 KiB
TypeScript
import { load } from 'cheerio';
|
|
|
|
import type { Route } from '@/types';
|
|
import got from '@/utils/got';
|
|
import { parseDate } from '@/utils/parse-date';
|
|
|
|
export const route: Route = {
|
|
path: '/topics/:name/:qs?',
|
|
categories: ['programming'],
|
|
example: '/github/topics/framework',
|
|
parameters: { name: 'Topic name, which can be found in the URL of the corresponding [Topics Page](https://github.com/topics/framework)', qs: 'Query string, like `l=php&o=desc&s=stars`. Details listed as follows:' },
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: false,
|
|
},
|
|
radar: [
|
|
{
|
|
source: ['github.com/topics'],
|
|
},
|
|
],
|
|
name: 'Topics',
|
|
maintainers: ['queensferryme'],
|
|
handler,
|
|
url: 'github.com/topics',
|
|
description: `| Parameter | Description | Values |
|
|
| --------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------- |
|
|
| \`l\` | Language | For instance \`php\`, which can be found in the URL of the corresponding [Topics page](https://github.com/topics/framework?l=php) |
|
|
| \`o\` | Sorting Order | \`asc\`, \`desc\` |
|
|
| \`s\` | Sorting Criteria | \`stars\`, \`forks\`, \`updated\` |
|
|
|
|
For instance, the \`/github/topics/framework/l=php&o=desc&s=stars\` route will generate the RSS feed corresponding to this [page](https://github.com/topics/framework?l=php\\&o=desc\\&s=stars).`,
|
|
};
|
|
|
|
async function handler(ctx) {
|
|
const link = `https://github.com/topics/${ctx.req.param('name')}`;
|
|
const { data, url } = await got(link, {
|
|
searchParams: new URLSearchParams(ctx.req.param('qs')),
|
|
});
|
|
const $ = load(data);
|
|
|
|
return {
|
|
title: $('title').text(),
|
|
description: $('.markdown-body').text().trim(),
|
|
link: url,
|
|
item: $('article.border')
|
|
.toArray()
|
|
.map((item) => {
|
|
item = $(item);
|
|
|
|
const title = item.find('h3').text().trim();
|
|
const author = title.split('/')[0];
|
|
const description = (item.find('a img').prop('outerHTML') ?? '') + item.find('div > div > p').text();
|
|
const link = `https://github.com${item.find('h3 a').last().attr('href')}`;
|
|
const category = item
|
|
.find('.topic-tag')
|
|
.toArray()
|
|
.map((item) => $(item).text().trim());
|
|
const pubDate = parseDate(item.find('relative-time').attr('datetime'));
|
|
|
|
return {
|
|
title,
|
|
author,
|
|
description,
|
|
link,
|
|
category,
|
|
pubDate,
|
|
};
|
|
}),
|
|
};
|
|
}
|