2010-10-04 17:02:08 -04:00
|
|
|
require 'fog/core/collection'
|
2011-08-24 21:37:00 -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
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class AWS
|
2009-08-13 01:33:35 -04:00
|
|
|
|
|
|
|
class Addresses < Fog::Collection
|
|
|
|
|
2010-10-04 18:46:12 -04:00
|
|
|
attribute :filters
|
2010-01-08 14:29:07 -05:00
|
|
|
attribute :server
|
2009-09-21 14:40:38 -04:00
|
|
|
|
2011-06-16 19:28:54 -04:00
|
|
|
model Fog::Compute::AWS::Address
|
2010-11-29 19:10:20 -05:00
|
|
|
|
2010-11-29 18:44:44 -05:00
|
|
|
# Used to create an IP address
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
#
|
|
|
|
#>> AWS.addresses.create
|
|
|
|
# <Fog::AWS::Compute::Address
|
|
|
|
# public_ip="4.88.524.95",
|
|
|
|
# server_id=nil
|
|
|
|
# >
|
|
|
|
#
|
2012-03-07 13:52:07 -05:00
|
|
|
# The IP address can be retrieved by running AWS.addresses.get("test"). See get method below.
|
2010-11-29 18:44:44 -05:00
|
|
|
#
|
2009-10-30 02:35:28 -04:00
|
|
|
|
2009-09-28 00:31:15 -04:00
|
|
|
def initialize(attributes)
|
2010-11-19 16:45:45 -05:00
|
|
|
self.filters ||= {}
|
2009-09-28 00:31:15 -04:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2010-11-29 18:44:44 -05:00
|
|
|
# AWS.addresses.all
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
#
|
|
|
|
# Returns an array of all IP addresses
|
|
|
|
#
|
|
|
|
#>> AWS.addresses.all
|
|
|
|
# <Fog::AWS::Compute::Addresses
|
|
|
|
# filters={},
|
|
|
|
# server=nil
|
|
|
|
# [
|
|
|
|
# <Fog::AWS::Compute::Address
|
|
|
|
# public_ip="76.7.46.54",
|
|
|
|
# server_id=nil
|
|
|
|
# >,
|
|
|
|
# .......
|
|
|
|
# <Fog::AWS::Compute::Address
|
|
|
|
# public_ip="4.88.524.95",
|
|
|
|
# server_id=nil
|
|
|
|
# >
|
|
|
|
# ]
|
|
|
|
# >
|
|
|
|
#>>
|
|
|
|
|
2010-11-19 16:45:45 -05:00
|
|
|
def all(filters = filters)
|
2010-10-11 16:45:26 -04:00
|
|
|
unless filters.is_a?(Hash)
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.deprecation("all with #{filters.class} param is deprecated, use all('public-ip' => []) instead [light_black](#{caller.first})[/]")
|
2010-10-11 16:45:26 -04:00
|
|
|
filters = {'public-ip' => [*filters]}
|
|
|
|
end
|
2010-11-19 16:45:45 -05:00
|
|
|
self.filters = filters
|
2012-12-22 18:31:31 -05:00
|
|
|
data = service.describe_addresses(filters).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
|
|
|
|
|
2012-03-07 13:52:07 -05:00
|
|
|
# Used to retrieve an IP address
|
2010-11-29 18:44:44 -05:00
|
|
|
#
|
|
|
|
# public_ip is required to get the associated IP information.
|
|
|
|
#
|
|
|
|
# You can run the following command to get the details:
|
|
|
|
# AWS.addresses.get("76.7.46.54")
|
|
|
|
|
2009-09-21 14:40:38 -04:00
|
|
|
def get(public_ip)
|
2009-10-22 23:46:15 -04:00
|
|
|
if public_ip
|
2012-12-22 18:31:31 -05:00
|
|
|
self.class.new(:service => service).all('public-ip' => public_ip).first
|
2009-10-22 23:46:15 -04:00
|
|
|
end
|
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
|