2017 © Pedro Peláez
 

symfony-bundle alb-open-id-server-bundle

OpenID Provider bundle

image

raphox/alb-open-id-server-bundle

OpenID Provider bundle

  • Wednesday, October 31, 2012
  • by raphox
  • Repository
  • 1 Watchers
  • 0 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

AlbOpenIDServerBundle

OpenID Provider bundle., (*1)

Installation

Step1: Download AlbOpenIDServerBundle

Using the vendors script

Add the following lines in your deps file:, (*2)

[AlbOpenIDServerBundle]
    git=git://github.com/arnaud-lb/AlbOpenIDServerBundle.git
    target=bundles/Alb/OpenIDServerBundle

[php-openid]
    git=git://github.com/openid/php-openid.git
    target=openid/php-openid

Now, run the vendors script to download the bundle:, (*3)

``` sh $ php bin/vendors install, (*4)


#### Using submodules If you prefer instead to use git submodules, then run the following: ``` sh $ git submodule add git://github.com/arnaud-lb/AlbOpenIDServerBundle.git vendor/bundles/Alb/AlbOpenIDServerBundle $ git submodule add git://github.com/openid/php-openid.git vendor/openid/php-openid $ git submodule update --init

Using composer

TODO, (*5)

Step2: Configure the Autoloader

You can skip this step if you have installed the bundle using composer., (*6)

Add the Alb namespace to your autoloader:, (*7)

``` php <?php, (*8)

// app/autoload.php, (*9)

$loader->registerNamespaces(array( // ... 'Alb' => DIR.'/../vendor/bundles', ));, (*10)


### Step3: Configure the include path php-openid relies on his classes to be in the include path: ``` php <?php /// app/autoload.php ... set_include_path( get_include_path() . PATH_SEPARATOR . __DIR__ . '/../vendor/openid/php-openid' ); ...

Step4: Enable the bundle

Finally, enable the bundle in the kernel:, (*11)

``` php <?php // app/AppKernel.php, (*12)

public function registerBundles() { $bundles = array( // ... new Alb\OpenIDServerBundle\AlbOpenIDServerBundle(), ); }, (*13)


## Creating an Adapter The bundle relies on an adapter for things that may be specific to your application. The adapter must implement `Alb\OpenIDServerBundle\Adapter\AdapterInterface`. Here is a simple implementation: ``` php <?php namespace <your_namespace>; use Alb\OpenIDServerBundle\Adapter\AdapterInterface; class Adapter implements AdapterInterface { public function getUserUnique($user) { return $user->getId(); } }

Declare a service using this class:, (*14)

``` yaml, (*15)

app/config/config.yml

services: my_open_id_server_adapter: class: \Adapter, (*16)


## Configuring ### Bundle configuration Add this to app/config/config.yml: ``` yaml # app/config/config.yml alb_open_id_server_bundle: service: adapter: my_open_id_server_adapter

Routing

Add this to app/config/routing.yml:, (*17)

``` yaml, (*18)

app/config/routing.yml

alb_open_id_server: resource: "@AlbOpenIDServerBundle/Resources/config/routing.xml" prefix: /openid, (*19)


### Security For access session security data, add this to app/config/security.yml: ``` yaml security: ... firewalls: ... secured_openid: pattern: ^/openid anonymous: ~ http_basic: realm: "Secured OpenID Area"

Usage

The OpenID endpoint is at /openid (depending on the routes prefix), (*20)

TODO

  • Add tests
  • More documentation

The Versions

31/10 2012

dev-master

9999999-dev https://github.com/raphox/AlbOpenIDServerBundle

OpenID Provider bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

by Arnaud Le Blanc
by Raphael A. Araújo

authentication user server openid provider