Skip to content

Commit a38c1e9

Browse files
authored
Merge pull request #9 from givebutter/keyable-scope
Update README
2 parents 5a25ec1 + b23a03a commit a38c1e9

File tree

1 file changed

+52
-17
lines changed

1 file changed

+52
-17
lines changed

README.md

+52-17
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ use App\Http\Controllers\Controller;
6464

6565
class FooController extends Controller {
6666

67-
public function index(Request $request)
67+
public function index(Request $request)
6868
{
6969
$model = $request->keyable;
7070

@@ -84,11 +84,11 @@ Sometimes you may not want to attach a model to an API key (if you wanted to hav
8484

8585
```php
8686
<?php
87-
87+
8888
return [
89-
89+
9090
'allow_empty_models' => true
91-
91+
9292
];
9393
```
9494

@@ -100,29 +100,29 @@ By default, laravel-keyable uses bearer tokens to authenticate requests. Attach
100100
Authorization: Bearer <key>
101101
```
102102

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`.
104104
```php
105105
<?php
106-
106+
107107
return [
108-
108+
109109
'mode' => 'header',
110-
110+
111111
'key' => 'X-Authorization',
112-
112+
113113
];
114114
```
115115

116116
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:
117117
```php
118118
<?php
119-
119+
120120
return [
121-
121+
122122
'mode' => 'parameter',
123-
123+
124124
'key' => 'api_key'
125-
125+
126126
];
127127
```
128128
Now you can make requests like this:
@@ -167,7 +167,7 @@ class PostPolicy {
167167
public function view(ApiKey $apiKey, Model $keyable, Post $post) {
168168
return !is_null($keyable->posts()->find($post->id));
169169
}
170-
170+
171171
}
172172
```
173173

@@ -186,9 +186,9 @@ use Givebutter\LaravelKeyable\Facades\Keyable;
186186

187187
class AuthServiceProvider extends ServiceProvider
188188
{
189-
189+
190190
// ...
191-
191+
192192
protected $keyablePolicies = [
193193
Post::class => PostPolicy::class
194194
];
@@ -198,7 +198,7 @@ class AuthServiceProvider extends ServiceProvider
198198
// ...
199199
Keyable::registerKeyablePolicies($this->keyablePolicies);
200200
}
201-
201+
202202
}
203203
```
204204

@@ -223,6 +223,41 @@ class PostController extends Controller {
223223
}
224224
```
225225

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) {
257+
return $post;
258+
})->scopeBindings()->keyableScoped();
259+
```
260+
226261
## Artisan Commands
227262

228263
Generate an API key:

0 commit comments

Comments
 (0)