62 lines
1.7 KiB
TypeScript
62 lines
1.7 KiB
TypeScript
import type { Route } from '@/types';
|
|
import got from '@/utils/got';
|
|
import { parseDate } from '@/utils/parse-date';
|
|
|
|
const sorts = {
|
|
hot: '热门',
|
|
last: '最近',
|
|
};
|
|
|
|
export const route: Route = {
|
|
path: '/article/:sort?',
|
|
categories: ['programming'],
|
|
example: '/hellogithub/article',
|
|
parameters: { sort: '排序方式,见下表,默认为 `last`,即最近' },
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: false,
|
|
},
|
|
name: '文章',
|
|
maintainers: ['moke8', 'nczitzk', 'CaoMeiYouRen'],
|
|
handler,
|
|
description: `| 热门 | 最近 |
|
|
| ---- | ---- |
|
|
| hot | last |`,
|
|
};
|
|
|
|
async function handler(ctx) {
|
|
const sort = ctx.req.param('sort') ?? 'last';
|
|
const limit = ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit')) : 20;
|
|
|
|
const rootUrl = 'https://hellogithub.com';
|
|
const apiRootUrl = 'https://api.hellogithub.com/v1/article/';
|
|
const currentUrl = `${rootUrl}/article/?sort_by=${sort}`;
|
|
const apiUrl = `${apiRootUrl}?sort_by=${sort}&page=1`;
|
|
|
|
const response = await got({
|
|
method: 'get',
|
|
url: apiUrl,
|
|
});
|
|
|
|
const items = response.data.data.slice(0, limit).map((item) => ({
|
|
title: item.title,
|
|
description: `<figure>
|
|
<img src="${item.head_image}">
|
|
</figure><br>${item.desc}`,
|
|
link: `${rootUrl}/article/${item.aid}`,
|
|
author: item.author,
|
|
guid: item.aid,
|
|
pubDate: parseDate(item.publish_at),
|
|
}));
|
|
|
|
return {
|
|
title: `HelloGithub - ${sorts[sort]}文章`,
|
|
link: currentUrl,
|
|
item: items,
|
|
};
|
|
}
|