Package Data | |
---|---|
Maintainer Username: | cuttlas |
Package Create Date: | 2014-10-30 |
Package Last Update: | 2014-10-30 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-10-27 15:13:17 |
Package Statistics | |
---|---|
Total Downloads: | 7 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 0 |
Total Forks: | 1 |
Total Open Issues: | 0 |
A wrapper package for the standards compliant OAuth 2.0 authorization server and resource server written in PHP by the League of Extraordinary Packages.
The package assumes you have a good-enough knowledge of the principles behind the OAuth 2.0 Specification.
The easiest way to install this package is via Laravel Package Installer, this will set all the service providers and aliases for you. Run this artisan command to install the package:
php artisan package:install lucadegasperi/oauth2-server-laravel
alternatively, you can manually install the package via composer. add the following line to your composer.json file:
"lucadegasperi/oauth2-server-laravel": "1.0.x"
Add this line of code to the providers
array located in your app/config/app.php
file:
'LucaDegasperi\OAuth2Server\OAuth2ServerServiceProvider',
And this lines to the aliases
array:
'AuthorizationServer' => 'LucaDegasperi\OAuth2Server\Facades\AuthorizationServerFacade',
'ResourceServer' => 'LucaDegasperi\OAuth2Server\Facades\ResourceServerFacade',
In order to use the OAuth2 server publish its configuration first
php artisan config:publish lucadegasperi/oauth2-server-laravel
Afterwards edit the file app/config/packages/lucadegasperi/oauth2-server-laravel/oauth2.php
to suit your needs.
This package comes with all the migrations you need to run a full featured oauth2 server. Run:
php artisan migrate --package="lucadegasperi/oauth2-server-laravel"
You can use different grant types to issue an access token depending on which suits your use cases. A detailed description of the different grant types can be found here
A client should make a POST
request with the appropriate parameters (depending on the grant type used) to an access token endpoint like the one defined here. This package will take care of all the fuss for you.
Route::post('oauth/access_token', function()
{
return AuthorizationServer::performAccessTokenFlow();
});
The most common grant type is the authorization_code
. It's also the longest to setup, but don't worry, it will be easy.
First the client must obtain the authorization (not an access token) from the resource owner to access the resources on its behalf. The client application should redirect the user to the authorization page with the correct query string parameters, for example:
https://www.example.com/oauth/authorize?
client_id=the_client_id&
redirect_uri=client_redirect_uri&
response_type=code&
scope=scope1,scope2&
state=1234567890
Route::get('/oauth/authorize', array('before' => 'check-authorization-params|auth', function()
{
// get the data from the check-authorization-params filter
$params = Session::get('authorize-params');
// get the user id
$params['user_id'] = Auth::user()->id;
// display the authorization form
return View::make('authorization-form', array('params' => $params));
}));
Route::post('/oauth/authorize', array('before' => 'check-authorization-params|auth|csrf', function()
{
// get the data from the check-authorization-params filter
$params = Session::get('authorize-params');
// get the user id
$params['user_id'] = Auth::user()->id;
// check if the user approved or denied the authorization request
if (Input::get('approve') !== null) {
$code = AuthorizationServer::newAuthorizeRequest('user', $params['user_id'], $params);
Session::forget('authorize-params');
return Redirect::to(AuthorizationServer::makeRedirectWithCode($code, $params));
}
if (Input::get('deny') !== null) {
Session::forget('authorize-params');
return Redirect::to(AuthorizationServer::makeRedirectWithError($params));
}
}));
If the authorization process is successful the client will be redirected to its redirect_uri
parameter with an authorization code in the query string like in the example below
https://www.yourclient.com/redirect?code=XYZ123
The client can now use this code to make an access token request in the background.
POST https://www.example.com/oauth/access_token?
grant_type=authorization_code&
client_id=the_client_id&
client_secret=the_client_secret&
redirect_uri=client_redirect_uri&
code=the_authorization_code&
scope=scope1,scope2&
state=123456789
This grant type is the easiest to use and is ideal for highly trusted clients. To enable this grant type add the code below to the grant_types
array located at app/config/packages/lucadegasperi/oauth2-server-laravel/oauth2.php
'password' => array(
'class' => 'League\OAuth2\Server\Grant\Password',
'access_token_ttl' => 604800,
'callback' => function($username, $password){
$credentials = array(
'email' => $username,
'password' => $password,
);
$valid = Auth::validate($credentials);
if (!$valid) {
return false;
}
return Auth::getProvider()->retrieveByCredentials($credentials)->id;
}
),
An example request for an access token using this grant type might look like this.
POST https://www.example.com/oauth/access_token?
grant_type=password&
client_id=the_client_id&
client_secret=the_client_secret&
username=the_username&
password=the_password&
scope=scope1,scope2&
state=123456789
Sometimes the client and the resource owner are the same thing. This grant types allows for client to access your API on their own behalf. To enable this grant type add the code below to the grant_types
array located at app/config/packages/lucadegasperi/oauth2-server-laravel/oauth2.php
'client_credentials' => array(
'class' => 'League\OAuth2\Server\Grant\ClientCredentials',
'access_token_ttl' => 3600,
),
An example request for an access token using this grant type might look like this.
POST https://www.example.com/oauth/access_token?
grant_type=client_credentials&
client_id=the_client_id&
client_secret=the_client_secret&
scope=scope1,scope2&
state=123456789
Access tokens do expire but by using the refresh token flow you can exchange a refresh token for an access token.
When this grant type is enabled, every access token request will also issue a refresh token you can use to get a new access token when the current one expires. Configure this grant type in the grant_types
array located at app/config/packages/lucadegasperi/oauth2-server-laravel/oauth2.php
like this:
'refresh_token' => array(
'class' => 'League\OAuth2\Server\Grant\RefreshToken',
'access_token_ttl' => 3600,
'refresh_token_ttl' => 604800,
'rotate_refresh_tokens' => false,
),
An example request for an access token using this grant type might look like this.
POST https://www.example.com/oauth/access_token?
grant_type=refresh_token&
refresh_token=the_refresh_token&
client_id=the_client_id&
client_secret=the_client_secret&
state=123456789
You can protect your laravel routes with oauth by applying the oauth
before filter to them like in the example shown below
Route::get('secure-route', array('before' => 'oauth', function(){
return "oauth secured route";
}));
Additionaly you can provide the allowed scopes to the oauth
before filter by passing them in the filter name.
Route::get('secure-route', array('before' => 'oauth:scope1,scope2', function(){
return "oauth secured route";
}));
An interesting addition is the possibility to limit an endpoint to a specific owner type when using the client credentials grant type. It can be achieved by adding the oauth-owner
before filter to your route.
Route::get('secure-route', array('before' => 'oauth:scope1,scope2|oauth-owner:client', function(){
return "oauth secured route for clients only";
}));
To access any api route, after issuing a token you must pass it as a parameter to the api call:
http://www.example.com/secure-route?access_token= 'valid_token'
When accessing your API with an access token, you might want to know who's the owner of that token. The server makes it trivial.
$ownerId = ResourceServer::getOwnerId();
When using the client_credentials
grant type you might have users mixed with clients, to distinguish them use the following method
$ownerType = ResourceServer::getOwnerType();
The aim of this package is to make working with oauth2 server stuff in Laravel a breeze. You can still access all the undelying power of the league/oauth2-server package via the ResourceServer
and AuthorizationServer
facades.
Bugs and feature request are tracked on GitHub
This package is released under the MIT License.
The code on which this package is based, is principally developed and maintained by Alex Bilbie.