laravel-passport-claims
This package allows you to add claims to Laravel Passport JWT Tokens. If you have questions or comments, please open an issue.
Installation
Via Composer
$ composer require corbosman/laravel-passport-claims
Usage
This package sends the AccessToken class through a pipeline of classes to collect all the claims, similar to how laravel middleware works. Each class adds a claim to the token. For each claim that you want to add, you need to create a class like the example below. You can of course add multiple claims in a single class as well.
You can use an artisan command to generate a class for you. Just provide a path from the root of your app folder. The example below will create a class app/Claims/CustomClaim.php
$ php artisan claim:generate Claims/CustomClaim
<?php
namespace App\Claims;
class CustomClaim
{
public function handle($token, $next)
{
$token->addClaim('my-claim', 'my custom claim data');
return $next($token);
}
}
Because the Passport AccessToken is sent through the pipeline, you have access to methods on the AccessToken class. This is useful if you want to derive information from the token. For instance, look up user data based on the token user identifier. You can check the AccessToken class to see all the methods you can use.
<?php
namespace App\Claims;
use App\User;
class CustomClaim
{
public function handle($token, $next)
{
$user = User::find($token->getUserIdentifier());
$token->addClaim('email', $user-email);
return $next($token);
}
}
config
To tell this package which claims you want to add, you need to publish the config file and add a list of all your classes. To publish the config file, run the following command after installing this package.
php artisan vendor:publish --provider="CorBosman\Passport\ServiceProvider"
The config file will look like this.
<?php
return [
/*
|--------------------------------------------------------------------------
| JWT Claim Classes
|--------------------------------------------------------------------------
|
| Here you can add an array of classes that will each be called to add
| claims to the passport JWT token. See the readme for the interface that
| these classes should adhere to.
|
*/
'claims' => [
App\Claims\MyCustomClaim::class,
App\Claims\MyOtherCustomClaim::class
]
];
middleware
You can set a middleware on a route that checks for the existence of a specific claim. Add the middleware to your \App\Http\Kernel.php class:
protected $routeMiddleware = [
'claim' => \CorBosman\Passport\Http\Middleware\CheckForClaim::class,
];
Then assign this middleware to a route. Generally you would also add a passport middleware that checks for a valid token.
Route::middleware(['client', 'claim:my-claim'])->get('my-protected-route', function () {
return 'protected by claim';
});
Change log
Please see the changelog for more information on what has changed recently.
Contributing
Please see contributing.md for details.
Security
If you discover any security related issues, please email author email instead of using the issue tracker.
Credits
License
Please see the license file for more information.