在Amazon S3上使用php强制下载

时间:2009-05-15 18:40:45

标签: php download amazon-s3

我正在尝试使用http://code.google.com/p/amazon-s3-php-class/从AWS S3强制下载文件。我有一个mp3,我希望人们“玩”或“下载”。默认情况下,当您直接在s3上访问文件时,它开始在浏览器中播放。我需要添加一个实际下载的选项。我用谷歌搜索,发现什么都没有。我从概念上知道需要发生什么,但不知道如何制作它。我知道我需要将标题修改为Content-Disposition:attachment。任何帮助将不胜感激。

谢谢, 迈克尔

12 个答案:

答案 0 :(得分:21)

亚马逊现在已经解决了这个问题,并允许根据签名请求在每个请求的基础上覆盖标头:

http://docs.amazonwebservices.com/AmazonS3/latest/API/index.html?RESTObjectGET.html

w00t!

答案 1 :(得分:10)

到目前为止已经提到的php脚本可以正常工作,但主要的缺点是每次站点上的访问者请求文件时,您自己的服务器将从S3加载它然后将该数据中继到浏览器。对于低流量站点,这可能不是什么大问题,但对于高流量站点,您肯定希望避免通过自己的服务器运行所有内容。

幸运的是,有一种非常直接的方法可以将文件设置为强制从S3下载。你完全正确 - 你只想设置内容类型和内容处理(只是设置内容处理在某些浏览器中可以使用,但设置两者都适用于所有浏览器)。

此代码假设您使用的是Undesigned中的Amazon S3 PHP类:

<?php

// set S3 auth and get your bucket listing

// then loop through the bucket and copy each file over itself, replacing the "request headers":
S3::copyObject($bucketName, $filename, $bucketName, $filename, "public-read", array(), array("Content-Type" => "application/octet-stream", "Content-Disposition" => "attachment"));

?>

现在您的所有文件都将被强制下载。您可能需要清除缓存以查看更改。显然,不要在你真正希望在浏览器中“内联”加载的任何文件上这样做。

这个解决方案很好的部分是直接加载媒体文件的应用程序(比如让我们说Flash中的mp3播放器)不关心内容类型或内容处理,所以你仍然可以在浏览器然后链接下载同一个文件。如果用户已经完成了在闪存中加载文件,他们很可能仍然会在缓存中使用它,这意味着他们的下载速度非常快,甚至不会从S3中花费额外的带宽费用。

答案 2 :(得分:3)

只需将其添加到s3上的文件元数据:

Content-Disposition: attachment; filename=FILENAME.EXT
Content-Type: application/octet-stream

答案 3 :(得分:3)

只想发布一个贡献,Alex Neth对此引用是正确的,但我不认为链接是足够的信息,使用亚马逊自己的AWS PHP SDK2。下面我概述了以这种方式调用数据的基本(未经测试)方法,您可以使用S3 Factory Method或AWS Service Builder来创建S3客户端。

<?php
// S3 Factory Method
/*use Aws\S3\S3Client;

$s3= S3Client::factory(array(
    'key'    => '<aws access key>',
    'secret' => '<aws secret key>'
));*/

// OR AWS Service Builder
use Aws\Common\Aws;

// Create a service builder using a configuration file
$aws = Aws::factory('/path/to/my_config.json');

// Get the client from the builder by namespace
$s3 = $aws->get('S3');

// Now lets create our request object.
$command = $s3->getCommand('GetObject',array(
    'Bucket'                        => 'your-bucket-name',
    'Key'                           => 'keyname',
    'ResponseContentType'           => 'application/octet-stream',
    'ResponseContentDisposition'    => 'attachment; filename="filename.mp3',
));
$url = $command->createPresignedUrl('+1 days');
?>

