You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+52-17
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ use App\Http\Controllers\Controller;
64
64
65
65
class FooController extends Controller {
66
66
67
-
public function index(Request $request)
67
+
public function index(Request $request)
68
68
{
69
69
$model = $request->keyable;
70
70
@@ -84,11 +84,11 @@ Sometimes you may not want to attach a model to an API key (if you wanted to hav
84
84
85
85
```php
86
86
<?php
87
-
87
+
88
88
return [
89
-
89
+
90
90
'allow_empty_models' => true
91
-
91
+
92
92
];
93
93
```
94
94
@@ -100,29 +100,29 @@ By default, laravel-keyable uses bearer tokens to authenticate requests. Attach
100
100
Authorization: Bearer <key>
101
101
```
102
102
103
-
You can change where the API key is retrieved from by altering the setting in the `keyable.php` config file. Supported options are: `bearer`, `header`, and `parameter`.
103
+
You can change where the API key is retrieved from by altering the setting in the `keyable.php` config file. Supported options are: `bearer`, `header`, and `parameter`.
104
104
```php
105
105
<?php
106
-
106
+
107
107
return [
108
-
108
+
109
109
'mode' => 'header',
110
-
110
+
111
111
'key' => 'X-Authorization',
112
-
112
+
113
113
];
114
114
```
115
115
116
116
Need to pass the key as a URL parameter? Set the mode to `parameter` and the key to the string you'll use in your URL:
117
117
```php
118
118
<?php
119
-
119
+
120
120
return [
121
-
121
+
122
122
'mode' => 'parameter',
123
-
123
+
124
124
'key' => 'api_key'
125
-
125
+
126
126
];
127
127
```
128
128
Now you can make requests like this:
@@ -167,7 +167,7 @@ class PostPolicy {
167
167
public function view(ApiKey $apiKey, Model $keyable, Post $post) {
@@ -223,6 +223,41 @@ class PostController extends Controller {
223
223
}
224
224
```
225
225
226
+
## Keyable Model Scoping
227
+
228
+
When using implicit model binding, you may wish to scope the first model such that it must be a child of the keyable model. Consider an example where we have a post resource:
229
+
230
+
```php
231
+
use App\Models\Post;
232
+
233
+
Route::get('/posts/{post}', function (Post $post) {
234
+
return $post;
235
+
});
236
+
```
237
+
238
+
You may instruct the package to apply the scope by invoking the `keyableScoped` method when defining your route:
239
+
240
+
```php
241
+
use App\Models\Post;
242
+
243
+
Route::get('/posts/{post}', function (Post $post) {
244
+
return $post;
245
+
})->keyableScoped();
246
+
```
247
+
248
+
The benefits of applying this scope are two-fold. First, models not belonging to the keyable model are caught before the controller. That means you don't have to handle this repeatedly in the controller methods. Second, models that don't belong to the keyable model will trigger a 404 response instead of a 403, keeping information hidden about other users.
249
+
250
+
You may use this in tandem with Laravel's scoping to ensure the entire heirarchy has a parent-child relationship starting with the keyable model:
251
+
252
+
```php
253
+
use App\Models\Post;
254
+
use App\Models\User;
255
+
256
+
Route::get('/users/{user}/posts/{post}', function (User $user, Post $post) {
0 commit comments