Class: Lakes::Texas::ShareALunker

Inherits:
Object
  • Object
show all
Includes:
Helper
Defined in:
lib/lakes/texas/share_a_lunker.rb

Constant Summary collapse

URL =
'https://tpwd.texas.gov/spdest/visitorcenters/tffc/sharelunker/archives/lunkersearch_adv.phtml'

Instance Method Summary collapse

Methods included from Helper

#cleanup_data, #cleanup_raw_text, #convert_relative_href, #http_get

Constructor Details

#initializeShareALunker



8
9
10
# File 'lib/lakes/texas/share_a_lunker.rb', line 8

def initialize
  @lunker_data = []
end

Instance Method Details

#listObject



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
# File 'lib/lakes/texas/share_a_lunker.rb', line 12

def list
  return @lunker_data unless @lunker_data.empty?
  content = http_get(URL)
  html_doc = Nokogiri::HTML(content)

  results = []
  html_doc.search('div#contentwide table tr').each_with_index do |row, index|
    next if index == 0
    data = row.search('th, td').to_a

    results << {
      id: data[0].text.to_i,
      details_uri: data[0].search('a')[0][:href],
      date_caught: Date.strptime(cleanup_raw_text(data[1].text), '%m/%d/%Y'),
      angler: cleanup_raw_text(data[2].text),
      angler_location: cleanup_raw_text(data[3].text),
      weight: cleanup_raw_text(data[4].text).to_f,
      length: cleanup_raw_text(data[5].text).to_f,
      girth: cleanup_raw_text(data[6].text).to_f,
      type: cleanup_raw_text(data[7].text),
      lake: cleanup_raw_text(data[8].text),
      record: cleanup_raw_text(data[9].text),
      caught_on: cleanup_raw_text(data[10].text),
      day_of_week: cleanup_raw_text(data[11].text),
      moon_phase: cleanup_raw_text(data[12].text),
      spawned: cleanup_raw_text(data[13].text),
      returned_to_lake: cleanup_raw_text(data[14].text),
      status: cleanup_raw_text(data[15].text)
    }
  end
  @lunker_data = results
  return @lunker_data
end