然后您可以使用PHP的标题(&#34;位置:$ url&#34;);为了通过强制下载将访问者重定向到MP3文件,这应该阻止它在浏览器中播放,请注意,我经常使用ResponseContentType但是我从未使用过AWS的ResponseContentDisposition(它应该根据文档)。

将此示例转换为函数应该很简单,您甚至可以传入$ bucket,$ key,$ force_download

<?php
use Aws\Common\Aws;

function gen_url($bucket,$key,$force_download=false){
    // OR AWS Service Builder (personal method to do this)

    // Create a service builder using a configuration file
    $aws = Aws::factory('/path/to/my_config.json');

    // Get the client from the builder by namespace
    $s3 = $aws->get('S3');
    $params = array(
        'Bucket'                        => $bucket,
        'Key'                           => 'keyname',
        'ResponseContentType'           => 'application/octet-stream',
        'ResponseContentDisposition'    => 'attachment; filename="filename.mp3',
    );

    if($force_download){
        $params['ResponseContentType'] = 'application/octet-stream';
        $params['ResponseContentDisposition'] = 'attachment; filename="'.basename($key).'"';
    }

    $command = $s3->getCommand('GetObject',$params);
    return $command->createPresignedUrl('+1 days');
}

// Location redirection to an MP3 force downlaod
header("Location: ".gen_url("recordings","my-file.mp3",true));
// Location redirection to a MP3 that lets the browser decide what to do.
header("Location: ".gen_url("recordings","my-file.mp3"));

?>

警告,如果您还没弄明白,这需要AWS PHP SDK 2(2014年4月7日)在此处找到http://aws.amazon.com/sdkforphp/此代码主要是伪代码,可能需要进行一些额外的调整才能实现让我工作,因为我从记忆中引用它。

答案 4 :(得分:1)

所以修改上面的例子就像这样


<?php

header('Content-Type: audio/mpeg');
header("Content-Disposition: attachment; filename={$_GET['file']};");

readfile("url to the file/{$_GET['file']}");

exit();

?>

现在你需要在那里进行一些验证,这样你就不会让世界访问你在S3上放置的每个文件,但是这应该有效。

答案 5 :(得分:1)

如果您使用的是Tarzan AWS这样的库,则可以添加元标题,亚马逊将在检索文件时包含这些元标题。在这里查看update_object函数中的meta参数,例如: http://tarzan-aws.com/docs/2.0/files/s3-class-php.html#AmazonS3.update_object

答案 6 :(得分:1)

另外值得一提的是,您可以在S3中硬拷贝文件的标头。例如,如果您需要强制下载某个文件,则可以为该文件设置适当的标头。比如默认为流,并且要么将辅助文件设置为强制下载,要么花费带宽来使用php / fputs并通过PHP强制下载。

答案 7 :(得分:1)

<?php
    require_once __DIR__.'/vendor/autoload.php';
    use Aws\Common\Aws;

    function gen_url($bucket,$key,$force_download=false){
        // OR AWS Service Builder (personal method to do this)


        $config = array(
                'key'    => '',
                'secret' => '',
        );

        // Create a service builder using a configuration file
        $aws = Aws::factory($config);

        // Get the client from the builder by namespace
        $s3 = $aws->get('S3');
        $params = array(
            'Bucket'                        => $bucket,
            'Key'                           => $key,
            'ResponseContentType'           => 'application/octet-stream',
            'ResponseContentDisposition'    => 'attachment; filename="'.$key,
        );

        if($force_download){
            $params['ResponseContentType'] = 'application/octet-stream';
            $params['ResponseContentDisposition'] = 'attachment; filename="'.basename($key).'"';
        }

        $command = $s3->getCommand('GetObject',$params);
        return $command->createPresignedUrl('+1 days');
    }

    $bucket = '';
    $filename = '';


    $url = gen_url($bucket,$filename,true);

    echo "\n".$url."\n\n";

上面的代码可以工作,你只需要在自动加载文件中安装S3编辑器依赖关系和链接,将你的密钥/秘密放入配置然后提供桶/文件名。

答案 8 :(得分:0)

php只会将文件下载到服务器,而不是客户端。记住,php在客户端上没有做任何事情,它只返回内容(html,javascript,css,xml,等等......)

[编辑:为了清晰起见]:php可以提供音频内容,但您希望同时提供网页和音频。要获得该客户端行为,您必须让客户端根据网页的html或javascript请求该文件。

所以你必须让客户端下载文件。例如,在页面上有一个iframe,其中包含s3上文件的url。使用css使iframe不可见。它应该呈现页面并下载并播放mp3。

否则,请在页面加载时使用javascript来下载。我不确定这是否可行。

答案 9 :(得分:0)

现在可以通过使用签名请求覆盖S3标头来实现。

  

请求参数

     

有时,您希望覆盖GET响应中的某些响应标头值。例如,您可以覆盖GET请求中的Content-Disposition响应标头值。

     

您可以使用下表中列出的查询参数覆盖一组响应标头的值。

     

response-content-type - 设置响应的Content-Type标头    response-content-disposition - 设置响应的Content-Disposition标头。

     

注意

     

使用这些参数时,您必须使用授权标头或预先签名的URL对请求进行签名。它们不能与未签名(匿名)请求一起使用。

因此,您可以将这些标题设置为:

response-content-disposition: attachment; filename=FILENAME.EXT
response-content-type: application/octet-stream

在这里找到答案:https://stackoverflow.com/a/5903710/922522

答案 10 :(得分:-1)

<?php
// PHP solution (for OP and others), works with public and private files
// Download url expires after 30 minutes (no experation after the download initiates, for large files)
// ***Forces client download***
$signed_url = $s3_client->getObjectUrl($s3_bucket_name, $s3_filename_key, '+30 minutes', array(
    'ResponseContentType' => 'application/octet-stream',
    'ResponseContentDisposition' => 'attachment; filename="your-file-name-here.mp4"'
));
redirect($signed_url);

答案 11 :(得分:-3)

我从未尝试过亚马逊的S3主机,但你不能在那里使用.htaccess文件吗?然后,您可以使用以下条目为整个目录设置Content-Type和Content-Disposition:

<IfModule mod_headers.c>
    <FilesMatch "\.(mp3)$">
            ForceType audio/mpeg
            Header set Content-Disposition attachment
    </FilesMatch>
</IfModule>