import type { Route } from '@/types';
import ofetch from '@/utils/ofetch';
export const route: Route = {
path: '/user/:username',
name: 'Userpage',
url: 'furaffinity.net',
categories: ['social-media'],
example: '/furaffinity/user/fender/nsfw',
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/user/:username'],
target: '/user/:username',
},
],
handler,
};
async function handler(ctx) {
const { username } = ctx.req.param();
const url = `https://faexport.spangle.org.uk/user/${username}.json`;
const data = await ofetch(url, {
method: 'GET',
headers: {
Referer: 'https://faexport.spangle.org.uk/',
},
});
// 收集传入的数据
const name = data.name;
const profile = data.profile;
const account_type = data.profile;
const avatar = `
`;
const full_name = data.full_name;
const artist_type = data.artist_type;
const user_title = data.user_title;
const registered_since = data.registered_since;
const current_mood = data.current_mood;
const artist_profile = data.artist_profile;
const pageviews = data.pageviews;
const submissions = data.submissions;
const comments_received = data.comments_received;
const comments_given = data.comments_given;
const journals = data.journals;
const favorite = data.favorites;
const watchers_count = data.watchers.count;
const watching_count = data.watching.count;
const artist_information = data.artist_information;
const species = artist_information.Species;
const personal_quote = artist_information['Personal Quote'];
const music_type_genre = artist_information['Music Type/Genre'];
const favorites_movie = artist_information['Favorite Movie'];
const favorites_game = artist_information['Favorite Game'];
const favorites_game_platform = artist_information['Favorite Game Platform'];
const favorites_artist = artist_information['Favorite Artist'];
const favorites_animal = artist_information['Favorite Animal'];
const favorites_website = artist_information['Favorite Website'];
const favorites_food = artist_information['Favorite Food'];
const contact_information = data.contact_information;
let contact_result = 'none
';
// 对一个或多个用户联系方式进行遍历
if (contact_information) {
contact_result = '';
for (const element of contact_information) {
for (const x in element) {
switch (x) {
case 'title':
contact_result += `Title: ${element[x]}
`;
break;
case 'name':
contact_result += `Name: ${element[x]}
`;
break;
case 'link':
contact_result += `Link: ${element[x]}
`;
break;
default:
throw new Error(`Unknown type: ${x}`);
}
}
contact_result += `
`;
}
}
const description = `Name: ${name}
Profile: ${profile}
Account Type: ${account_type}
Avatar: ${avatar}
Full Name: ${full_name}
Artist Type: ${artist_type}
User Title: ${user_title}
Registered Since: ${registered_since}
Current Mood: ${current_mood}
Artist Profile:
${artist_profile}
Pageviews: ${pageviews}
Submissions: ${submissions}
Comments_Received: ${comments_received}
Comments Given: ${comments_given}
Journals: ${journals}
Favorite: ${favorite}
Artist Information:
Species: ${species}
Personal Quote: ${personal_quote}
Music Type/Genre: ${music_type_genre}
Favorite Movie: ${favorites_movie}
Favorite Game: ${favorites_game}
Favorite Game Platform: ${favorites_game_platform}
Favorite Artist: ${favorites_artist}
Favorite Animal: ${favorites_animal}
Favorite Website: ${favorites_website}
Favorite Food: ${favorites_food}
Contact Information:
${contact_result}
Watchers Count: ${watchers_count}
Watching Count: ${watching_count} `;
const items: { title: string; link: string; description: string }[] = [
{
title: `${data.name}'s User Profile`,
link: `https://www.furaffinity.net/user/${username}`,
description,
},
];
return {
title: `Fur Affinity | Userpage of ${data.name}`,
link: `https://www.furaffinity.net/user/${username}`,
description: `Fur Affinity User Profile of ${data.name}`,
item: items,
};
}