Especially for a microservices architecture, authentication and authorization functions should be delegated. Protecting resources is best done by implementing the web services as a pure OAuth2 resource server, relying on token verification on a remote authorization server., (*1)
Laravel Middleware for OAuth 2.0 Token Introspection
Laravel Passport provides a full OAuth2 server implementation, yet misses optional OAuth2 functionalties as defined in OAuth 2.0 Token Introspection (RFC7662)., (*2)
The Introspection endpoint is provided by ipunkt/laravel-oauth-introspection. This package provides the middleware required for verifying an access token against a remote Introspection endpoint., (*3)
Note: To prevent token scanning attacks, the endpoint MUST also require some form of authorization to access this endpoint. The provided middleware assumes the introspection endpoint requires an OAuth2 Bearer token retrieved using a client credentials grant. Therefore, you MUST provide a valid client id and client secret., (*4)
Installation
Install the package on your resource server, (*5)
composer require designmynight/laravel-oauth-introspect-middleware
and add the Service Provider in your config/app.php, (*6)
~~~.php
'providers' => [
// [..]
\DesignMyNight\Laravel\OAuth2\IntrospectMiddlewareServiceProvider::class
// [..]
];, (*7)
and add the MiddleWare in your `App/Http/Kernel.php`
~~~.php
protected $routeMiddleware = [
// [..]
'verifyaccesstoken' => \DesignMyNight\Laravel\OAuth2\VerifyAccessToken::class,
// [..]
];
publish the configuration, (*8)
php artisan vendor:publish
Finally in your .env file, define the following properties, (*9)
~~~.properties, (*10)
Url of the authorization server
AUTHORIZATION_SERVER_URL="https://authorization.server.dom", (*11)
AUTHORIZATION_SERVER_CLIENT_ID="123", (*12)
The client secret
AUTHORIZATION_SERVER_CLIENT_SECRET="abcdefg", (*13)
Endpoint for requesting the access token
AUTHORIZATION_SERVER_TOKEN_URL="${AUTHORIZATION_SERVER_URL}/oauth/token", (*14)
AUTHORIZATION_SERVER_INTROSPECT_URL="${AUTHORIZATION_SERVER_URL}/oauth/introspect", (*15)
Optional configuration for requesting an OAuth2 access tokens using the implicit grant flow
AUTHORIZATION_SERVER_AUTHORIZATION_URL="${AUTHORIZATION_SERVER_URL}/oauth/authorize"
AUTHORIZATION_SERVER_REDIRECT_URL=https://my.machine.dom, (*16)
Now, use the middleware.
~~~.php
Route::group(['middleware'=>'verifyaccesstoken:required-scope1,required-scope2'], function () {
Route::get('/endpoint1', 'UserController@index');
Route::resource('/resource', 'OrderController');
});