fix(search): remove broken search route

can't do searches now unless logged-in

BREAKING CHANGE: any search request will be responded with a 410
This commit is contained in:
zyachel 2024-04-08 00:33:16 +05:30
parent a0ac36a174
commit f49062d44a
13 changed files with 36 additions and 489 deletions

View file

@ -7,9 +7,8 @@ import getAnswers from '../fetchers/getAnswers.js';
import getTopic from '../fetchers/getTopic.js';
import { acceptedLanguages, nonSlugRoutes } from '../utils/constants.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';
import { answersKey, profileKey, topicKey } from '../utils/cacheKeys.js';
////////////////////////////////////////////////////////
// EXPORTS
@ -101,28 +100,6 @@ export const profile = catchAsyncErrors(async (req, res, next) => {
});
});
export const search = catchAsyncErrors(async (req, res, next) => {
const {
urlObj,
query: { lang },
} = req;
const searchText = urlObj.searchParams.get('q')?.trim();
let searchData = null;
if (searchText)
searchData = await getOrSetCache(searchKey(urlObj), getSearch, urlObj.search, lang);
res.status(200).render('search', {
data: { searchData, searchText },
meta: {
title: searchText ? `Results for '${searchText}'` : 'Search',
url: urlObj,
imageUrl: `${urlObj.origin}/icon.svg`,
description: searchText ? `results for '${searchText}'` : 'search page',
},
});
});
const regex = /^https:\/\/(.{2,})\.quora\.com(\/.*)$/; // local helper constant
export const redirect = (req, res, next) => {
const url = req.originalUrl.replace('/redirect/', ''); // removing `/redirect/` part.
@ -158,3 +135,20 @@ export const unimplemented = (req, res, next) => {
},
});
};
export const gone = (req, res, next) => {
const data = {
message: "This route doesn't exist anymore.",
statusCode: 410,
};
res.status(data.statusCode).render('error', {
data,
meta: {
title: 'Gone',
url: req.urlObj,
imageUrl: `${req.urlObj.origin}/icon.svg`,
description: data.message,
},
});
};