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/bucket.rb

62 lines
1.3 KiB
Ruby
Raw Normal View History

2009-08-02 19:37:54 -04:00
module Fog
module AWS
class S3
class Bucket < Fog::Model
attr_accessor :creation_date, :location, :name, :objects, :owner
2009-08-04 13:51:54 -04:00
def initialize(attributes = {})
remap_attributes(attributes, {
'CreationDate' => :creation_date,
'Name' => :name
})
super
@objects ||= Fog::AWS::S3::Objects.new({
:bucket => bucket,
:connection => connection
})
2009-08-04 13:51:54 -04:00
end
2009-08-04 01:50:52 -04:00
def delete
return false if new_record?
2009-08-04 01:50:52 -04:00
connection.delete_bucket(name)
@new_record = true
2009-08-04 01:50:52 -04:00
true
end
def location
2009-08-04 01:54:34 -04:00
@location ||= begin
data = s3.get_bucket_location(name)
data.body['LocationConstraint']
end
2009-08-04 01:50:52 -04:00
end
def payer
2009-08-04 01:54:34 -04:00
@payer ||= begin
data = connection.get_request_payment(name)
data.body['Payer']
end
2009-08-04 01:50:52 -04:00
end
def payer=(new_payer)
connection.put_request_payment(name, new_payer)
2009-08-04 01:54:34 -04:00
@payer = new_payer
2009-08-04 01:50:52 -04:00
end
def save
options = {}
if @location
options['LocationConstraint'] = @location
end
connection.put_bucket(name, options)
@new_record = false
2009-08-04 01:50:52 -04:00
true
end
2009-08-02 19:37:54 -04:00
end
end
end
end