Installation is a quick 6 step process:
- Download FOSOAuthServerBundle
- Configure the Autoloader
- Enable the Bundle
- Create your model class
- Configure your application's security.yml
- Configure the FOSOAuthServerBundle
Ultimately, the FOSOAuthServerBundle files should be downloaded to the
vendor/bundles/FOS/OAuthServerBundle
directory and the oauth2-php
files to
the vendor/oauth2-php
directory.
This can be done in several ways, depending on your preference. The first method is the standard Symfony2 method.
Using the vendors script
Add the following lines in your deps
file:
[FOSOAuthServerBundle]
git=git://github.com/FriendsOfSymfony/FOSOAuthServerBundle.git
target=bundles/FOS/OAuthServerBundle
[oauth2-php]
git=git://github.com/arnaud-lb/oauth2-php.git
Now, run the vendors script to download the bundle:
$ php bin/vendors install
Using submodules
If you prefer instead to use git submodules, then run the following:
$ git submodule add git://github.com/FriendsOfSymfony/FOSOAuthServerBundle.git vendor/bundles/FOS/OAuthServerBundle
$ git submodule add git://github.com/FriendsOfSymfony/oauth2-php.git vendor/oauth2-php
$ git submodule update --init
Add the FOS
and OAuth2
namespaces to your autoloader:
<?php
// app/autoload.php
$loader->registerNamespaces(array(
// ...
'FOS' => __DIR__.'/../vendor/bundles',
'OAuth2' => __DIR__.'/../vendor/oauth2-php/lib',
));
Finally, enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new FOS\OAuthServerBundle\FOSOAuthServerBundle(),
);
}
This bundle needs to persist some classes to a database:
Client
(OAuth2 consumers)AccessToken
AuthCode
Your first job, then, is to create these classes for your application. These classes can look and act however you want: add any properties or methods you find useful.
These classes have just a few requirements:
- They must extend one of the base classes from the bundle
- They must have an
id
field
In the following sections, you'll see examples of how your classes should look, depending on how you're storing your data.
Your classes can live inside any bundle in your application. For example,
if you work at "Acme" company, then you might create a bundle called AcmeApiBundle
and place your classes in it.
Warning:
If you override the __construct() method in your classs, be sure to call parent::__construct(), as the base class depends on this to initialize some fields.
a) Doctrine ORM classes
If you're persisting your data via the Doctrine ORM, then your classes
should live in the Entity
namespace of your bundle and look like this to
start:
<?php
// src/Acme/ApiBundle/Entity/Client.php
namespace Acme\ApiBundle\Entity;
use FOS\OAuthServer\Entity\Client as BaseClient;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
*/
class Client extends BaseClient
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
public function __construct()
{
parent::__construct();
// your own logic
}
}
<?php
// src/Acme/ApiBundle/Entity/AccessToken.php
namespace Acme\ApiBundle\Entity;
use FOS\OAuthServer\Entity\AccessToken as BaseAccessToken;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
*/
class AccessToken extends BaseAccessToken
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\ManyToOne(targetEntity="Client")
* @ORM\JoinColumn(nullable=false)
*/
protected $client;
public function __construct()
{
parent::__construct();
// your own logic
}
}
<?php
// src/Acme/ApiBundle/Entity/AuthCode.php
namespace Acme\ApiBundle\Entity;
use FOS\OAuthServer\Entity\AuthCode as BaseAuthCode;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
*/
class AuthCode extends BaseAuthCode
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\ManyToOne(targetEntity="Client")
* @ORM\JoinColumn(nullable=false)
*/
protected $client;
public function __construct()
{
parent::__construct();
// your own logic
}
}
In order for Symfony's security component to use the FOSOAuthServerBundle, you must
tell it to do so in the security.yml
file. The security.yml
file is where the
basic configuration for the security for your application is contained.
Below is a minimal example of the configuration necessary to use the FOSOAuthServerBundle in your application:
# app/config/security.yml
security:
firewalls:
api:
pattern: ^/api
fos_oauth: true
stateless: true
access_control:
# You can omit this if /api can be accessed both authenticated and anonymously
- { path: ^/api, roles: [IS_AUTHENTICATED_FULLY] }
The URLs under /api
will use OAuth2 to authenticate users.
Import the routing.yml configuration file in app/config/routing.yml:
# app/config/routing.yml
fos_oauth:
resource: "@FOSOAuthServerBundle/Resources/config/routing.yml"
Add FOSOAuthServerBundle settings in app/config/config.yml:
# app/config/config.yml
fos_oauth_server:
db_driver: orm
oauth_client_class: Acme\ApiBundle\Entity\Client
oauth_access_token_class: Acme\ApiBundle\Entity\AccessToken
oauth_auth_code_class: Acme\ApiBundle\Entity\AuthCode
Import the security.yml configuration file in app/config/config.yml:
# app/config/config.yml
imports:
# Symfony 2.0.x only
- { resource: "@FOSOAuthServerBundle/Resources/config/security.yml" }
The token
endpoint is at /oauth/v2/token
by default (see Resources/config/routing.yml).
An authorize
endpoint can be implemented with the finishClientAuthorization
method on
the fos.oauth_server.server_service
service:
<?php
if ($form->isValid()) {
try {
$response = $service->finishClientAuthorization(true, $currentUser, $request, $scope);
return $response;
} catch(\OAuth2\OAuth2ServerException $e) {
return $e->getHttpResponse();
}
}
- More tests
- Add model classes for OAuth2RefreshToken
- Add methods for refresh_token authorization types in the default storage adapter
- Add a default controler for the /authorize endpoint
- Arnaud Le Blanc
- Inspirated by BazingaOAuthBundle and FOSUserBundle
- Installation doc adapted from FOSUserBundle doc.