1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/models/storage/directory.rb

127 lines
3.5 KiB
Ruby
Raw Normal View History

2010-10-04 17:02:08 -04:00
require 'fog/core/model'
require 'fog/aws/models/storage/files'
require 'fog/aws/models/storage/versions'
2010-03-13 16:37:24 -05:00
2009-08-02 19:37:54 -04:00
module Fog
module Storage
class AWS
2009-08-02 19:37:54 -04:00
2010-01-14 23:44:39 -05:00
class Directory < Fog::Model
VALID_ACLS = ['private', 'public-read', 'public-read-write', 'authenticated-read']
# See http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUT.html
INVALID_LOCATIONS = ['us-east-1']
attr_reader :acl
2009-08-02 19:37:54 -04:00
identity :key, :aliases => ['Name', 'name']
attribute :creation_date, :aliases => 'CreationDate'
2009-08-04 13:51:54 -04:00
def acl=(new_acl)
unless VALID_ACLS.include?(new_acl)
raise ArgumentError.new("acl must be one of [#{VALID_ACLS.join(', ')}]")
else
@acl = new_acl
end
end
2009-08-30 17:14:11 -04:00
def destroy
requires :key
connection.delete_bucket(key)
true
rescue Excon::Errors::NotFound
false
2009-08-04 01:50:52 -04:00
end
def location
requires :key
attributes[:location] || bucket_location || self.connection.region
2009-08-04 01:50:52 -04:00
end
def location=(new_location)
if INVALID_LOCATIONS.include?(new_location)
raise ArgumentError, "location must not include any of #{INVALID_LOCATIONS.join(', ')}. See http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUT.html"
else
merge_attributes(:location => new_location)
end
end
2010-01-14 23:44:39 -05:00
def files
@files ||= Fog::Storage::AWS::Files.new(:directory => self, :connection => connection)
2009-08-13 01:48:17 -04:00
end
2009-08-04 01:50:52 -04:00
def payer
requires :key
data = connection.get_request_payment(key)
data.body['Payer']
2009-08-04 01:50:52 -04:00
end
def payer=(new_payer)
requires :key
connection.put_request_payment(key, new_payer)
2009-08-04 01:54:34 -04:00
@payer = new_payer
2009-08-04 01:50:52 -04:00
end
def versioning?
requires :key
data = connection.get_bucket_versioning(key)
data.body['VersioningConfiguration']['Status'] == 'Enabled'
end
def versioning=(new_versioning)
requires :key
connection.put_bucket_versioning(key, new_versioning ? 'Enabled' : 'Suspended')
end
def versions
@versions ||= Fog::Storage::AWS::Versions.new(:directory => self, :connection => connection)
end
def public=(new_public)
self.acl = new_public ? 'public-read' : 'private'
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-04 01:50:52 -04:00
def save
requires :key
2009-08-04 01:50:52 -04:00
options = {}
options['x-amz-acl'] = acl if acl
if location = attributes[:location] || (self.connection.region != 'us-east-1' && self.connection.region)
options['LocationConstraint'] = location
end
connection.put_bucket(key, options)
true
2009-08-04 01:50:52 -04:00
end
2009-08-02 19:37:54 -04:00
private
def bucket_location
data = connection.get_bucket_location(key)
data.body['LocationConstraint']
end
2009-08-02 19:37:54 -04:00
end
end
end
end