Class: Oddb2xml::FirstbaseDownloader

Inherits:
Downloader show all
Includes:
DownloadMethod
Defined in:
lib/oddb2xml/downloader.rb

Constant Summary collapse

BASE_URL =
"https://id.gs1.ch/01/07612345000961"

Instance Attribute Summary

Attributes inherited from Downloader

#agent, #file2save, #type, #url

Instance Method Summary collapse

Methods inherited from Downloader

#init, #report_download

Constructor Details

#initialize(type = :orphan, options = {}) ⇒ FirstbaseDownloader

Returns a new instance of FirstbaseDownloader.



347
348
349
# File 'lib/oddb2xml/downloader.rb', line 347

def initialize(type = :orphan, options = {})
  @url = BASE_URL
end

Instance Method Details

#downloadObject



351
352
353
354
355
356
357
358
359
360
361
362
363
# File 'lib/oddb2xml/downloader.rb', line 351

def download
  @file2save = File.join(DOWNLOADS, "firstbase.csv")
  report_download(@url, @file2save)
  begin
    download_as(@file2save, "w+")
    return File.expand_path(@file2save)
  rescue Timeout::Error, Errno::ETIMEDOUT
    retrievable? ? retry : raise
  ensure
    Oddb2xml.download_finished(@file2save, false)
  end
  File.expand_path(@file2save)
end