dev-master
9999999-devOAuth2Client plugin for CakePHP
The Requires
- php >=5.4.16
- cakephp/cakephp ~3.0
The Development Requires
OAuth2Client plugin for CakePHP
This plugin provides OAuth2 Password grant scenario to your cake3 projects., (*1)
You can install this plugin into your CakePHP application using composer., (*2)
composer require ciricihq/cake-oauth2-client
This plugin needs the next two configations parameter blocks to fit your system requirements:, (*3)
Configure::write('App.OAuth2Client.routes', [ 'base_uri' => 'http://your-api.url', // The OAuth2 API endpoint 'access_token_path' => '/oauth/v2/token', // The access token url relative to base_uri 'refresh_token_path' => '/oauth/v2/token', // The refresh token url relative to base_uri ]);
Configure::write('App.OAuth2Client.keys', [ 'client_id' => 'your-client-id', // The client id needed to request the access token 'client_secret' => 'your-client-secret', // The client secret needed to request the access token ]);
You can add them in your app.php configuration file in the App array., (*4)
'App' => [ ... ... 'OAuth2Client' => [ 'routes' => [ 'base_uri' => 'http://your-awesome-oauth-api-endpoint.url' 'access_token_path' => '/oauth/v2/token', 'refresh_token_path' => '/oauth/v2/token', ], 'keys' => [ 'client_id' => 'you_client_provided_id', 'client_secret' => 'you_client_provided_secret' ] ] ],
To enable the plugin add the next line in your bootstrap.php, (*5)
Plugin::load('OAuth2Client', ['bootstrap' => true, 'routes' => true]);
In your AppController.php you should have the next codes in order to access your generated AccessToken., (*6)
public function initialize() { parent::initialize(); $this->loadComponent('Flash'); $this->loadComponent('Auth', [ 'loginAction' => [ 'controller' => 'AuthController', 'action' => 'login' ], 'loginRedirect' => [ 'plugin' => 'OAuth2Client', 'controller' => 'Auth', 'action' => 'login' ], 'authenticate' => [ 'OAuth2Client.OAuth2' ], 'authorize' => ['Controller'] ]); } public function beforeFilter(Event $event) { $authUser = $this->Auth->user(); // Here you are setting AccessToken, RefresToken and ExpiresIn to all the controllers and views in order to handle later // you can set cookies or whatever you need $this->set('authUser', $authUser); $this->set('access_token', $authUser['access_token']); $this->set('refresh_token', $authUser['refresh_token']); $this->set('token_expires', $authUser['expires_in']); } public function isAuthorized() { $user = $this->Auth->user(); if (isset($user['access_token'])) { return true; } return false; }
OAuth2Client plugin for CakePHP