-
Notifications
You must be signed in to change notification settings - Fork 11k
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
[8.x] Allow can method to be chained onto route for quick authorization #39464
Conversation
…dleware additions
IMHO, |
Just an idea: What about updating/viewing resources? e.g. Route::post('posts/{post}')->can('update')->withModel('post');
// or
Route::post('posts/{post}')->can('update', Route::binding('post'));
// or
Route::post('posts/{post}')->canModel('update', 'post'); Here Though I am not really happy with any of my ideas. |
If I get it correctly, it allows specifying additional parameters using this syntax: I propose that not requiring the wrapping array would provide a more natural syntax and also make the implementation simpler:
And then the developer does This would also allow type hinting if that's something desired in the framework: |
You can install Laravel Idea plugin and you will get completions almost for all strings such as configs, validation rules, gate abilities, request data and more. Just try a free monthly trial and you won't be able to work without it. P.S. This is not an Ad. I just want to support the author) |
because of we used to use can as middleware, authorize can be confusing. |
I obviously have feelings / opinions about this stuff haha - but putting that to the side and looking at this objectively - I like this in isolation for sure. Wondering about scalability + consistency though. These might not be issues - but just some thoughts. Ending up with a mixture of Route::stuff()
->middleware(['auth'])
->can('create', Model::class); Having a first party named method for one, but not another... Route::stuff()
->middleware(['throttle:1,2,3'])
->can('create', Model::class); |
|
@timacdonald I had the same thought - this whole thing was somewhat inspired by thinking about your has-parameters package. I was looking at current middleware that require cumbersome argument inputs and landed on authorize and throttle. However, the throttle middleware's cumbersome syntax is no longer documented and instead we encourage named throttlers: https://laravel.com/docs/8.x/routing#rate-limiting So, that left the authorize middleware. And, it just hit me to make it a method like the I agree there are implications there as far as what middleware do we offer methods for. Obviously we can't do this for every middleware in Laravel, but my goal was to mainly think about it for the more cumbersome ones to define. This was also spurred by a recent PR that allows you to pass stringable objects as middleware, which got my juices flowing on this but ultimately decided on a dedicated method: #39439 |
I think it should be clear whether this If it is a middleware, then what happens if the condition does not match? Where to change the response or the reaction of the system in case of failure. |
@imanghafoori1 those are questions regarding the |
Instead of adding helpers, it could pass any non-existing method as a middleware using the arguments as parameters. This way you can use I believe the Router registrar is Macroable, so macros should come first, allowing the user to override before passing it as middleware. I'm gonna make a PR for this don't stop me. |
I love magic but that's probably a bit too far for me 😆 |
The whole framework is magic. PR is done 90%. Hold 10 min and you will see it. |
@Jubeki you just do |
Passing entire class names in the
can
middleware can be a bit cumbersome and annoying since you can't click through to the class definition.This adds a very simple helper for adding the
can
middleware to a given route.