class AhlScraper::SeasonGameIdsFetcher

Public Class Methods

new(season_id) click to toggle source
# File lib/ahl_scraper/fetchers/season_game_ids_fetcher.rb, line 5
def initialize(season_id)
  @season_id = season_id
end

Public Instance Methods

call() click to toggle source
# File lib/ahl_scraper/fetchers/season_game_ids_fetcher.rb, line 9
def call
  JSON.parse(Nokogiri::HTML(URI.parse(url).open)
    .text[5..-2], symbolize_names: true)
    .dig(0, :sections, 0, :data)
end

Private Instance Methods

url() click to toggle source
# File lib/ahl_scraper/fetchers/season_game_ids_fetcher.rb, line 17
def url
  "https://lscluster.hockeytech.com/feed/index.php?feed=statviewfeed&view=schedule&team=-1&season=#{@season_id}&month=-1&location=homeaway&key=ccb91f29d6744675&client_code=ahl&site_id=3&league_id=4&division_id=-1&lang=en&callback=json"
end