f27138e80b
composer.json
65 lines
2.0 KiB
PHP
65 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace Knp\Bundle\GaufretteBundle\DependencyInjection\Factory;
|
|
|
|
use Symfony\Component\Config\Definition\Builder\NodeDefinition;
|
|
use Symfony\Component\DependencyInjection\Reference;
|
|
use Symfony\Component\DependencyInjection\DefinitionDecorator;
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
|
|
class AmazonS3AdapterFactory implements AdapterFactoryInterface
|
|
{
|
|
/**
|
|
* Creates the adapter, registers it and returns its id
|
|
*
|
|
* @param ContainerBuilder $container A ContainerBuilder instance
|
|
* @param string $id The id of the service
|
|
* @param array $config An array of configuration
|
|
*/
|
|
public function create(ContainerBuilder $container, $id, array $config)
|
|
{
|
|
$definition = $container
|
|
->setDefinition($id, new DefinitionDecorator('knp_gaufrette.adapter.amazon_s3'))
|
|
->addArgument(new Reference($config['amazon_s3_id']))
|
|
->addArgument($config['bucket_name']);
|
|
|
|
if (isset($config['options'])) {
|
|
$definition->addArgument($config['options']);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the key for the factory configuration
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getKey()
|
|
{
|
|
return 'amazon_s3';
|
|
}
|
|
|
|
/**
|
|
* Adds configuration nodes for the factory
|
|
*
|
|
* @param NodeBuilder $builder
|
|
*/
|
|
public function addConfiguration(NodeDefinition $builder)
|
|
{
|
|
$builder
|
|
->children()
|
|
->scalarNode('amazon_s3_id')->isRequired()->cannotBeEmpty()->end()
|
|
->scalarNode('bucket_name')->isRequired()->cannotBeEmpty()->end()
|
|
->arrayNode('options')
|
|
->children()
|
|
->booleanNode('create')
|
|
->defaultFalse()
|
|
->end()
|
|
->scalarNode('region')->end()
|
|
->scalarNode('directory')->end()
|
|
->end()
|
|
->end()
|
|
->end()
|
|
;
|
|
}
|
|
}
|