mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 04:57:37 +03:00
97 lines
3.1 KiB
JavaScript
97 lines
3.1 KiB
JavaScript
/* eslint-disable no-unused-vars */
|
|
////////////////////////////////////////////////////////
|
|
// IMPORTS
|
|
////////////////////////////////////////////////////////
|
|
import getAxiosInstance from '../utils/getAxiosInstance.js';
|
|
import catchAsyncErrors from '../utils/catchAsyncErrors.js';
|
|
import getAnswers from '../fetchers/getAnswers.js';
|
|
import getTopic from '../fetchers/getTopic.js';
|
|
import getProfile from '../fetchers/getProfile.js';
|
|
import getSearch from '../fetchers/getSearch.js';
|
|
import getOrSetCache from '../utils/getOrSetCache.js';
|
|
import { answersKey, profileKey, searchKey, topicKey } from '../utils/cacheKeys.js';
|
|
|
|
////////////////////////////////////////////////////////
|
|
// EXPORTS
|
|
////////////////////////////////////////////////////////
|
|
export const about = (req, res, next) => {
|
|
res.status(200).json({
|
|
status: 'success',
|
|
message: `make a request.
|
|
available endpoints are: '/slug', '/unanswered/slug', '/topic/slug', '/profile/slug', '/search?q=query', /?q=query.`,
|
|
});
|
|
};
|
|
|
|
export const answers = catchAsyncErrors(async (req, res, next) => {
|
|
const {
|
|
urlObj,
|
|
params: { slug },
|
|
query: { lang },
|
|
} = req;
|
|
|
|
const data = await getOrSetCache(answersKey(urlObj), getAnswers, slug, lang);
|
|
res.status(200).json({ status: 'success', data });
|
|
});
|
|
|
|
export const topic = catchAsyncErrors(async (req, res, next) => {
|
|
const {
|
|
urlObj,
|
|
params: { slug },
|
|
query: { lang },
|
|
} = req;
|
|
|
|
const data = await getOrSetCache(topicKey(urlObj), getTopic, slug, lang);
|
|
res.status(200).json({ status: 'success', data });
|
|
});
|
|
|
|
export const profile = catchAsyncErrors(async (req, res, next) => {
|
|
const {
|
|
urlObj,
|
|
params: { name },
|
|
query: { lang },
|
|
} = req;
|
|
|
|
const data = await getOrSetCache(profileKey(urlObj), getProfile, name, lang);
|
|
res.status(200).json({ status: 'success', data });
|
|
});
|
|
|
|
export const search = catchAsyncErrors(async (req, res, next) => {
|
|
const {
|
|
urlObj,
|
|
query: { lang },
|
|
} = req;
|
|
|
|
const searchText = urlObj.searchParams.get('q')?.trim(); // no search to perform if there isn't any query
|
|
let searchData = null;
|
|
|
|
if (searchText)
|
|
searchData = await getOrSetCache(searchKey(urlObj), getSearch, urlObj.search, lang);
|
|
|
|
res.status(200).json({ status: 'success', data: searchData });
|
|
});
|
|
|
|
export const unimplemented = (req, res, next) => {
|
|
res.status(501).json({
|
|
status: 'fail',
|
|
message: "This route isn't yet implemented. Check back sometime later!",
|
|
});
|
|
};
|
|
|
|
export const image = catchAsyncErrors(async (req, res, next) => {
|
|
const { domain, path } = req.params;
|
|
if (!domain.endsWith('quoracdn.net')) {
|
|
return res.status(403).json({
|
|
status: 'fail',
|
|
message: 'Invalid domain',
|
|
});
|
|
}
|
|
// changing defaults for this particular endpoint
|
|
const axiosInstance = getAxiosInstance();
|
|
axiosInstance.defaults.baseURL = `https://${domain}/`;
|
|
|
|
const imageRes = await axiosInstance.get(path, { responseType: 'stream' });
|
|
|
|
res.set('Content-Type', imageRes.headers['content-type']);
|
|
res.set('Cache-Control', 'public, max-age=315360000');
|
|
return imageRes.data.pipe(res);
|
|
});
|