rsshub
Version:
Make RSS Great Again!
57 lines (51 loc) • 1.62 kB
text/typescript
import { Route } from '@/types';
import ofetch from '@/utils/ofetch';
export const route: Route = {
path: '/commissions/:username',
name: 'Commissions',
url: 'furaffinity.net',
categories: ['social-media'],
example: '/furaffinity/commissions/fender',
maintainers: ['TigerCubDen', 'SkyNetX007'],
parameters: { username: 'Username, can find in userpage' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
nsfw: true,
},
radar: [
{
source: ['furaffinity.net/commissions/:username'],
target: '/commissions/:username',
},
],
handler,
};
async function handler(ctx) {
const { username } = ctx.req.param();
const url = `https://faexport.spangle.org.uk/user/${username}/commissions.json?full=1`;
const data = await ofetch(url, {
method: 'GET',
headers: {
Referer: 'https://faexport.spangle.org.uk/',
},
});
const items = data.map((item) => ({
title: item.title,
link: item.submission.link,
guid: item.submission.id,
description: `${item.description} <br> <img src="${item.submission.thumbnail}">`,
author: username,
}));
return {
allowEmpty: true,
title: `Fur Affinity | ${username}'s Commissions`,
link: `https://www.furaffinity.net/commissions/${username}`,
description: `Fur Affinity ${username}'s Commissions`,
item: items,
};
}