我正在编写一个应用程序来存储Amazon S3上的文件。我非常接近,我能够使用网址保存和检索文件。但是,由于这些链接是公开的,我试图在我的assetscontroller中使用以下方法从S3中检索存储的文件。
作为链接,可以在浏览器中查看/访问这些文件,但如果我使用此代码:
#This action will let the users download the files (after a simple authorization check)
def get
asset = current_user.assets.find_by_id(params[:id])
if asset
#Parse the URL for special characters first before downloading
data = open("#{URI.parse(URI.encode(asset.uploaded_file.url))}")
#then again, use the "send_data" method to send the above binary "data" as file.
send_data data, :filename => asset.uploaded_file_file_name
else
flash[:error]="Access Violation"
redirect_to assets_path
end
端
我在浏览器中收到此错误:
Errno::ENOENT in AssetsController#get
No such file or directory - http://s3.amazonaws.com/BUCKETNAME/assets/29/FILENAME.jpeg? 1339979591
当我登录S3管理控制台时点击S3网站上的资源,该文件显示在我的浏览器中,其链接是
https://s3.amazonaws.com/BUCKETNAME/assets/29/FILENAME.jpeg? AWSAccessKeyId=XXXXXXXXXXXExpires=1340003832&Signature=XXXXXXXXXXXXXXXXXX-amz-security- token=XXXXXXXXX//////////XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
所以它确实存在,但无法通过我的应用程序访问
以下是我的浏览器中的应用程序跟踪:
app/controllers/assets_controller.rb:99:in `initialize'
app/controllers/assets_controller.rb:99:in `open'
app/controllers/assets_controller.rb:99:in `get'
关于最新情况的任何线索?
由于
答案 0 :(得分:0)
您也可以将用户重定向到S3上的文件。
试试
redirect_to asset.uploaded_file.url
而不是send_file
。 send_file
需要一个本地文件的路径,然后由网络服务器使用。
如果您已设置s3_permissions => :private
,则需要致电
redirect_to asset.uploaded_file.expiring_url(10)
有趣的是,在您的错误消息中,s3中的http是针对https的 - 您还可以尝试将以下选项添加到模型的has_attached_file
:s3_protocol => 'https'
希望这有帮助。