<?php
/*
* This file is part of the FOSUserBundle package.
*
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FOS\UserBundle\DependencyInjection;
use FOS\UserBundle\Form\Type;
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
/**
* This class contains the configuration information for the bundle.
*
* This information is solely responsible for how the different configuration
* sections are normalized, and merged.
*
* @author Christophe Coevoet <stof@notk.org>
*
* @internal
*
* @final
*/
class Configuration implements ConfigurationInterface
{
public function getConfigTreeBuilder(): TreeBuilder
{
$treeBuilder = new TreeBuilder('fos_user');
$rootNode = $treeBuilder->getRootNode();
$supportedDrivers = ['orm', 'mongodb', 'couchdb', 'custom'];
$rootNode
->children()
->scalarNode('db_driver')
->validate()
->ifNotInArray($supportedDrivers)
->thenInvalid('The driver %s is not supported. Please choose one of '.json_encode($supportedDrivers))
->end()
->validate()
->ifInArray(['couchdb'])
->then(function ($v) {
trigger_deprecation('friendsofsymfony/user-bundle', '3.3.0', 'The CouchDB ODM integration is deprecated because the CouchDB ODM itself is unmaintained.');
return $v;
})
->end()
->cannotBeOverwritten()
->isRequired()
->cannotBeEmpty()
->end()
->scalarNode('user_class')->isRequired()->cannotBeEmpty()->end()
->scalarNode('firewall_name')->isRequired()->cannotBeEmpty()->end()
->scalarNode('model_manager_name')->defaultNull()->end()
->booleanNode('use_authentication_listener')->defaultTrue()->end()
->booleanNode('register_last_login')->defaultTrue()->end()
->booleanNode('use_listener')->defaultTrue()->end()
->booleanNode('use_flash_notifications')->defaultTrue()->end()
->booleanNode('use_username_form_type')->defaultTrue()->end()
->arrayNode('from_email')
->isRequired()
->children()
->scalarNode('address')->isRequired()->cannotBeEmpty()->end()
->scalarNode('sender_name')->isRequired()->cannotBeEmpty()->end()
->end()
->end()
->end()
// Using the custom driver requires changing the manager services
->validate()
->ifTrue(function ($v) {
return 'custom' === $v['db_driver'] && 'fos_user.user_manager.default' === $v['service']['user_manager'];
})
->thenInvalid('You need to specify your own user manager service when using the "custom" driver.')
->end();
$this->addProfileSection($rootNode);
$this->addChangePasswordSection($rootNode);
$this->addRegistrationSection($rootNode);
$this->addResettingSection($rootNode);
$this->addServiceSection($rootNode);
return $treeBuilder;
}
private function addProfileSection(ArrayNodeDefinition $node): void
{
$node
->children()
->arrayNode('profile')
->addDefaultsIfNotSet()
->canBeUnset()
->children()
->arrayNode('form')
->addDefaultsIfNotSet()
->fixXmlConfig('validation_group')
->children()
->scalarNode('type')->defaultValue(Type\ProfileFormType::class)->end()
->scalarNode('name')->defaultValue('fos_user_profile_form')->end()
->arrayNode('validation_groups')
->prototype('scalar')->end()
->defaultValue(['Profile', 'Default'])
->end()
->end()
->end()
->end()
->end()
->end();
}
private function addRegistrationSection(ArrayNodeDefinition $node): void
{
$node
->children()
->arrayNode('registration')
->addDefaultsIfNotSet()
->canBeUnset()
->children()
->arrayNode('confirmation')
->addDefaultsIfNotSet()
->children()
->booleanNode('enabled')->defaultFalse()->end()
->scalarNode('template')->defaultValue('@FOSUser/Registration/email.txt.twig')->end()
->arrayNode('from_email')
->canBeUnset()
->children()
->scalarNode('address')->isRequired()->cannotBeEmpty()->end()
->scalarNode('sender_name')->isRequired()->cannotBeEmpty()->end()
->end()
->end()
->end()
->end()
->arrayNode('form')
->addDefaultsIfNotSet()
->children()
->scalarNode('type')->defaultValue(Type\RegistrationFormType::class)->end()
->scalarNode('name')->defaultValue('fos_user_registration_form')->end()
->arrayNode('validation_groups')
->prototype('scalar')->end()
->defaultValue(['Registration', 'Default'])
->end()
->end()
->end()
->end()
->end()
->end();
}
private function addResettingSection(ArrayNodeDefinition $node): void
{
$node
->children()
->arrayNode('resetting')
->addDefaultsIfNotSet()
->canBeUnset()
->children()
->scalarNode('retry_ttl')->defaultValue(7200)->end()
->scalarNode('token_ttl')->defaultValue(86400)->end()
->arrayNode('email')
->addDefaultsIfNotSet()
->children()
->scalarNode('template')->defaultValue('@FOSUser/Resetting/email.txt.twig')->end()
->arrayNode('from_email')
->canBeUnset()
->children()
->scalarNode('address')->isRequired()->cannotBeEmpty()->end()
->scalarNode('sender_name')->isRequired()->cannotBeEmpty()->end()
->end()
->end()
->end()
->end()
->arrayNode('form')
->addDefaultsIfNotSet()
->children()
->scalarNode('type')->defaultValue(Type\ResettingFormType::class)->end()
->scalarNode('name')->defaultValue('fos_user_resetting_form')->end()
->arrayNode('validation_groups')
->prototype('scalar')->end()
->defaultValue(['ResetPassword', 'Default'])
->end()
->end()
->end()
->end()
->end()
->end();
}
private function addChangePasswordSection(ArrayNodeDefinition $node): void
{
$node
->children()
->arrayNode('change_password')
->addDefaultsIfNotSet()
->canBeUnset()
->children()
->arrayNode('form')
->addDefaultsIfNotSet()
->children()
->scalarNode('type')->defaultValue(Type\ChangePasswordFormType::class)->end()
->scalarNode('name')->defaultValue('fos_user_change_password_form')->end()
->arrayNode('validation_groups')
->prototype('scalar')->end()
->defaultValue(['ChangePassword', 'Default'])
->end()
->end()
->end()
->end()
->end()
->end();
}
private function addServiceSection(ArrayNodeDefinition $node): void
{
$node
->addDefaultsIfNotSet()
->children()
->arrayNode('service')
->addDefaultsIfNotSet()
->children()
->scalarNode('mailer')
->defaultNull()
->validate()
->ifInArray(['fos_user.mailer.twig_swift'])
->then(function ($v) {
trigger_deprecation('friendsofsymfony/user-bundle', '3.4.0', 'The twig_swift mailer is deprecated because Swiftmailer itself is unmaintained.');
return $v;
})
->end()
->end()
->scalarNode('email_canonicalizer')->defaultValue('fos_user.util.canonicalizer.default')->end()
->scalarNode('token_generator')->defaultValue('fos_user.util.token_generator.default')->end()
->scalarNode('username_canonicalizer')->defaultValue('fos_user.util.canonicalizer.default')->end()
->scalarNode('user_manager')->defaultValue('fos_user.user_manager.default')->end()
->end()
->end()
->end()
->end();
}
}