我使用KnpGaufretteBundle在Amazon S3上存储图片,我可以使用以下代码轻松创建文件:
public function s3CreatFileAction(Request $request) {
$filesystem = $this->get('knp_gaufrette.filesystem_map')->get('profile_photos');
$filesystem->write('test.txt', 'hello world');
[...]
}
问题是我无法访问该文件......
$filesystem = $this->get('knp_gaufrette.filesystem_map')->get('profile_photos');
$file = $filesystem->get('test.txt');
我收到以下消息:
文件" test.txt"没找到。
我认为那是因为" test.txt"使用" private"创建文件acl(当我公开使用S3控制台时,我可以访问它)。
所以我的问题是如何在创建对象时定义公共acl?
答案 0 :(得分:17)
好吧,看来KnpGaufretteBundle的文档看起来像丛林☹......
这是我的解决方案:
#app/config/config.yml
services:
acme.aws_s3.client:
class: Aws\S3\S3Client
factory_class: Aws\S3\S3Client
factory_method: 'factory'
arguments:
-
credentials:
key: %amazon_s3.key%
secret: %amazon_s3.secret%
region: %amazon_s3.region%
version: %amazon_s3.version%
# knp_gaufrette
knp_gaufrette:
adapters:
profile_photos:
aws_s3:
service_id: 'acme.aws_s3.client'
bucket_name: 'myBucket'
options:
directory: 'myDirectory'
acl: 'public-read'
在我第一次试用时,这段代码无效,因为我的AwsS3用户没有正确的权限!所以确保您的用户政策允许访问存储!
答案 1 :(得分:1)
这里有一个更灵活的解决方案,允许仅在某些文件上设置“公共”访问权限:
$filesystem = $this->get('knp_gaufrette.filesystem_map')->get('profile_photos');
$filesystem->setMetadata('test.txt', ['ACL' => 'public-read']);
$filesystem->write('test.txt', 'hello world');
元数据数组会覆盖文件系统的全局选项,在我的情况下,默认情况下具有私有ACL。