UNPKG

rsshub

Version:
33 lines (28 loc) 1.21 kB
const config = require('@/config').value; const utils = require('./utils'); module.exports = async (ctx) => { if (!config.fanfou || !config.fanfou.consumer_key || !config.fanfou.consumer_secret || !config.fanfou.username || !config.fanfou.password) { throw new Error('Fanfou RSS is disabled due to the lack of <a href="https://docs.rsshub.app/deploy/config#route-specific-configurations">relevant config</a>'); } const fanfou = await utils.getFanfou(); const timeline = await fanfou.get('/statuses/home_timeline', { mode: 'lite', format: 'html' }); const result = timeline.map((item) => { let img_html = ''; if (item.photo) { img_html = `<br/><img src="${item.photo.originurl}" alt="饭否动态图片"/>`; } return { title: item.plain_text, author: item.user.name, description: item.text + img_html, pubDate: item.created_at, link: `http://fanfou.com/statuses/${item.id}`, }; }); ctx.state.data = { title: `我的饭否动态`, link: `https://fanfou.com/home`, description: `我的饭否动态`, item: result, }; };