2

我想从数据库而不是从 parameters.yml 设置 Amazon S3 设置

有人可以在 symfony2 调用服务之前为我指出如何使用数据库(教义)参数的正确方向。

#app/config/config.yml

services:
    acme.aws_s3.client:
        class: Aws\S3\S3Client
        factory_class: Aws\S3\S3Client
        factory_method: 'factory'
        arguments:
            -
                key: %amazon_s3.key%
                secret: %amazon_s3.secret%

# knp_gaufrette
knp_gaufrette:
    adapters:
        profile_photos:
            aws_s3:
                service_id: 'acme.aws_s3.client'
                bucket_name: 'myBucket'
                options:
                    directory: 'myDirectory'   
                    acl: 'public-read'
4

1 回答 1

1

使用您自己的服务工厂进行acme.aws_s3.client服务配置。

services:
    acme.aws_s3.client:
        class: Aws\S3\S3Client
        factory_class: My\S3ClientFactory
        factory_method: createClient
        arguments: [ @settings_repository ] 

@settings_repository- 任何有权访问 db 的服务。例如,学说实体存储库或整个对象管理器。

My\S3ClientFactory::createClient- 与 native 几乎相同,Aws\S3\S3Client::factory只是它会从 db 获取参数。

希望这有帮助。

于 2015-03-29T20:19:34.687 回答