LdapBundle provides a Ldap authentication system without the apache mod_ldap
. It uses php-ldap
extension with a form to authenticate the users. LdapBundle also can be used for the authorization. It retrieves the Ldap users' roles.
You can try to contact me on freenode irc ; channel #symfony-fr ; pseudo : aways
- Download LdapBundle
- Configure the Autoloader
- Enable the Bundle
- Configure LdapBundle security.yml
- Import LdapBundle security.yml
- Import LdapBundle routing
- Implement Logout
Add the following lines to your deps
file and then run php bin/vendors install
:
[LdapBundle]
git=https://github.com/BorisMorel/LdapBundle.git
target=bundles/IMAG/LdapBundle
Run the following commands to bring in the needed libraries as submodules.
$ git clone git://github.com/BorisMorel/LdapBundle.git vendor/bundles/IMAG/LdapBundle
<?php
// app/autoload.php
$loader->registerNamespaces(array(
// ...
'IMAG' => __DIR__.'/../vendor/bundles',
));
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new IMAG\LdapBundle\IMAGLdapBundle(),
);
}
# src/IMAG/LdapBundle/Resources/config/security.yml
security:
firewalls:
restricted_area:
pattern: ^/
anonymous: ~
provider: ldap
imag_ldap: ~
# alternative configuration
# imag_ldap:
# login_path: /ninja/login
logout:
path: /logout
target: /
providers:
ldap:
id: imag_ldap.security.user.provider
encoders:
IMAG\LdapBundle\User\LdapUser: plaintext
access_control:
- { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/, roles: IS_AUTHENTICATED_FULLY }
# obsolete in SF 2.1
factories:
- "%kernel.root_dir%/../vendor/bundles/IMAG/LdapBundle/Resources/config/security_factories.xml"
imag_ldap:
client:
host: your.host.foo
port: 389
# version: 3 # Optional
# username: foo # Optional
# password: bar # Optional
user:
base_dn: ou=people,dc=host,dc=foo
# filter: (&(foo=bar)(ObjectClass=Person)) #Optional
name_attribute: uid
role:
base_dn: ou=group, dc=host, dc=foo
# filter: (ou=group) #Optional
name_attribute: cn
user_attribute: member
user_id: [ dn or username ]
You need to configure the parameters under the imag_ldap section.
Note:
If are not set, the optional parameters have default values. You can disable this ; Just set parameter to NULL.
imag_ldap:
# ...
role:
# ...
filter: NULL
# app/config/config.yml
imports:
- { resource: ../../src/IMAG/LdapBundle/Resources/config/security.yml }
# app/config/routing.yml
imag_ldap:
resource: "@IMAGLdapBundle/Resources/config/routing.yml"
Just create a link with logout target.
<a href="{{ path('logout') }}">logout</a>
Note: You can refer to the official Symfony documentation : http://symfony.com/doc/2.0/book/security.html#logging-out