mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-03 10:38:03 +08:00
129 lines
5.1 KiB
JavaScript
129 lines
5.1 KiB
JavaScript
const got = require('@/utils/got');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
const md = require('markdown-it')({
|
|
html: true,
|
|
});
|
|
const apiUrl = 'https://api.github.com';
|
|
const config = require('@/config').value;
|
|
const typeDict = {
|
|
issue: {
|
|
title: 'Issue',
|
|
},
|
|
pull: {
|
|
title: 'Pull request',
|
|
},
|
|
};
|
|
|
|
module.exports = async (ctx) => {
|
|
const user = ctx.params.user;
|
|
const repo = ctx.params.repo;
|
|
const number = isNaN(parseInt(ctx.params.number)) ? 1 : parseInt(ctx.params.number);
|
|
const limit = ctx.query.limit ? parseInt(ctx.params.limit) : 100;
|
|
const headers =
|
|
config.github && config.github.access_token
|
|
? {
|
|
Accept: 'application/vnd.github.v3+json',
|
|
Authorization: `token ${config.github.access_token}`,
|
|
}
|
|
: {
|
|
Accept: 'application/vnd.github.v3+json',
|
|
};
|
|
|
|
const response = await got(`${apiUrl}/repos/${user}/${repo}/issues/${number}`, {
|
|
headers,
|
|
});
|
|
const issue = response.data;
|
|
const type = issue.pull_request ? 'pull' : 'issue';
|
|
|
|
const timelineResponse = await got(issue.timeline_url, {
|
|
headers,
|
|
searchParams: {
|
|
per_page: limit,
|
|
},
|
|
});
|
|
const timeline = timelineResponse.data;
|
|
|
|
let items = [
|
|
{
|
|
title: `${issue.user.login} created ${user}/${repo}: ${typeDict[type].title} #${issue.number}`,
|
|
description: issue.body ? md.render(issue.body) : null,
|
|
author: issue.user.login,
|
|
pubDate: parseDate(issue.created_at),
|
|
link: `${issue.html_url}#issue-${issue.id}`,
|
|
},
|
|
];
|
|
|
|
timeline.forEach((item) => {
|
|
switch (item.event) {
|
|
case 'closed':
|
|
items.push({
|
|
title: `${item.actor.login} ${item.event} ${user}/${repo}: ${typeDict[type].title} #${issue.number}`,
|
|
author: item.actor.login,
|
|
pubDate: parseDate(item.created_at),
|
|
link: item.url,
|
|
});
|
|
break;
|
|
case 'commented':
|
|
items.push({
|
|
title: `${item.actor.login} ${item.event} on ${user}/${repo}: ${typeDict[type].title} #${issue.number}`,
|
|
description: md.render(item.body),
|
|
author: item.actor.login,
|
|
pubDate: parseDate(item.created_at),
|
|
link: item.html_url,
|
|
});
|
|
break;
|
|
case 'cross-referenced':
|
|
items.push({
|
|
title: `${item.actor.login} ${item.event} on ${user}/${repo}: ${typeDict[type].title} #${issue.number}`,
|
|
description: `${item.actor.login} mentioned this issue in <a href='${item.source.issue.html_url}'><b>${item.source.issue.title}</b> #${item.source.issue.number}</a>`,
|
|
author: item.actor.login,
|
|
pubDate: parseDate(item.created_at),
|
|
guid: `${item.actor.login} ${item.event} on ${user}/${repo}: ${typeDict[type].title} #${issue.number} on ${item.created_at}`,
|
|
link: `${item.actor.login} ${item.event} on ${user}/${repo}: ${typeDict[type].title} #${issue.number} on ${item.created_at}`,
|
|
});
|
|
break;
|
|
case 'renamed':
|
|
items.push({
|
|
title: `${item.actor.login} ${item.event} on ${user}/${repo}: ${typeDict[type].title} #${issue.number}`,
|
|
description: `${item.actor.login} changed the title <del>${item.rename.from}</del> ${item.rename.to}`,
|
|
author: item.actor.login,
|
|
pubDate: parseDate(item.created_at),
|
|
link: item.url,
|
|
});
|
|
break;
|
|
case 'reviewed':
|
|
items.push({
|
|
title: `${item.user.login} ${item.event} on ${user}/${repo}: ${typeDict[type].title} #${issue.number}`,
|
|
description: item.body ? md.render(item.body) : item.state.replace('_', ' '),
|
|
author: item.user.login,
|
|
pubDate: parseDate(item.submitted_at),
|
|
link: item.html_url,
|
|
});
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
});
|
|
|
|
items = await Promise.all(items.map((item) => ctx.cache.tryGet(item.link, () => item)));
|
|
|
|
ctx.state.data = {
|
|
title: `${user}/${repo}: ${typeDict[type].title} #${number} - ${issue.title}`,
|
|
link: issue.html_url,
|
|
item: items,
|
|
};
|
|
|
|
ctx.state.json = {
|
|
title: `${user}/${repo}: ${typeDict[type].title} #${number} - ${issue.title}`,
|
|
link: issue.html_url,
|
|
item: items,
|
|
rateLimit: {
|
|
limit: parseInt(response.headers['x-ratelimit-limit']),
|
|
remaining: parseInt(response.headers['x-ratelimit-remaining']),
|
|
reset: parseDate(parseInt(response.headers['x-ratelimit-reset']) * 1000),
|
|
resoure: response.headers['x-ratelimit-resource'],
|
|
used: parseInt(response.headers['x-ratelimit-used']),
|
|
},
|
|
};
|
|
};
|