mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-04 21:47:38 +03:00
this commit adds long awaited search feature fix https://github.com/zyachel/quetre/issues/21
68 lines
2.3 KiB
JavaScript
68 lines
2.3 KiB
JavaScript
/* eslint-disable no-unused-vars */
|
|
////////////////////////////////////////////////////////
|
|
// IMPORTS
|
|
////////////////////////////////////////////////////////
|
|
import axiosInstance from '../utils/axiosInstance.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';
|
|
|
|
////////////////////////////////////////////////////////
|
|
// EXPORTS
|
|
////////////////////////////////////////////////////////
|
|
export const about = (req, res, next) => {
|
|
res.status(200).json({
|
|
status: 'success',
|
|
message:
|
|
"make a request. available endpoints are: '/some-slug', '/unanswered/some-slug'",
|
|
});
|
|
};
|
|
|
|
export const answers = catchAsyncErrors(async (req, res, next) => {
|
|
const data = await getAnswers(req.params.slug);
|
|
res.status(200).json({ status: 'success', data });
|
|
});
|
|
|
|
export const topic = catchAsyncErrors(async (req, res, next) => {
|
|
const data = await getTopic(req.params.slug);
|
|
res.status(200).json({ status: 'success', data });
|
|
});
|
|
|
|
export const profile = catchAsyncErrors(async (req, res, next) => {
|
|
const data = await getProfile(req.params.name);
|
|
res.status(200).json({ status: 'success', data });
|
|
});
|
|
|
|
export const search = catchAsyncErrors(async (req, res, next) => {
|
|
const searchText = req.urlObj.searchParams.get('q')?.trim(); // no search to perform if there isn't any query
|
|
|
|
let searchData = null;
|
|
if (searchText) searchData = await getSearch(req.urlObj.search);
|
|
|
|
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) => {
|
|
if (!req.params.domain.endsWith('quoracdn.net')) {
|
|
return res.status(403).json({
|
|
status: 'fail',
|
|
message: 'Invalid domain',
|
|
});
|
|
}
|
|
|
|
const imageRes = await axiosInstance.get(
|
|
`https://${req.params.domain}/${req.params.path}`,
|
|
{ responseType: 'arraybuffer' }
|
|
);
|
|
res.set('Content-Type', imageRes.headers['content-type']);
|
|
res.status(200).send(imageRes.data);
|
|
});
|