Wildcard in route parameter regexp #2495

Open
bevacqua opened this Issue Jan 12, 2015 · 24 comments

Comments

Projects
None yet
8 participants

Route '/:username([a-z][a-z-]*)'
Route '/:username([a-z][a-z-]*)/:project([a-z][a-z0-9-]*)'

URL /someone/project

Expectation is that the second route should match.
Actual result is the first route matches because the * is considered as all the things rather than "zero or more" [a-z-].

Owner

dougwilson commented Jan 12, 2015

It's a limitation of the current version of path-to-regexp we use. A work-around would be to use the following route: /:username([a-z][a-z-]{0,}) (i.e. use {0,} in place of *).

dougwilson self-assigned this Jan 12, 2015

@dougwilson dougwilson added 4.x question and removed investigate labels Jan 12, 2015

Owner

dougwilson commented Jan 12, 2015

I'm going to check if the most recent (non-backwards-compatible) version of path-to-regexp handles this better.

Owner

dougwilson commented Jan 12, 2015

It does. So this should be fixed in 5.0, but as for 4.x, you'll probably have to just use the old syntax :/

Thanks for the quick feedback.

Owner

dougwilson commented Jan 12, 2015

Thanks for the quick feedback.

No problem :) Especially for @bevacqua

So is path-to-regexp not going to be updated until version 5.0? That's something I would really like to see as soon as possible. Also the website is misleading because it points to path-to-regexp and its regexp tester but it is currently very out of date.

Owner

dougwilson commented May 7, 2015

It's not that we don't want to upgrade path-to-regexp before 5.0, but all versions above where we are at have breaking changes and thus must wait until 5.0. We cannot upgrade path-to-regexp is a 4.x minor release if people's existing 4.x routes break.

As for website issues, please file them at https://github.com/strongloop/expressjs.com

bevacqua commented May 7, 2015

For what it's worth, I've been using {0,} without any inconvenients for a long while now.

I want the upgrade to path-to-regexp for named parameters that can include slashes /assets/:asset+. Do you know of a good workaround for that?

bevacqua commented May 7, 2015

Don't you need to use /assets/:asset(*) for that use case?

Perfect, thank you @bevacqua

Owner

dougwilson commented Jun 19, 2015

So I looked really hard at this issue for Express 4.x, and it can actually be fixed in path-to-regexp 0.1.x series. I'll look into issuing a PR there, but even then, the current 0.1.5 is buggy, so unless the buggyness is reverted or fixed, even if said PR is accepted, we still wouldn't be able to upgrade until the "index issue" is addressed.

dougwilson referenced this issue in pillarjs/path-to-regexp Jun 20, 2015

Closed

fix using asterisk inside param regexp #57

@dougwilson dougwilson added bug and removed question labels Jun 20, 2015

Contributor

tunniclm commented Mar 1, 2016

Looking through the related PR (pillarjs/path-to-regexp#57), it looks like it would not be possible to fix this in 4.x in a back-compatible way. Is that correct? Or is it just a matter of fixing it in express rather than path-to-regexp?

Owner

dougwilson commented Mar 1, 2016

Sorry, I never updated this issue. Yes, that is correct in that we can't get it fixed in Express 4.x. If you want to take a stab at it, please go ahead! A fresh look never hurts, because it feels like something that should be possible to fix.

Contributor

tunniclm commented Mar 2, 2016

So if I understand correctly, to fix the original issue we want to prevent translation of * within the () part of a token definition so that it will work as expected within the regexp (instread of taking the special meaning of applying to the token).

However, we can't do this because we found an example that documents /files/:file(*) as a valid usage where the * applies to the token, and we don't want to break anyone that reasonably expects documented and working behaviour not be broken by a minor or patch release.

Is that a correct summary?

Owner

blakeembrey commented Mar 2, 2016 edited

Yes.

Edit: It's possible people also relying on that feature now, so removing (and fixing this issue) would break. I know I've had at least one app in the future abusing the * feature within () and not just as (*).

Contributor

tunniclm commented Mar 2, 2016

The only reasonable way to make a back-compatible fix that I can think of would be to add an option you could enable to make Express replace *s inside the () with {0,} before sending it to path-to-regexp.

You could push that option up into a patch on path-to-regexp version 0.x instead if that sits better.

I'm happy to have a stab at that change if it's something that we think is desirable. There is a bit of a philosophy question there -- how keen are we on adding options that will be removed next major version to fix bugs that may cause breakage?

Otherwise, perhaps we should label this issue with something like "wontfix", "limitation" or "low-priority" to indicate we can't fix it in 4.x?

Owner

dougwilson commented Mar 2, 2016

The labels are accurate: it's a bug in 4.x, but wont be fixed until 5.0 due to limitations of the implementation we have in 4.x, for better or worse. We keep this issue open for two reasons:

  1. To remind us it needs to be addressed until there is a 5.0 release on npm with this addressed.
  2. Capture the conversation regarding an active bug for users to find when they have the same issue. They can also subscribe to this issue to know when it is fixed in a published version.

As for the potential solution above, any changes to building a regular expression need to land in our own dependency, otherwise we are not only defeating the purpose of owning our own dependencies, but we are cheating the community out of building complex applications, since they would have to copy and paste into their code instead of updating a dependency.

An option, to me, sounds crazy, because if the change would have to be behind a flag, then it sounds like it's not backwards compatible. The way the paths work is an intrinsic property of express, and so a flag to change this behavior at runtime means a community module can no longer know it's routes will just work on a major version of Express, rather they have to instruct users to change this flag or tough luck.

Contributor

tunniclm commented Mar 3, 2016

I wasn't thinking we would remove any labels or close the issue, I just wanted to add an extra label so it is easier to see the status/use in a query. Perhaps something like "fix-in-next-release" would capture it?

For the potential solution, yes, it was a bit of a stretch idea and certainly far from ideal and, on reflection, the existence of a simple workaround makes it unattractive.

I discounted other potential solutions (like special casing (*) or some subset of regexp-likes containing *) since I didn't find docs or tests that explained clearly how * should work inside (). So a reasonable user could form a conclusion about how it works (which would be backed up by the implementation) that would be broken by changing it at all by default.

It's a shame, because I think it is quite surprising behaviour.

bjacobt referenced this issue in openhybrid/object Oct 5, 2016

Open

fix for zipBackup download #32

clakech commented Feb 1, 2017

Thanks for documenting this in the issue, that helps a lot

What is the best workaround: using {0,} or (*) ?

both work but which one is a smaller technical debt ?

Owner

dougwilson commented Feb 1, 2017

Using {0,} should work the same with 5.x comes out while (*) will likely change meaning in 5, I believe.

I spent hours debugging until I found this issue. I understand the reasoning behind leaving the bug in 4.x, but maybe it (and the {0,} workaround) could at least be documented on http://expressjs.com/en/4x/api.html#path-examples or some other appropriate place?

Owner

dougwilson commented May 15, 2017

Hi @ttencate nothing wrong with documenting! At the bottom of every page on the site, there is a "Edit this page on GitHub." link; just click it and make the edit you think should be good and open a pull request : ) ! Alternatively, you can also file an issue on the website issue tracker.

Thanks, I somehow overlooked that link :) expressjs/expressjs.com#809

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment