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/s3/directory.rb

70 lines
1.4 KiB
Ruby
Raw Normal View History

2010-03-13 16:37:24 -05:00
require 'fog/model'
require 'fog/aws/models/s3/files'
2009-08-02 19:37:54 -04:00
module Fog
module AWS
2010-03-13 16:37:24 -05:00
module S3
2009-08-02 19:37:54 -04:00
2010-01-14 23:44:39 -05:00
class Directory < Fog::Model
extend Fog::Deprecation
deprecate(:name, :key)
2009-08-02 19:37:54 -04:00
identity :key, ['Name', 'name', :name]
attribute :creation_date, 'CreationDate'
2009-08-04 13:51:54 -04:00
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
data = connection.get_bucket_location(key)
data.body['LocationConstraint']
2009-08-04 01:50:52 -04:00
end
def location=(new_location)
@location = new_location
end
2010-01-14 23:44:39 -05:00
def files
@files ||= begin
Fog::AWS::S3::Files.new(
:directory => self,
:connection => connection
)
end
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 save
requires :key
2009-08-04 01:50:52 -04:00
options = {}
if @location
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
end
end
end
end