const got = require('@/utils/got'); const cheerio = require('cheerio'); const { parseDate } = require('@/utils/parse-date'); module.exports = async (ctx) => { const source = ctx.params.source ?? ''; const id = ctx.params.id; const rootUrl = 'https://kemono.party'; const apiUrl = `${rootUrl}/api/discord/channels/lookup?q=${id}`; const currentUrl = `${rootUrl}/${source ? `${source}/${source === 'discord' ? `server/${id}` : `user/${id}`}` : 'posts'}`; const headers = { cookie: '__ddg2=sBQ4uaaGecmfEUk7', }; const response = await got({ method: 'get', url: source === 'discord' ? apiUrl : currentUrl, headers, }); let items = [], title = ''; if (source === 'discord') { title = `Posts of ${id} from Discord | Kemono`; await Promise.all( response.data.map(async (channel) => { await ctx.cache.tryGet(channel.id, async () => { const channelResponse = await got({ method: 'get', url: `${rootUrl}/api/discord/channel/${channel.id}?skip=0`, headers, }); items.push( ...channelResponse.data .filter((i) => i.content || i.attachments) .map((i) => ({ title: i.content, description: (i.content ? `
${i.content}
` : '') + (i.attachments ? i.attachments.map((a) => `