Add /_metadata and /_module functions

Also deprecate ?meta and ?module query params.
This commit is contained in:
Michael Jackson
2019-02-23 22:04:16 -08:00
parent 90fecd39c2
commit 5df576c6be
5 changed files with 58 additions and 24 deletions

View File

@ -1,20 +1,15 @@
import createSearch from '../utils/createSearch';
/**
* Redirect old URLs that we no longer support.
*/
export default function redirectLegacyURLs(req, res, next) {
// Permanently redirect /_meta/path to /path?meta.
// Permanently redirect /_meta/path to /_metadata/path
if (req.path.match(/^\/_meta\//)) {
req.query.meta = '';
return res.redirect(301, req.path.substr(6) + createSearch(req.query));
return res.redirect(301, '/_metadata' + req.path.substr(6));
}
// Permanently redirect /path?json => /path?meta
if (req.query.json != null) {
delete req.query.json;
req.query.meta = '';
return res.redirect(301, req.path + createSearch(req.query));
return res.redirect(301, '/_metadata' + req.path);
}
next();