2010-10-04 14:02:08 -07:00
|
|
|
require 'fog/core/model'
|
2011-01-14 10:41:12 -08:00
|
|
|
require 'fog/storage/models/aws/files'
|
2010-03-13 13:37:24 -08:00
|
|
|
|
2009-08-02 16:37:54 -07:00
|
|
|
module Fog
|
|
|
|
module AWS
|
2010-09-08 14:40:02 -07:00
|
|
|
class Storage
|
2009-08-02 16:37:54 -07:00
|
|
|
|
2010-01-14 20:44:39 -08:00
|
|
|
class Directory < Fog::Model
|
2009-08-02 16:37:54 -07:00
|
|
|
|
2010-09-07 11:30:02 -07:00
|
|
|
identity :key, :aliases => ['Name', 'name']
|
2009-10-23 10:27:23 -07:00
|
|
|
|
2010-09-07 11:30:02 -07:00
|
|
|
attribute :creation_date, :aliases => 'CreationDate'
|
2009-08-04 10:51:54 -07:00
|
|
|
|
2010-10-29 16:38:17 -07: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
|
|
|
|
|
2009-08-30 14:14:11 -07:00
|
|
|
def destroy
|
2010-05-02 19:59:15 -07:00
|
|
|
requires :key
|
|
|
|
connection.delete_bucket(key)
|
2009-08-27 20:47:01 -07:00
|
|
|
true
|
2009-11-08 12:16:52 -08:00
|
|
|
rescue Excon::Errors::NotFound
|
2009-08-31 22:40:07 -07:00
|
|
|
false
|
2009-08-03 22:50:52 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def location
|
2010-05-02 19:59:15 -07:00
|
|
|
requires :key
|
|
|
|
data = connection.get_bucket_location(key)
|
2009-09-02 20:17:53 -07:00
|
|
|
data.body['LocationConstraint']
|
2009-08-03 22:50:52 -07:00
|
|
|
end
|
|
|
|
|
2009-10-23 09:42:51 -07:00
|
|
|
def location=(new_location)
|
|
|
|
@location = new_location
|
|
|
|
end
|
|
|
|
|
2010-01-14 20:44:39 -08:00
|
|
|
def files
|
|
|
|
@files ||= begin
|
2010-09-08 14:40:02 -07:00
|
|
|
Fog::AWS::Storage::Files.new(
|
2010-01-14 20:44:39 -08:00
|
|
|
:directory => self,
|
2009-09-01 21:41:52 -07:00
|
|
|
:connection => connection
|
|
|
|
)
|
|
|
|
end
|
2009-08-12 22:48:17 -07:00
|
|
|
end
|
|
|
|
|
2009-08-03 22:50:52 -07:00
|
|
|
def payer
|
2010-05-02 19:59:15 -07:00
|
|
|
requires :key
|
|
|
|
data = connection.get_request_payment(key)
|
2009-09-02 20:17:53 -07:00
|
|
|
data.body['Payer']
|
2009-08-03 22:50:52 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def payer=(new_payer)
|
2010-05-02 19:59:15 -07:00
|
|
|
requires :key
|
|
|
|
connection.put_request_payment(key, new_payer)
|
2009-08-03 22:54:34 -07:00
|
|
|
@payer = new_payer
|
2009-08-03 22:50:52 -07:00
|
|
|
end
|
|
|
|
|
2010-11-05 11:37:12 -07:00
|
|
|
def public=(new_public)
|
|
|
|
if new_public
|
|
|
|
@acl = 'public-read'
|
|
|
|
else
|
|
|
|
@acl = 'private'
|
|
|
|
end
|
|
|
|
new_public
|
|
|
|
end
|
|
|
|
|
|
|
|
def public_url
|
|
|
|
requires :key
|
|
|
|
if connection.get_bucket_acl(key).body['AccessControlList'].detect {|grant| grant['Grantee']['URI'] == 'http://acs.amazonaws.com/groups/global/AllUsers' && grant['Permission'] == 'READ'}
|
|
|
|
if key.to_s =~ /^(?:[a-z]|\d(?!\d{0,2}(?:\.\d{1,3}){3}$))(?:[a-z0-9]|\.(?![\.\-])|\-(?![\.])){1,61}[a-z0-9]$/
|
|
|
|
"https://#{key}.s3.amazonaws.com"
|
|
|
|
else
|
|
|
|
"https://s3.amazonaws.com/#{key}"
|
|
|
|
end
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-03 22:50:52 -07:00
|
|
|
def save
|
2010-05-02 19:59:15 -07:00
|
|
|
requires :key
|
2009-08-03 22:50:52 -07:00
|
|
|
options = {}
|
2010-10-29 16:38:17 -07:00
|
|
|
if @acl
|
|
|
|
options['x-amz-acl'] = @acl
|
|
|
|
end
|
2009-08-03 22:50:52 -07:00
|
|
|
if @location
|
|
|
|
options['LocationConstraint'] = @location
|
|
|
|
end
|
2010-05-02 19:59:15 -07:00
|
|
|
connection.put_bucket(key, options)
|
2009-08-27 20:47:01 -07:00
|
|
|
true
|
2009-08-03 22:50:52 -07:00
|
|
|
end
|
2009-08-02 16:37:54 -07:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|