Sha256: 8cdbc7b34a51018c4dde6853c365ab2de32592a6a0e705ddd1fe303cfb8ecf69

Contents?: true

Size: 1.39 KB

Versions: 10

Compression:

Stored size: 1.39 KB

Contents

# frozen_string_literal: true

module AhlScraper
  class GoalieGameListItem < Resource
    def initialize(raw_data, opts = {})
      super(raw_data, opts)
      @raw_data = raw_data
    end

    def game_id
      @game_id ||= @raw_data[:prop][:game][:gameLink].to_i
    end

    def game_name
      @game_name ||= @raw_data[:row][:game]
    end

    def date
      @date ||= @raw_data[:row][:date_played]
    end

    def goals_against
      @goals_against ||= @raw_data[:row][:goals_against].to_i
    end

    def shots_against
      @shots_against ||= @raw_data[:row][:shots_against].to_i
    end

    def saves
      @saves ||= @raw_data[:row][:saves].to_i
    end

    def goals_against_average
      @goals_against_average ||= @raw_data[:row][:gaa].to_f
    end

    def save_percent
      @save_percent ||= @raw_data[:row][:svpct].to_f
    end

    def minutes
      @minutes ||= @raw_data[:row][:minutes]
    end

    def result
      @result ||= set_result
    end

    def shutout?
      @shutout ||= @raw_data[:row][:shutout] == "1"
    end

    private

    def set_result
      return "won" if @raw_data[:row][:win] == "1"

      # return "so_loss" if @raw_data[:row][:so_loss] == "1"

      return "ot_loss" if @raw_data[:row][:ot_loss] == "1"

      return "loss" if @raw_data[:row][:loss] == "1"

      return "played_but_no_result" if @raw_data[:row][:minutes] != "0:00"

      "did_not_play"
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ahl_scraper-0.4.0 lib/ahl_scraper/resources/goalie_game_list_item.rb
ahl_scraper-0.3.8 lib/ahl_scraper/resources/goalie_game_list_item.rb
ahl_scraper-0.3.7 lib/ahl_scraper/resources/goalie_game_list_item.rb
ahl_scraper-0.3.6 lib/ahl_scraper/resources/goalie_game_list_item.rb
ahl_scraper-0.3.5 lib/ahl_scraper/resources/goalie_game_list_item.rb
ahl_scraper-0.3.4 lib/ahl_scraper/resources/goalie_game_list_item.rb
ahl_scraper-0.3.3 lib/ahl_scraper/resources/goalie_game_list_item.rb
ahl_scraper-0.3.2 lib/ahl_scraper/resources/goalie_game_list_item.rb
ahl_scraper-0.3.1 lib/ahl_scraper/resources/goalie_game_list_item.rb
ahl_scraper-0.3.0 lib/ahl_scraper/resources/goalie_game_list_item.rb