fix(algocasts): 修复无法正常获取到 ID 的问题 & feat: 增加 Soul 路由 (#2818)

This commit is contained in:
Singee
2019-08-11 01:25:21 +08:00
committed by DIYgod
parent b191322438
commit 081a038f4a
5 changed files with 108 additions and 6 deletions

View File

@@ -54,7 +54,11 @@ const makeFull = async (ctx, infos) => {
const badges = [];
$('.badge').each((index, badge) => {
badges.push($(badge).text());
const text = $(badge).text();
if (text !== '讨论') {
badges.push(text);
}
});
info.description = `<h1>${info.title}</h1><div>${badges.join(' | ')}</div><div>${$('#my-content p').html()}</div>`;
@@ -79,11 +83,9 @@ module.exports = async (ctx) => {
$('tr')
.slice(1)
.each((i, e) => {
const id = parseInt(
$(e)
.find('th')
.text()
);
const id = $(e)
.find('th')
.text();
const titleLabel = $(e).find('td a');
const title = `${id}. ${titleLabel.text()}`;
const episode = titleLabel

71
lib/routes/soul/index.js Normal file
View File

@@ -0,0 +1,71 @@
const got = require('@/utils/got');
const generateResponse = async (info, items) => ({
// 源标题
title: `${info.name}」的瞬间`,
// 源链接
link: `https://w3.soulapp-inc.cn/activity/#/web/user?userIdEcpt=${info.id}`,
item: items.map((item) => ({
title: `${info.name}」的新瞬间:${item.pureContent}`,
author: info.name,
description: item.content,
pubDate: new Date(item.createTime).toUTCString(),
guid: item.id,
link: `https://w3.soulapp-inc.cn/activity/#/web/topic/detail?postIdEcpt=${item.id}`,
})),
});
module.exports = async (ctx) => {
const userIdEcpt = ctx.params.id;
const response = await got({
method: 'get',
url: 'https://api.soulapp.cn/html/v2/post/homepage?userIdEcpt=' + userIdEcpt,
});
// 瞬间信息(数组)
let items = response.data.data;
// 用户信息
const info = {
id: userIdEcpt,
name: null,
};
if (items.length === 0) {
// 未发表过任何瞬间
const infoResponse = await got({
method: 'get',
url: 'https://api.soulapp.cn/html/v2/user/info?userIdEcpt=' + userIdEcpt,
});
const infoData = infoResponse.data.data;
info.name = infoData.signature;
} else {
// 发表过瞬间 -> 直接从瞬间信息取用户名
info.name = items[0].signature;
}
items = items.map((item) => {
const pureContent = `${item.content}`;
let content = pureContent.replace(/\n/, '<br />');
if (item.attachments) {
for (const attachment of item.attachments) {
if (attachment.type === 'IMAGE') {
content += '<br />';
content += `<img src="${attachment.fileUrl}" />`;
}
}
}
return {
id: item.postIdEcpt,
pureContent,
content,
createTime: item.createTime,
};
});
ctx.state.data = await generateResponse(info, items);
};