1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Bundle\SecurityBundle\DependencyInjection\Security\Factory;
- use Symfony\Component\Config\Definition\Builder\NodeDefinition;
- use Symfony\Component\DependencyInjection\ContainerBuilder;
- use Symfony\Component\DependencyInjection\DefinitionDecorator;
- use Symfony\Component\DependencyInjection\Reference;
- /**
- * HttpBasicFactory creates services for HTTP basic authentication.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- * @author Grégoire Pineau <lyrixx@lyrixx.info>
- * @author Charles Sarrazin <charles@sarraz.in>
- */
- class HttpBasicLdapFactory extends HttpBasicFactory
- {
- public function create(ContainerBuilder $container, $id, $config, $userProvider, $defaultEntryPoint)
- {
- $provider = 'security.authentication.provider.ldap_bind.'.$id;
- $container
- ->setDefinition($provider, new DefinitionDecorator('security.authentication.provider.ldap_bind'))
- ->replaceArgument(0, new Reference($userProvider))
- ->replaceArgument(1, new Reference('security.user_checker.'.$id))
- ->replaceArgument(2, $id)
- ->replaceArgument(3, new Reference($config['service']))
- ->replaceArgument(4, $config['dn_string'])
- ;
- // entry point
- $entryPointId = $this->createEntryPoint($container, $id, $config, $defaultEntryPoint);
- // listener
- $listenerId = 'security.authentication.listener.basic.'.$id;
- $listener = $container->setDefinition($listenerId, new DefinitionDecorator('security.authentication.listener.basic'));
- $listener->replaceArgument(2, $id);
- $listener->replaceArgument(3, new Reference($entryPointId));
- return array($provider, $listenerId, $entryPointId);
- }
- public function addConfiguration(NodeDefinition $node)
- {
- parent::addConfiguration($node);
- $node
- ->children()
- ->scalarNode('service')->end()
- ->scalarNode('dn_string')->defaultValue('{username}')->end()
- ->end()
- ;
- }
- public function getKey()
- {
- return 'http-basic-ldap';
- }
- }
|