-
Notifications
You must be signed in to change notification settings - Fork 77
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
routing.Router.sort_routes() does the wrong thing #360
Comments
Hi @remdragon There is no golden rule here: somebody else will likely get surprised if the framework didn´t sort routes. @app.router.get("/api/users/{user_id}")
async def get_user_info(user_id: str):
"""Returns information about a user by id"""
@app.router.get("/api/users/me")
async def get_current_user_info():
"""Returns information about the current user""" If the framework didn´t sort the routes to evaluate In summary:
When it comes to write documentation to help people who want to migrate from Flask, I really don't have time for that right now, but I will take it into consideration (I planned to write something about blueprints anyway). |
Your reasoning for the sorting makes sense, I can see myself making the same mistake. Would you be interested in a donation of a routing engine that doesn't require sorting because it always takes the most specific path? I believe for large systems it will probably be faster than regexing every possible url. I built such a thing for an internal project and would be willing to polish it up and donate it if there's interest. |
That sounds awesome. I only recommend to wait a bit, because in the last months I considered the introduction of a router protocol, and replacing the current dependency on the exact Router implementation with a light dependency to that protocol. If you look at the Cython code in https://github.com/Neoteroi/BlackSheep/blob/main/blacksheep/baseapp.pyx you can see that the router is only used for this single method, when the application is handling web requests (i.e. after routes have been defined): def get_match(request: Request) -> Response:
... Therefore I am planning to do something like: class RouterProtocol(Protocol):
def get_match(request: Request) -> Response:
...
...
class Application:
router: RouterProtocol This would enable easily alternative router implementations, like the one you are describing. In that scenario, it might also be placed in a dedicated package (just thinking 💭). The only reason why I didn't add the protocol, yet, is that I am still considering whether to change the code API to register routes. From one side I would like to keep the current code API to register request handlers, but on the other side I would like to keep the protocol as simple as possible, with a single method (and not those to register handlers |
I spent a lot of time trying to hunt down why a certain route wasn't getting executed. I was surprised to find that blacksheep sorts the rules but then chooses the first matched rule. I found this to be surprising behavior.
Here's the scenario I created which wasn't working (this is working code ported from flask):
Here's what I did to fix the problem for me:
I'm not sure the rational for auto-sorting the routes, but as I stated before, this was surprising behavior to me. Perhaps this could be opt-in behavior? I can't be the only one porting code from flask. Also the documentation might make more fuss about considerations to watch out for when porting from flask.
The text was updated successfully, but these errors were encountered: