UNPKG

rsshub

Version:
78 lines (76 loc) 2.25 kB
import "./esm-shims-CzJ_djXG.mjs"; import { t as config } from "./config-C37vj7VH.mjs"; import "./dist-BInvbO1W.mjs"; import "./logger-Czu8UMNd.mjs"; import { t as ofetch_default } from "./ofetch-BIyrKU3Y.mjs"; import { t as parseDate } from "./parse-date-BrP7mxXf.mjs"; import markdownit from "markdown-it"; //#region lib/routes/github/pulls.ts const md = markdownit({ html: true, linkify: true }); const route = { path: "/pull/:user/:repo/:state?/:labels?", categories: ["programming"], example: "/github/pull/DIYgod/RSSHub", parameters: { user: "User name", repo: "Repo name", state: "the state of pull requests. Can be either `open`, `closed`, or `all`. Default: `open`.", 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`; const headers = { Accept: "application/vnd.github.v3+json" }; if (config.github && config.github.access_token) headers.Authorization = `token ${config.github.access_token}`; const data = (await ofetch_default(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 })).filter((item) => item.pull_request); return { allowEmpty: true, title: `${user}/${repo} Pull requests`, 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 })) }; } //#endregion export { route };