45 lines
1.7 KiB
PHP
Executable File
45 lines
1.7 KiB
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gregwar\CaptchaBundle\DependencyInjection;
|
|
|
|
use Exception;
|
|
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
|
|
use Symfony\Component\Config\FileLocator;
|
|
|
|
/**
|
|
* Extension used to load the configuration, set parameters, and initialize the captcha view.
|
|
*
|
|
* @author Gregwar <g.passault@gmail.com>
|
|
*/
|
|
class GregwarCaptchaExtension extends Extension
|
|
{
|
|
/**
|
|
* @param array $configs
|
|
* @param ContainerBuilder $container
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function load(array $configs, ContainerBuilder $container): void
|
|
{
|
|
$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
|
|
$loader->load('services.yml');
|
|
|
|
$configuration = new Configuration();
|
|
$config = $this->processConfiguration($configuration, $configs);
|
|
|
|
$container->setParameter('gregwar_captcha.config', $config);
|
|
$container->setParameter('gregwar_captcha.config.image_folder', $config['image_folder']);
|
|
$container->setParameter('gregwar_captcha.config.web_path', $config['web_path']);
|
|
$container->setParameter('gregwar_captcha.config.gc_freq', $config['gc_freq']);
|
|
$container->setParameter('gregwar_captcha.config.expiration', $config['expiration']);
|
|
$container->setParameter('gregwar_captcha.config.whitelist_key', $config['whitelist_key']);
|
|
|
|
$resources = $container->getParameter('twig.form.resources');
|
|
$container->setParameter('twig.form.resources', array_merge(array('@GregwarCaptcha/captcha.html.twig'), $resources));
|
|
}
|
|
}
|