1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
|
module Aws
require 'xmlsimple'
class Elb < AwsBase
include AwsBaseInterface
#Amazon ELB API version being used
API_VERSION = "2012-06-01"
DEFAULT_HOST = "elasticloadbalancing.amazonaws.com"
DEFAULT_PATH = '/'
DEFAULT_PROTOCOL = 'https'
DEFAULT_PORT = 443
def self.connection_name
:elb_connection
end
@@bench = AwsBenchmarkingBlock.new
def self.bench
@@bench
end
def self.bench_xml
@@bench.xml
end
def self.bench_ec2
@@bench.service
end
# Current API version (sometimes we have to check it outside the GEM).
@@api = ENV['ELB_API_VERSION'] || API_VERSION
def self.api
@@api
end
def initialize(aws_access_key_id=nil, aws_secret_access_key=nil, params={})
init({:name => 'ELB',
:default_host => ENV['ELB_URL'] ? URI.parse(ENV['ELB_URL']).host : DEFAULT_HOST,
:default_port => ENV['ELB_URL'] ? URI.parse(ENV['ELB_URL']).port : DEFAULT_PORT,
:default_service => ENV['ELB_URL'] ? URI.parse(ENV['ELB_URL']).path : DEFAULT_PATH,
:default_protocol => ENV['ELB_URL'] ? URI.parse(ENV['ELB_URL']).scheme : DEFAULT_PROTOCOL,
:api_version => API_VERSION},
aws_access_key_id || ENV['AWS_ACCESS_KEY_ID'],
aws_secret_access_key|| ENV['AWS_SECRET_ACCESS_KEY'],
params)
end
# Sends request to Amazon and parses the response
# Raises AwsError if any banana happened
def request_info(request, parser, options={})
request_info2(request, parser, @params, self.class.connection_name, @logger, @@bench, options)
end
# todo: convert to xml-simple version and get rid of parser below
def do_request(action, params, options={})
link = generate_request(action, params)
resp = request_info_xml_simple(self.class.connection_name, @params, link, @logger,
:group_tags =>{"LoadBalancersDescriptions"=>"LoadBalancersDescription",
"DBParameterGroups" =>"DBParameterGroup",
"DBSecurityGroups" =>"DBSecurityGroup",
"EC2SecurityGroups" =>"EC2SecurityGroup",
"IPRanges" =>"IPRange"},
:force_array =>["DBInstances",
"DBParameterGroups",
"DBSecurityGroups",
"EC2SecurityGroups",
"IPRanges"],
:pull_out_array =>options[:pull_out_array],
:pull_out_single=>options[:pull_out_single],
:wrapper =>options[:wrapper])
end
#-----------------------------------------------------------------
# REQUESTS
#-----------------------------------------------------------------
#
# name: name of load balancer
# availability_zones: array of zones
# listeners: array of hashes containing :load_balancer_port, :instance_port, :protocol
# eg: {:load_balancer_port=>80, :instance_port=>8080, :protocol=>"HTTP"}
def create_load_balancer(name, availability_zones, listeners)
params = hash_params('AvailabilityZones.member', availability_zones)
i = 1
listeners.each do |l|
params["Listeners.member.#{i}.Protocol"] = "#{l[:protocol]}"
params["Listeners.member.#{i}.LoadBalancerPort"] = "#{l[:load_balancer_port]}"
params["Listeners.member.#{i}.InstancePort"] = "#{l[:instance_port]}"
i += 1
end
params['LoadBalancerName'] = name
@logger.info("Creating LoadBalancer called #{params['LoadBalancerName']}")
link = generate_request("CreateLoadBalancer", params)
resp = request_info(link, QElbCreateParser.new(:logger => @logger))
rescue Exception
on_exception
end
#
# name: name of load balancer
# listeners: array of hashes containing :load_balancer_port, :instance_port, :protocol
# eg: {:load_balancer_port=>80, :instance_port=>8080, :protocol=>"HTTP"}
#
def create_load_balancer_listeners(name, listeners)
params = {}
params['LoadBalancerName'] = name
i = 1
listeners.each do |l|
params["Listeners.member.#{i}.Protocol"] = "#{l[:protocol]}"
params["Listeners.member.#{i}.LoadBalancerPort"] = "#{l[:load_balancer_port]}"
params["Listeners.member.#{i}.InstancePort"] = "#{l[:instance_port]}"
i += 1
end
@logger.info("Creating Listeners for LoadBalancer #{name}")
link = generate_request("CreateLoadBalancerListeners", params)
resp = request_info(link, QElbEmptyResponseParser.new(:logger => @logger))
rescue Exception
on_exception
end
#
# name: name of load balancer
# ports: array of client port number(s) of the load balancer listener(s) to be removed.
#
def delete_load_balancer_listeners(name, ports)
params = {}
params['LoadBalancerName'] = name
i = 1
ports.each do |l|
params["LoadBalancerPorts.member.#{i}"] = "#{l}"
i += 1
end
@logger.info("Deleting Listeners for LoadBalancer #{name}")
link = generate_request("DeleteLoadBalancerListeners", params)
resp = request_info(link, QElbEmptyResponseParser.new(:logger => @logger))
rescue Exception
on_exception
end
# name: name of load balancer
# instance_ids: array of instance_id's to add to load balancer
def register_instances_with_load_balancer(name, instance_ids)
params = {}
params['LoadBalancerName'] = name
i = 1
instance_ids.each do |l|
params["Instances.member.#{i}.InstanceId"] = "#{l}"
i += 1
end
@logger.info("Registering Instances #{instance_ids.join(',')} with Load Balancer '#{name}'")
link = generate_request("RegisterInstancesWithLoadBalancer", params)
resp = request_info(link, QElbRegisterInstancesParser.new(:logger => @logger))
rescue Exception
on_exception
end
def deregister_instances_from_load_balancer(name, instance_ids)
params = {}
params['LoadBalancerName'] = name
i = 1
instance_ids.each do |l|
params["Instances.member.#{i}.InstanceId"] = "#{l}"
i += 1
end
@logger.info("Deregistering Instances #{instance_ids.join(',')} from Load Balancer '#{name}'")
link = generate_request("DeregisterInstancesFromLoadBalancer", params) # Same response as register I believe
resp = request_info(link, QElbRegisterInstancesParser.new(:logger => @logger))
rescue Exception
on_exception
end
# name: name of load balancer
# healthy_threshold: number of successful probes required to enter Healthy state.
# unhealthy_threshold: number of unsuccessful probes required to enter Unhealthy state.
# interval: interval between probes (seconds)
# target: probe target (protocol:port[/path])
# timeout: probe response timeout
def configure_health_check(name, healthy_threshold, unhealthy_threshold, interval, target, timeout )
params = {}
params['LoadBalancerName'] = name
params['HealthCheck.HealthyThreshold'] = "#{healthy_threshold}"
params['HealthCheck.UnhealthyThreshold'] = "#{unhealthy_threshold}"
params['HealthCheck.Interval'] = "#{interval}"
params['HealthCheck.Target'] = target
params['HealthCheck.Timeout'] = "#{timeout}"
@logger.info("Configuring health check for Load Balancer '#{name}'")
link = generate_request("ConfigureHealthCheck", params)
resp = request_info(link, QElbConfigureHealthCheckParser.new(:logger => @logger))
rescue Exception
on_exception
end
def describe_load_balancers(lparams={})
@logger.info("Describing Load Balancers")
params = {}
params.update(hash_params('LoadBalancerNames.member', lparams[:names])) if lparams[:names]
link = generate_request("DescribeLoadBalancers", params)
resp = request_info(link, QElbDescribeLoadBalancersParser.new(:logger => @logger))
rescue Exception
on_exception
end
def describe_instance_health(name, instance_ids=[])
instance_ids = [instance_ids] if instance_ids.is_a?(String)
# @logger.info("Describing Instance Health")
params = {}
params['LoadBalancerName'] = name
i = 1
instance_ids.each do |l|
params["Instances.member.#{i}.InstanceId"] = "#{l}"
i += 1
end
@logger.info("Describing Instances Health #{instance_ids.join(',')} with Load Balancer '#{name}'")
link = generate_request("DescribeInstanceHealth", params)
resp = request_info(link, QElbDescribeInstancesHealthParser.new(:logger => @logger))
rescue Exception
on_exception
end
def delete_load_balancer(name)
@logger.info("Deleting Load Balancer - " + name.to_s)
params = {}
params['LoadBalancerName'] = name
link = generate_request("DeleteLoadBalancer", params)
resp = request_info(link, QElbEmptyResponseParser.new(:logger => @logger))
rescue Exception
on_exception
end
#-----------------------------------------------------------------
# PARSERS: Instances
#-----------------------------------------------------------------
class QElbCreateParser < AwsParser
def reset
@result = {}
end
def tagend(name)
case name
when 'DNSName' then
@result[:dns_name] = @text
end
end
end
class QElbDescribeLoadBalancersParser < AwsParser
def reset
@result = []
end
def tagstart(name, attributes)
# puts 'tagstart ' + name + ' -- ' + @xmlpath
if (name == 'member' && @xmlpath == 'DescribeLoadBalancersResponse/DescribeLoadBalancersResult/LoadBalancerDescriptions/member/ListenerDescriptions')
@listener = {}
end
if (name == 'member' && @xmlpath == 'DescribeLoadBalancersResponse/DescribeLoadBalancersResult/LoadBalancerDescriptions/member/AvailabilityZones')
@availability_zone = {}
end
if (name == 'member' && @xmlpath == 'DescribeLoadBalancersResponse/DescribeLoadBalancersResult/LoadBalancerDescriptions/member/Instances')
@instance = {}
end
if (name == 'member' && @xmlpath == 'DescribeLoadBalancersResponse/DescribeLoadBalancersResult/LoadBalancerDescriptions')
@member = {:listeners=>[], :availability_zones=>[], :health_check=>{}, :instances=>[]}
end
end
def tagend(name)
case name
when 'LoadBalancerName' then
@member[:load_balancer_name] = @text
@member[:name] = @text
when 'CreatedTime' then
@member[:created_time] = Time.parse(@text)
@member[:created] = @member[:created_time]
when 'DNSName' then
@member[:dns_name] = @text
# Instances
when 'InstanceId' then
@instance[:instance_id] = @text
# Listeners
when 'Protocol' then
@listener[:protocol] = @text
when 'LoadBalancerPort' then
@listener[:load_balancer_port] = @text.to_i
when 'InstancePort' then
@listener[:instance_port] = @text.to_i
# HEALTH CHECK STUFF
when 'Interval' then
@member[:health_check][:interval] = @text.to_i
when 'Target' then
@member[:health_check][:target] = @text
when 'HealthyThreshold' then
@member[:health_check][:healthy_threshold] = @text.to_i
when 'Timeout' then
@member[:health_check][:timeout] = @text.to_i
when 'UnhealthyThreshold' then
@member[:health_check][:unhealthy_threshold] = @text.to_i
# AvailabilityZones
when 'member' then
if @xmlpath == 'DescribeLoadBalancersResponse/DescribeLoadBalancersResult/LoadBalancerDescriptions/member/ListenerDescriptions'
@member[:listeners] << @listener
elsif @xmlpath == 'DescribeLoadBalancersResponse/DescribeLoadBalancersResult/LoadBalancerDescriptions/member/AvailabilityZones'
@availability_zone = @text
@member[:availability_zones] << @availability_zone
elsif @xmlpath == 'DescribeLoadBalancersResponse/DescribeLoadBalancersResult/LoadBalancerDescriptions/member/Instances'
@member[:instances] << @instance
elsif @xmlpath == 'DescribeLoadBalancersResponse/DescribeLoadBalancersResult/LoadBalancerDescriptions'
@result << @member
end
end
end
end
class QElbRegisterInstancesParser < AwsParser
def reset
@result = []
end
def tagstart(name, attributes)
# puts 'tagstart ' + name + ' -- ' + @xmlpath
if (name == 'member' &&
(@xmlpath == 'RegisterInstancesWithLoadBalancerResponse/RegisterInstancesWithLoadBalancerResult/Instances' ||
@xmlpath == 'DeregisterInstancesFromLoadBalancerResponse/DeregisterInstancesFromLoadBalancerResult/Instances')
)
@member = {}
end
end
def tagend(name)
case name
when 'InstanceId' then
@member[:instance_id] = @text
when 'member' then
@result << @member
end
end
#
end
class QElbConfigureHealthCheckParser < AwsParser
def reset
@result = {}
end
def tagstart(name, attributes)
if name == 'HealthCheck'
@result[:health_check] = {}
end
end
def tagend(name)
case name
when 'HealthyThreshold' then
@result[:health_check][:healthy_threshold] = @text.to_i
when 'UnhealthyThreshold' then
@result[:health_check][:unhealthy_threshold] = @text.to_i
when 'Interval' then
@result[:health_check][:interval] = @text.to_i
when 'Target' then
@result[:health_check][:target] = @text
when 'Timeout' then
@result[:health_check][:timeout] = @text.to_i
end
end
#
end
class QElbDescribeInstancesHealthParser < AwsParser
def reset
@result = []
end
def tagstart(name, attributes)
# puts 'tagstart ' + name + ' -- ' + @xmlpath
if (name == 'member' && @xmlpath == 'DescribeInstanceHealthResponse/DescribeInstanceHealthResult/InstanceStates')
@member = {}
end
end
def tagend(name)
case name
when 'Description' then
@member[:description] = @text
when 'State' then
@member[:state] = @text
when 'InstanceId' then
@member[:instance_id] = @text
when 'ReasonCode' then
@member[:reason_code] = @text
when 'member' then
@result << @member
end
end
#
end
class QElbEmptyResponseParser < AwsParser
def reset
@result = true
end
end
end
end
|