Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check url with locale prefixes and compare with redirectSlug #16

Merged
merged 8 commits into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

- Fixes redirections when using locales prefixes. The locale prefix must be added to the `redirectSlug` to avoid conflicts with other locales.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

locale prefixes


## 1.2.2 (2023-03-06)

- Removes `apostrophe` as a peer dependency.
Expand Down
53 changes: 29 additions & 24 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ module.exports = {
},
init(self) {
self.addUnlocalizedMigration();
self.createIndexes();
},
handlers(self) {
return {
Expand Down Expand Up @@ -146,34 +147,35 @@ module.exports = {
return {
async checkRedirect(req, res, next) {
try {
const slug = req.url;
const pathOnly = slug.split('?')[0];
const redirectRegEx = new RegExp(`^redirect-${self.apos.util.regExpQuote(pathOnly)}(\\?.*)?$`);
const results = await self.find(req, { slug: redirectRegEx }).toArray();
let target;
if (results) {
if (results.some(result => result.redirectSlug === slug)) {
target = results.find(result => result.redirectSlug === slug);
} else if (results.some(result => result.redirectSlug === pathOnly && result.ignoreQueryString)) {
target = results.find(result => result.redirectSlug === pathOnly && result.ignoreQueryString);
}
const slug = req.originalUrl;
const [ pathOnly ] = slug.split('?');
const results = await self
.find(req, { $or: [ { redirectSlug: slug }, { redirectSlug: pathOnly } ] })
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This may be a slight performance hit, but OK. Time to make this code simple.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You think it's less efficient than a regex query?
I added an index on redirectSlug also.

.toArray();

if (target) {
let status = parseInt(target.statusCode);
if (!results.length) {
return await emitAndRedirectOrNext();
}

if (isNaN(status) || !status) {
status = 302;
}
const target = results.find(({ redirectSlug }) => redirectSlug === slug) ||
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same logic as before here just condensed and avoid two useless iterations (some in the if statements).

results.find(({
redirectSlug,
ignoreQueryString
}) => redirectSlug === pathOnly && ignoreQueryString);

if (target.urlType === 'internal' && target._newPage && target._newPage[0]) {
return req.res.redirect(status, target._newPage[0]._url);
} else if (target.urlType === 'external' && target.externalUrl.length) {
return req.res.redirect(status, target.externalUrl);
} else {
return await emitAndRedirectOrNext();
}
}
if (!target) {
return await emitAndRedirectOrNext();
}

const parsedCode = parseInt(target.statusCode);
const status = (parsedCode && !isNaN(parsedCode)) ? parsedCode : 302;

if (target.urlType === 'internal' && target._newPage && target._newPage[0]) {
return req.res.rawRedirect(status, target._newPage[0].slug);
} else if (target.urlType === 'external' && target.externalUrl.length) {
return req.res.rawRedirect(status, target.externalUrl);
}

return await emitAndRedirectOrNext();
} catch (e) {
self.apos.util.error(e);
Expand Down Expand Up @@ -214,6 +216,9 @@ module.exports = {
}
}
});
},
createIndexes() {
self.apos.doc.db.createIndex({ redirectSlug: 1 });
}
};
}
Expand Down