mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 01:28:08 +08:00
58 lines
2.0 KiB
JavaScript
58 lines
2.0 KiB
JavaScript
const got = require('@/utils/got');
|
|
const { art } = require('@/utils/render');
|
|
const path = require('path');
|
|
|
|
module.exports = async (ctx) => {
|
|
const id = ctx.params.id;
|
|
|
|
const response = await got({
|
|
method: 'get',
|
|
url: `https://api.gotokeep.com/social/v3/people/${id}/home`,
|
|
headers: {
|
|
Referer: `https://show.gotokeep.com/users/${id}`,
|
|
},
|
|
});
|
|
|
|
// check user have post or not
|
|
if (response.data.data.entries.length === 0) {
|
|
throw Error('该用户运动日记为空');
|
|
}
|
|
|
|
response.data.data.entries[0] = response.data.data.entries[0].entries;
|
|
const data = response.data.data.entries.reduce((all, current) => all.concat(current.entries));
|
|
|
|
ctx.state.data = {
|
|
title: `${data[0].author.username} 的 Keep 动态`,
|
|
link: `https://show.gotokeep.com/users/${id}`,
|
|
language: 'zh-cn',
|
|
item: data
|
|
.filter((item) => 'title' in item.meta)
|
|
.map((item) => {
|
|
let images = [];
|
|
if (item.images) {
|
|
images = item.meta.picture ? item.images.concat(item.meta.picture) : item.images;
|
|
} else if (item.meta.picture) {
|
|
images = [item.meta.picture];
|
|
}
|
|
let imagesTpl = '';
|
|
images.forEach((item) => {
|
|
imagesTpl += `<img src="${item}">`;
|
|
});
|
|
|
|
const minute = Math.floor(item.meta.secondDuration / 60);
|
|
const second = item.meta.secondDuration - minute * 60;
|
|
return {
|
|
title: item.meta.title.trim(),
|
|
pubDate: item.created,
|
|
link: `https://show.gotokeep.com/entries/${item.id}`,
|
|
description: art(path.join(__dirname, 'templates/user.art'), {
|
|
item,
|
|
minute,
|
|
second,
|
|
imagesTpl,
|
|
}),
|
|
};
|
|
}),
|
|
};
|
|
};
|