class Echelon::Seaworld::SanDiego

Attributes

xml_data[R]

Public Class Methods

new() click to toggle source
# File lib/echelon/parks/seaworld/san_diego.rb, line 26
def initialize
  # fetch the xml file
  http = Net::HTTP.new('lab.defimobile.com', 443)
  http.use_ssl = true
  http.verify_mode = OpenSSL::SSL::VERIFY_NONE
  _resp, data = http.get('/san_diego/rides')

  # were only interested in the ride data, throw everything else away
  xml_data = Nokogiri::HTML(data)
  @xml_data = xml_data.xpath("//ride")
end

Public Instance Methods

ride_list() click to toggle source
# File lib/echelon/parks/seaworld/san_diego.rb, line 12
def ride_list
  {
    1034 => 'Shipwreck Rapids',
    1239 => 'Manta',
    1024 => 'Skytower',
    1010 => 'Journey to Atlantis',
    1011 => 'Wild Arctic Ride',
    1122 => 'Elmo\'s Flying Fish',
    1029 => 'Skyride',
    1123 => 'Abby\'s Sea Star Spin',
    1121 => 'Oscar\'s Rocking Eel'
  }
end

Private Instance Methods

create_ride_object(ref) click to toggle source
# File lib/echelon/parks/seaworld/san_diego.rb, line 40
def create_ride_object(ref)
  xml_data.each do |ride|
    if ride.xpath('id').inner_text.to_i == ref
      active, queue_time = parse_wait_time(ride.xpath('waittime').inner_text)
      updated_at = DateTime.parse(ride.xpath('lastmodified').inner_text)
      return Ride.new(name: ride_list[ref], queue_time: queue_time, active: active, updated_at: updated_at)
    end
  end
end
parse_wait_time(wait) click to toggle source
# File lib/echelon/parks/seaworld/san_diego.rb, line 50
def parse_wait_time(wait)
  if wait == 'Closed'
    queue_time = 0
    active = 0
  elsif wait == 'No Wait'
    queue_time = 0
    active = 1
  elsif wait =~ /(\d*) min/
    queue_time = $1.to_i
    active = 1
  else
    queue_time = 0
    active = 0
  end

  return active, queue_time
end