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