mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 04:11:26 +08:00
18 lines
529 B
JavaScript
18 lines
529 B
JavaScript
const axios = require('../../utils/axios');
|
|
|
|
module.exports = {
|
|
getPatchnameFromID: async (ctx, id) => {
|
|
const key = 'patchwork-kernel-org-patchname-from-id-' + id;
|
|
let name = await ctx.cache.get(key);
|
|
if (!name) {
|
|
const patchDetail = await axios({
|
|
method: 'get',
|
|
url: `https://patchwork.kernel.org/api/patches/${id}/`,
|
|
});
|
|
name = patchDetail.data.name;
|
|
ctx.cache.set(key, name);
|
|
}
|
|
return name;
|
|
},
|
|
};
|