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/compute/address.rb
2012-02-21 09:12:56 -05:00

72 lines
1.8 KiB
Ruby

require 'fog/core/model'
module Fog
module Compute
class AWS
class Address < Fog::Model
identity :public_ip, :aliases => 'publicIp'
attribute :allocation_id, :aliases => 'allocationId'
attribute :server_id, :aliases => 'instanceId'
attribute :network_interface_id, :aliases => 'networkInterfaceId'
attribute :domain
def initialize(attributes = {})
# assign server first to prevent race condition with new_record?
self.server = attributes.delete(:server)
super
end
def destroy
requires :public_ip
connection.release_address(public_ip)
true
end
def server=(new_server)
if new_server
associate(new_server)
else
disassociate
end
end
def save
raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity
data = connection.allocate_address(domain).body
new_attributes = data.reject {|key,value| key == 'requestId'}
merge_attributes(new_attributes)
if @server
self.server = @server
end
true
end
private
def associate(new_server)
if new_record?
@server = new_server
else
@server = nil
self.server_id = new_server.id
connection.associate_address(server_id, public_ip, network_interface_id, allocation_id)
end
end
def disassociate
@server = nil
self.server_id = nil
unless new_record?
connection.disassociate_address(public_ip)
end
end
end
end
end
end