RSSHub/lib/routes/github/pulls.ts

97 lines
2.9 KiB
TypeScript

import MarkdownIt from 'markdown-it';
import { config } from '@/config';
import type { Route } from '@/types';
import ofetch from '@/utils/ofetch';
import { parseDate } from '@/utils/parse-date';
const md = MarkdownIt({
html: true,
linkify: true,
});
export const route: Route = {
path: '/pull/:user/:repo/:state?/:labels?',
categories: ['programming'],
example: '/github/pull/DIYgod/RSSHub',
parameters: {
user: 'GitHub username',
repo: 'GitHub repo name',
state: {
description: 'the state of pull requests.',
default: 'open',
options: [
{
label: 'Open',
value: 'open',
},
{
label: 'Closed',
value: 'closed',
},
{
label: 'All',
value: 'all',
},
],
},
labels: 'a list of comma separated label names',
},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['github.com/:user/:repo/pulls', 'github.com/:user/:repo/pulls/:id', 'github.com/:user/:repo'],
target: '/pull/:user/:repo',
},
],
name: 'Repo Pull Requests',
maintainers: ['hashman', 'TonyRL'],
handler,
};
async function handler(ctx) {
const user = ctx.req.param('user');
const repo = ctx.req.param('repo');
const state = ctx.req.param('state') ?? 'open';
const labels = ctx.req.param('labels');
const host = `https://github.com/${user}/${repo}/pulls`;
const url = `https://api.github.com/repos/${user}/${repo}/issues`; // every PR is also an issue
const headers = { Accept: 'application/vnd.github.v3+json' };
if (config.github && config.github.access_token) {
headers.Authorization = `token ${config.github.access_token}`;
}
const response = await ofetch(url, {
query: {
state,
labels,
sort: 'created',
direction: 'desc',
per_page: ctx.req.query('limit') ? Math.min(Number.parseInt(ctx.req.query('limit')), 100) : 100,
},
headers,
});
const data = response.filter((item) => item.pull_request);
return {
allowEmpty: true,
title: `${user}/${repo} ${state.replace(/^\S/, (s) => s.toUpperCase())} Pull Requests${labels ? ' - ' + labels : ''}`,
link: host,
item: data.map((item) => ({
title: item.title,
author: item.user.login,
description: item.body ? md.render(item.body) : 'No description',
pubDate: parseDate(item.created_at),
link: item.html_url,
})),
};
}