UNPKG

rsshub

Version:
78 lines (71 loc) 2.45 kB
import { Route, ViewType } from '@/types'; import got from '@/utils/got'; import { config } from '@/config'; import ConfigNotFoundError from '@/errors/types/config-not-found'; export const route: Route = { path: '/stars/:user/:repo', categories: ['programming'], example: '/github/stars/DIYgod/RSSHub', view: ViewType.Notifications, parameters: { user: 'GitHub username', repo: 'GitHub repo name' }, features: { requireConfig: [ { name: 'GITHUB_ACCESS_TOKEN', description: 'GitHub Access Token', }, ], }, radar: [ { source: ['github.com/:user/:repo/stargazers', 'github.com/:user/:repo'], }, ], name: 'Repo Stars', maintainers: ['HenryQW'], handler, }; async function handler(ctx) { if (!config.github || !config.github.access_token) { throw new ConfigNotFoundError('GitHub star RSS is disabled due to the lack of <a href="https://docs.rsshub.app/deploy/config#route-specific-configurations">relevant config</a>'); } const user = ctx.req.param('user'); const repo = ctx.req.param('repo'); const host = `https://github.com/${user}/${repo}/stargazers`; const url = 'https://api.github.com/graphql'; const response = await got({ method: 'post', url, headers: { Authorization: `bearer ${config.github.access_token}`, }, json: { query: ` { repository(owner: "${user}", name: "${repo}") { stargazers(last: 10) { edges { node { login avatarUrl } } } } } `, }, }); const data = response.data.data.repository.stargazers.edges.toReversed(); return { allowEmpty: true, title: `${user}/${repo}’s stargazers`, link: host, item: data.map((follower) => ({ title: `${follower.node.login} starred ${user}/${repo}`, author: follower.node.login, description: `<a href="https://github.com/${follower.node.login}">${follower.node.login}</a> <br> <img sytle="width:50px;" src='${follower.node.avatarUrl}'>`, link: `https://github.com/${follower.node.login}`, })), }; }