我正在尝试基于联盟/飞行系统在Laravel中构建一个文件管理系统:https://github.com/thephpleague/flysystem
我正在使用S3适配器,我使用它来保存上传的文件:
$filesystem->write('filename.txt', 'contents');
现在,在使用S3适配器时,我无法生成下载文件网址。
文件在S3存储桶中正确保存,我有权访问它们,我只是不知道如何通过联盟/ flysystem包获取S3 getObjectUrl方法。
我试过了:
$contents = $filesystem->read('filename.txt');
但返回文件的内容。
$contents = $filemanager->listContents();
或
$paths = $filemanager->listPaths();
但是他们给了我文件的相对路径。
我需要的是“ht ... // [s3-region] .amazonaws.com / [bucket] / [dir] / [file] ......”
答案 0 :(得分:26)
我使用的是Laravel 5.2,下面的代码似乎运行正常。
Storage::cloud()->url('filename');
答案 1 :(得分:11)
我不确定正确这样做的方法是使用Flysystem,但底层的S3Client
对象有一个方法可以做到这一点。你可以做$filesystem->getAdapter()->getClient()->getObjectUrl($bucket, $key);
。当然,构建URL与您描述的一样简单,因此您不需要特殊的方法来执行此操作。
答案 2 :(得分:8)
更新到Laravel 5.1时,适配器不再支持此方法。在您的配置中,您必须设置S3_REGION,否则您将收到无效的主机名错误;其次,我必须使用该命令作为输入来创建presignedRequest。
public function getFilePathAttribute($value)
{
$disk = Storage::disk('s3');
if ($disk->exists($value)) {
$command = $disk->getDriver()->getAdapter()->getClient()->getCommand('GetObject', [
'Bucket' => Config::get('filesystems.disks.s3.bucket'),
'Key' => $value,
'ResponseContentDisposition' => 'attachment;'
]);
$request = $disk->getDriver()->getAdapter()->getClient()->createPresignedRequest($command, '+5 minutes');
return (string) $request->getUri();
}
return $value;
}
答案 3 :(得分:6)
也许我对这个问题有点迟了,但这是使用Laravel 5内置文件系统的方法。
我创建了一个Manager类,它扩展了Laravel的FilesystemManager来处理公共URL检索:
class FilesystemPublicUrlManager extends FilesystemManager
{
public function publicUrl($name = null, $object_path = '')
{
$name = $name ?: $this->getDefaultDriver();
$config = $this->getConfig($name);
return $this->{'get' . ucfirst($config['driver']) . 'PublicUrl'}($config, $object_path);
}
public function getLocalPublicUrl($config, $object_path = '')
{
return URL::to('/public') . $object_path;
}
public function getS3PublicUrl($config, $object_path = '')
{
$config += ['version' => 'latest'];
if ($config['key'] && $config['secret']) {
$config['credentials'] = Arr::only($config, ['key', 'secret']);
}
return (new S3Client($config))->getObjectUrl($config['bucket'], $object_path);
}
}
然后,我在注册方法下将此类添加到AppServiceProvider,以便它可以访问当前的应用实例:
$this->app->singleton('filesystemPublicUrl', function () {
return new FilesystemPublicUrlManager($this->app);
});
最后,为了便于静态访问,我创建了一个Facade类:
use Illuminate\Support\Facades\Facade;
class StorageUrl extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'filesystemPublicUrl';
}
}
现在,我可以轻松地在我的本地和s3文件系统上获取公共对象的公共URL(请注意,我没有在FilesystemPublicUrlManager中为ftp或rackspace添加任何内容):
$s3Url = StorageUrl::publicUrl('s3') //using the s3 driver
$localUrl = StorageUrl::publicUrl('local') //using the local driver
$defaultUrl = StorageUrl::publicUrl() //default driver
$objectUrl = StorageUrl::publicUrl('s3', '/path/to/object');
答案 4 :(得分:1)
对于私有云,请使用此
Storage::disk('s3')->temporaryUrl($path);
答案 5 :(得分:0)
另一种形式的Storage :: cloud():
WHERE t1.po_ID = :po_ID AND t2.model_id = :product_id
答案 6 :(得分:0)
使用预签名请求 S3:
public function getFileUrl($key) {
$s3 = Storage::disk('s3');
$client = $s3->getDriver()->getAdapter()->getClient();
$bucket = env('AWS_BUCKET');
$command = $client->getCommand('GetObject', [
'Bucket' => $bucket,
'Key' => $key
]);
$request = $client->createPresignedRequest($command, '+20 minutes');
return (string) $request->getUri();
}