2010-03-16 18:46:21 -04:00
|
|
|
require 'fog/collection'
|
2010-09-08 17:40:02 -04:00
|
|
|
require 'fog/aws/models/compute/address'
|
2010-03-16 18:46:21 -04:00
|
|
|
|
2009-08-13 01:33:35 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
2010-09-08 17:40:02 -04:00
|
|
|
class Compute
|
2009-08-13 01:33:35 -04:00
|
|
|
|
|
|
|
class Addresses < Fog::Collection
|
|
|
|
|
2009-09-21 14:40:38 -04:00
|
|
|
attribute :public_ip
|
2010-01-08 14:29:07 -05:00
|
|
|
attribute :server
|
2009-09-21 14:40:38 -04:00
|
|
|
|
2010-09-08 17:40:02 -04:00
|
|
|
model Fog::AWS::Compute::Address
|
2009-10-30 02:35:28 -04:00
|
|
|
|
2009-09-28 00:31:15 -04:00
|
|
|
def initialize(attributes)
|
|
|
|
@public_ip ||= []
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2009-10-30 02:35:28 -04:00
|
|
|
def all(public_ip = @public_ip)
|
2010-01-05 01:03:24 -05:00
|
|
|
@public_ip = public_ip
|
2009-08-19 12:11:26 -04:00
|
|
|
data = connection.describe_addresses(public_ip).body
|
2010-03-06 23:02:10 -05:00
|
|
|
load(
|
|
|
|
data['addressesSet'].map do |address|
|
|
|
|
address.reject {|key, value| value.nil? || value.empty? }
|
|
|
|
end
|
|
|
|
)
|
2010-01-08 14:29:07 -05:00
|
|
|
if server
|
2010-03-17 14:56:09 -04:00
|
|
|
self.replace(self.select {|address| address.server_id == server.id})
|
2009-10-06 21:55:39 -04:00
|
|
|
end
|
2010-03-17 15:26:42 -04:00
|
|
|
self
|
2009-08-13 01:33:35 -04:00
|
|
|
end
|
|
|
|
|
2009-09-21 14:40:38 -04:00
|
|
|
def get(public_ip)
|
2009-10-22 23:46:15 -04:00
|
|
|
if public_ip
|
|
|
|
all(public_ip).first
|
|
|
|
end
|
2010-05-26 20:27:17 -04:00
|
|
|
rescue Fog::Errors::NotFound
|
2009-09-23 01:47:45 -04:00
|
|
|
nil
|
2009-09-21 14:40:38 -04:00
|
|
|
end
|
|
|
|
|
2009-10-30 02:35:28 -04:00
|
|
|
def new(attributes = {})
|
2010-01-08 14:29:07 -05:00
|
|
|
if server
|
|
|
|
super({ :server => server }.merge!(attributes))
|
2009-12-05 17:53:42 -05:00
|
|
|
else
|
|
|
|
super(attributes)
|
|
|
|
end
|
2009-09-21 14:40:38 -04:00
|
|
|
end
|
|
|
|
|
2009-08-13 01:33:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|