mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-04 13:37:39 +03:00
66 lines
2.1 KiB
JavaScript
66 lines
2.1 KiB
JavaScript
////////////////////////////////////////////////////////
|
|
// IMPORTS
|
|
////////////////////////////////////////////////////////
|
|
import AppError from '../utils/AppError.js';
|
|
import fetcher from './fetcher.js';
|
|
import { basename } from '../utils/misc.js'
|
|
|
|
////////////////////////////////////////////////////////
|
|
// FUNCTION
|
|
////////////////////////////////////////////////////////
|
|
const getTopic = async slug => {
|
|
// getting data and destructuring it in case it exists, else throwing an error
|
|
const res = await fetcher(`topic/${slug}`);
|
|
|
|
const {
|
|
data: { topic: rawData },
|
|
} = JSON.parse(res);
|
|
|
|
if (!rawData)
|
|
throw new AppError(
|
|
"Topic details couldn't be fetched. Recheck the URL, or resend the request if you believe the URL is correct.",
|
|
404
|
|
);
|
|
|
|
const data = {
|
|
tid: rawData.tid,
|
|
name: rawData.name,
|
|
url: rawData.url,
|
|
image: rawData.photoUrl,
|
|
aliases: rawData.aliases,
|
|
numFollowers: rawData.numFollowers,
|
|
numQuestions: rawData.numQuestions,
|
|
// isLocked: rawData.isLocked,
|
|
isAdult: rawData.adult,
|
|
mostViewedAuthors: rawData.mostViewedAuthors.map(author => ({
|
|
uid: author.user.uid,
|
|
name: `${author.user.names[0].givenName} ${author.user.names[0].familyName}`,
|
|
profile: author.user.profileUrl,
|
|
image: author.user.profileImageUrl,
|
|
isAnon: author.user.isAnon,
|
|
isVerified: author.user.isVerified,
|
|
numFollowers: author.user.followerCount,
|
|
numViews: author.numViews,
|
|
numAnswers: author.numPublicMostViewedAnswers,
|
|
credential: author.user.bestCredential?.translatedString,
|
|
})),
|
|
relatedTopics: rawData.relatedTopics.map(topic => ({
|
|
tid: topic.tid,
|
|
name: topic.name,
|
|
url: topic.url,
|
|
image: topic.photoUrl,
|
|
numFollowers: topic.numFollowers,
|
|
})),
|
|
};
|
|
|
|
return data;
|
|
};
|
|
|
|
////////////////////////////////////////////////////////
|
|
// EXPORTS
|
|
////////////////////////////////////////////////////////
|
|
export default getTopic;
|
|
|
|
if (process.argv.length == 3 && basename(process.argv[1]) == 'getTopic.js') {
|
|
console.log(await getTopic(process.argv[2]))
|
|
}
|