const got = require('@/utils/got'); module.exports = async (ctx) => { // 传入参数 const username = String(ctx.params.username); // 添加参数username 和 发起 HTTP GET 请求 const response = await got({ method: 'get', url: `https://faexport.spangle.org.uk/user/${username}.json`, headers: { Referer: `https://faexport.spangle.org.uk/`, }, }); const data = response.data; // 收集传入的数据 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 (let i = 0; i < contact_information.length; i++) { for (const j in contact_information[i]) { if (j === 'title') { contact_result += `Title: ${contact_information[i][j]}
`; } else if (j === 'name') { contact_result += `Name: ${contact_information[i][j]}
`; } else if (j === 'link') { contact_result += `Link: ${contact_information[i][j]}
`; } } 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 item = []; item.push({ title: `${data.name}'s Current Profile`, description, link: `https://www.furaffinity.net/user/${username}/`, }); ctx.state.data = { // 源标题 title: `Userpage of ${data.name}`, // 源链接 link: `https://www.furaffinity.net/`, // 源说明 description: `Fur Affinity Userpage Profile of ${data.name}`, item, }; };