class LocationsNg::Lga

Public Class Methods

all() click to toggle source
# File lib/locations_ng/lga.rb, line 6
def all
  @all_lgas
end
lgas(state) click to toggle source
# File lib/locations_ng/lga.rb, line 10
def lgas(state)
  lga_index = @all_lgas.index{ |l| l['state_alias'] == format_query(state) }

  unless lga_index.nil?
    return @all_lgas[lga_index]['lgas']
  end

  {message: "No lgas found for '#{state}'", status: 404}
end
localities(state, lga) click to toggle source
# File lib/locations_ng/lga.rb, line 20
def localities(state, lga)
  return {message: 'You must enter a state and lga.', status: 500} unless state && lga

  state_index = @all_lgas.index{ |s| s['state_alias'] == format_query(state) }

  unless state_index
    return {message: "'#{state}' state not found.", status: 404}
  end

  lga_index = @all_lgas[state_index]['locality'].index{ |l| l['lga_alias'] == format_query(lga) }

  unless lga_index
    return {message: "'#{lga}' LGA not found for '#{state}' state.", status: 404}
  end

  @all_lgas[state_index]['locality'][lga_index]['localities']
end

Private Class Methods

format_query(query) click to toggle source
# File lib/locations_ng/lga.rb, line 40
def format_query(query)
  query ? query.downcase.tr(' ', '_') : query
end