2010-10-04 17:02:08 -04:00
|
|
|
require 'fog/core/model'
|
2010-03-13 16:37:24 -05:00
|
|
|
|
2009-08-02 19:37:54 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
2010-09-08 17:40:02 -04:00
|
|
|
class Storage
|
2009-08-02 19:37:54 -04:00
|
|
|
|
2010-01-14 23:44:39 -05:00
|
|
|
class File < Fog::Model
|
2010-11-08 19:48:14 -05:00
|
|
|
extend Fog::Deprecation
|
|
|
|
deprecate(:size, :content_length)
|
|
|
|
deprecate(:size=, :content_length=)
|
2009-08-02 19:37:54 -04:00
|
|
|
|
2010-09-07 14:30:02 -04:00
|
|
|
identity :key, :aliases => 'Key'
|
2009-10-23 13:27:23 -04:00
|
|
|
|
2010-10-12 21:07:36 -04:00
|
|
|
attr_writer :body
|
2010-11-08 20:14:21 -05:00
|
|
|
attribute :cache_control, :aliases => 'Cache-Control'
|
|
|
|
attribute :content_disposition, :aliases => 'Content-Disposition'
|
|
|
|
attribute :content_encoding, :aliases => 'Content-Encoding'
|
|
|
|
attribute :content_length, :aliases => ['Content-Length', 'Size'], :type => :integer
|
|
|
|
attribute :content_md5, :aliases => 'Content-MD5'
|
|
|
|
attribute :content_type, :aliases => 'Content-Type'
|
|
|
|
attribute :etag, :aliases => ['Etag', 'ETag']
|
|
|
|
attribute :expires, :aliases => 'Expires'
|
|
|
|
attribute :last_modified, :aliases => ['Last-Modified', 'LastModified'], :type => :time
|
|
|
|
attribute :owner, :aliases => 'Owner'
|
|
|
|
attribute :storage_class, :aliases => ['x-amz-storage-class', 'StorageClass']
|
2009-08-02 19:37:54 -04:00
|
|
|
|
2010-09-23 12:38:55 -04:00
|
|
|
def acl=(new_acl)
|
|
|
|
valid_acls = ['private', 'public-read', 'public-read-write', 'authenticated-read']
|
|
|
|
unless valid_acls.include?(new_acl)
|
|
|
|
raise ArgumentError.new("acl must be one of [#{valid_acls.join(', ')}]")
|
|
|
|
end
|
|
|
|
@acl = new_acl
|
|
|
|
end
|
|
|
|
|
2010-02-19 14:30:23 -05:00
|
|
|
def body
|
2010-03-31 00:09:35 -04:00
|
|
|
@body ||= if last_modified && (file = collection.get(identity))
|
|
|
|
file.body
|
2010-02-19 14:30:23 -05:00
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-01-14 23:44:39 -05:00
|
|
|
def directory
|
|
|
|
@directory
|
2009-08-27 23:47:01 -04:00
|
|
|
end
|
|
|
|
|
2010-05-03 18:02:08 -04:00
|
|
|
def copy(target_directory_key, target_file_key)
|
2010-01-14 23:44:39 -05:00
|
|
|
requires :directory, :key
|
2010-11-02 14:42:53 -04:00
|
|
|
connection.copy_object(directory.key, @key, target_directory_key, target_file_key)
|
2010-05-03 18:02:08 -04:00
|
|
|
target_directory = connection.directories.new(:key => target_directory_key)
|
2010-11-02 14:42:53 -04:00
|
|
|
target_directory.files.get(target_file_key)
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
|
|
|
|
2009-08-30 17:14:11 -04:00
|
|
|
def destroy
|
2010-01-14 23:44:39 -05:00
|
|
|
requires :directory, :key
|
2010-05-03 18:02:08 -04:00
|
|
|
connection.delete_object(directory.key, @key)
|
2009-08-27 23:47:01 -04:00
|
|
|
true
|
2009-09-02 23:17:53 -04:00
|
|
|
end
|
|
|
|
|
2010-10-12 19:22:12 -04:00
|
|
|
remove_method :owner=
|
2009-12-08 14:54:01 -05:00
|
|
|
def owner=(new_owner)
|
|
|
|
if new_owner
|
|
|
|
@owner = {
|
|
|
|
:display_name => new_owner['DisplayName'],
|
|
|
|
:id => new_owner['ID']
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-11-05 14:37:12 -04:00
|
|
|
def public_url
|
|
|
|
requires :directory, :key
|
|
|
|
if directory.public_url
|
|
|
|
"#{directory.public_url}/#{key}"
|
|
|
|
elsif connection.get_object_acl(directory.key, key).body['AccessControlList'].detect {|grant| grant['Grantee']['URI'] == 'http://acs.amazonaws.com/groups/global/AllUsers' && grant['Permission'] == 'READ'}
|
|
|
|
if directory.key.to_s =~ /^(?:[a-z]|\d(?!\d{0,2}(?:\.\d{1,3}){3}$))(?:[a-z0-9]|\.(?![\.\-])|\-(?![\.])){1,61}[a-z0-9]$/
|
|
|
|
"https://#{directory.key}.s3.amazonaws.com/#{key}"
|
|
|
|
else
|
|
|
|
"https://s3.amazonaws.com/#{directory.key}/#{key}"
|
|
|
|
end
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-04 23:09:08 -04:00
|
|
|
def save(options = {})
|
2010-01-14 23:44:39 -05:00
|
|
|
requires :body, :directory, :key
|
2010-10-29 19:38:17 -04:00
|
|
|
if options != {}
|
|
|
|
Formatador.display_line("[yellow][WARN] options param is deprecated, use acl= instead[/] [light_black](#{caller.first})[/]")
|
|
|
|
end
|
2010-11-08 20:14:21 -05:00
|
|
|
options['x-amz-acl'] ||= @acl if @acl
|
|
|
|
options['Cache-Control'] = cache_control if cache_control
|
|
|
|
options['Content-Disposition'] = content_disposition if content_disposition
|
|
|
|
options['Content-Encoding'] = content_encoding if content_encoding
|
|
|
|
options['Content-MD5'] = content_md5 if content_md5
|
|
|
|
options['Content-Type'] = content_type if content_type
|
|
|
|
options['Expires'] = expires if expires
|
|
|
|
options['x-amz-storage-class'] = storage_class if storage_class
|
|
|
|
|
2010-05-03 18:02:08 -04:00
|
|
|
data = connection.put_object(directory.key, @key, @body, options)
|
2010-11-10 15:46:50 -05:00
|
|
|
merge_attributes(data.headers)
|
2010-11-17 17:54:48 -05:00
|
|
|
if body.is_a?(String)
|
|
|
|
self.content_length = body.size
|
|
|
|
else
|
|
|
|
self.content_length = ::File.size(body.path)
|
|
|
|
end
|
2009-08-27 23:47:01 -04:00
|
|
|
true
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
|
|
|
|
2010-06-11 20:27:27 -04:00
|
|
|
def url(expires)
|
|
|
|
requires :key
|
|
|
|
collection.get_url(key, expires)
|
|
|
|
end
|
|
|
|
|
2009-08-04 23:09:08 -04:00
|
|
|
private
|
|
|
|
|
2010-01-14 23:44:39 -05:00
|
|
|
def directory=(new_directory)
|
|
|
|
@directory = new_directory
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
|
|
|
|
2009-08-02 19:37:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|