mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-06 05:03:44 +08:00
33 lines
877 B
JavaScript
33 lines
877 B
JavaScript
const axios = require('@/utils/axios');
|
|
const cache = require('./cache');
|
|
const he = require('he');
|
|
|
|
module.exports = async (ctx) => {
|
|
const id = ctx.params.id;
|
|
|
|
const name = await cache.getPatchnameFromID(ctx, id);
|
|
|
|
const host = `https://patchwork.kernel.org/patch/${id}/`;
|
|
const url = `https://patchwork.kernel.org/api/patches/${id}/comments/`;
|
|
|
|
const response = await axios({
|
|
method: 'get',
|
|
url,
|
|
params: {
|
|
order: '-date',
|
|
},
|
|
});
|
|
const data = response.data;
|
|
|
|
ctx.state.data = {
|
|
title: `${name} - Comments`,
|
|
link: host,
|
|
item: data.map((item) => ({
|
|
title: item.subject,
|
|
description: he.escape(he.escape(item.content)).replace(/\n/g, '<br>'),
|
|
pubDate: new Date(item.date).toUTCString(),
|
|
link: item.web_url,
|
|
})),
|
|
};
|
|
};
|