2011-07-10 16:35:30 -04:00
|
|
|
require 'fog/core/model'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Rackspace
|
|
|
|
class LoadBalancer
|
|
|
|
class LoadBalancer < Fog::Model
|
|
|
|
|
|
|
|
identity :id
|
|
|
|
|
|
|
|
attribute :cluster
|
2011-07-27 18:00:18 -04:00
|
|
|
attribute :connection_logging, :aliases => 'connectionLogging'
|
2011-07-10 16:35:30 -04:00
|
|
|
attribute :port
|
|
|
|
attribute :protocol
|
|
|
|
attribute :algorithm
|
2011-07-10 16:58:27 -04:00
|
|
|
attribute :virtual_ips, :aliases => 'virtualIps'
|
2011-07-10 16:35:30 -04:00
|
|
|
attribute :created
|
|
|
|
attribute :updated
|
|
|
|
attribute :name
|
2011-07-10 16:58:27 -04:00
|
|
|
attribute :state, :aliases => 'status'
|
2011-07-18 22:45:47 -04:00
|
|
|
attribute :nodes
|
|
|
|
|
|
|
|
def initialize(attributes)
|
|
|
|
#HACK - Since we are hacking how sub-collections work, we have to make sure the connection is valid first.
|
|
|
|
@connection = attributes[:connection]
|
|
|
|
super
|
|
|
|
end
|
2011-07-10 16:35:30 -04:00
|
|
|
|
2011-07-14 15:20:53 -04:00
|
|
|
def nodes
|
2011-07-19 18:48:21 -04:00
|
|
|
@nodes ||= begin
|
|
|
|
Fog::Rackspace::LoadBalancer::Nodes.new({
|
|
|
|
:connection => connection,
|
|
|
|
:load_balancer => self})
|
|
|
|
end
|
2011-07-14 15:20:53 -04:00
|
|
|
end
|
|
|
|
|
2011-07-18 22:45:47 -04:00
|
|
|
def nodes=(new_nodes=[])
|
2011-07-19 18:48:21 -04:00
|
|
|
nodes.load(new_nodes)
|
2011-07-10 16:35:30 -04:00
|
|
|
end
|
|
|
|
|
2011-07-18 22:45:47 -04:00
|
|
|
def virtual_ips
|
2011-07-19 18:48:21 -04:00
|
|
|
@virtual_ips ||= begin
|
|
|
|
Fog::Rackspace::LoadBalancer::VirtualIps.new({
|
|
|
|
:connection => connection,
|
|
|
|
:load_balancer => self})
|
|
|
|
end
|
2011-07-18 22:45:47 -04:00
|
|
|
end
|
|
|
|
|
2011-07-27 18:00:18 -04:00
|
|
|
def connection_logging
|
|
|
|
attributes[:connection_logging]
|
|
|
|
end
|
|
|
|
|
2011-07-18 22:45:47 -04:00
|
|
|
def virtual_ips=(new_virtual_ips=[])
|
2011-07-19 18:48:21 -04:00
|
|
|
virtual_ips.load(new_virtual_ips)
|
2011-07-18 22:45:47 -04:00
|
|
|
end
|
|
|
|
|
2011-07-21 10:41:40 -04:00
|
|
|
def enable_connection_logging
|
|
|
|
connection.set_connection_logging identity, true
|
2011-07-27 18:00:18 -04:00
|
|
|
attributes[:connection_logging] = true
|
2011-07-21 10:41:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def disable_connection_logging
|
|
|
|
connection.set_connection_logging identity, false
|
2011-07-27 18:00:18 -04:00
|
|
|
attributes[:connection_logging] = false
|
2011-07-21 10:41:40 -04:00
|
|
|
end
|
|
|
|
|
2011-07-10 16:35:30 -04:00
|
|
|
def destroy
|
2011-07-14 15:20:53 -04:00
|
|
|
requires :identity
|
|
|
|
connection.delete_load_balancer(identity)
|
2011-07-10 16:35:30 -04:00
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def ready?
|
2011-07-14 15:20:53 -04:00
|
|
|
state == 'ACTIVE'
|
2011-07-10 16:35:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def save
|
|
|
|
if identity
|
|
|
|
update
|
|
|
|
else
|
|
|
|
create
|
|
|
|
end
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def create
|
|
|
|
requires :name, :protocol, :port, :virtual_ips, :nodes
|
2011-07-19 18:48:21 -04:00
|
|
|
data = connection.create_load_balancer(name, protocol, port, virtual_ips_hash, nodes_hash)
|
2011-07-10 16:35:30 -04:00
|
|
|
merge_attributes(data.body['loadBalancer'])
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2011-07-14 15:20:53 -04:00
|
|
|
requires :name, :protocol, :port, :algorithm
|
2011-07-10 16:35:30 -04:00
|
|
|
options = {
|
2011-07-14 15:20:53 -04:00
|
|
|
:name => name,
|
|
|
|
:algorithm => algorithm,
|
|
|
|
:protocol => protocol,
|
|
|
|
:port => port}
|
2011-07-10 16:35:30 -04:00
|
|
|
connection.update_load_balancer(identity, options)
|
2011-07-14 15:20:53 -04:00
|
|
|
|
|
|
|
#TODO - Should this bubble down to nodes? Without tracking changes this would be very inefficient.
|
|
|
|
# For now, individual nodes will have to be saved individually after saving an LB
|
2011-07-10 16:35:30 -04:00
|
|
|
end
|
2011-07-19 18:48:21 -04:00
|
|
|
|
|
|
|
def virtual_ips_hash
|
|
|
|
virtual_ips.collect do |virtual_ip|
|
|
|
|
{ :type => virtual_ip.type }
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def nodes_hash
|
|
|
|
nodes.collect do |node|
|
|
|
|
{ :address => node.address, :port => node.port, :condition => node.condition, :weight => node.weight }
|
|
|
|
end
|
|
|
|
end
|
2011-07-27 18:00:18 -04:00
|
|
|
|
|
|
|
def connection_logging=(new_value)
|
|
|
|
if !new_value.nil? and new_value.is_a?(Hash)
|
|
|
|
attributes[:connection_logging] = case new_value['enabled']
|
|
|
|
when 'true'
|
|
|
|
true
|
|
|
|
when 'false'
|
|
|
|
false
|
|
|
|
end
|
|
|
|
else
|
|
|
|
attributes[:connection_logging] = new_value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-07-10 16:35:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|