Sha256: e2b7a9840cfdc428a0a400342c68595a7aebc5f93674416f8e658051ba033a65

Contents?: true

Size: 1.72 KB

Versions: 8

Compression:

Stored size: 1.72 KB

Contents

module VatsimTools

  class DataDownloader

    %w{curb tempfile time_diff tmpdir csv}.each { |lib| require lib }

    STATUS_URL = "http://status.vatsim.net/status.txt"
    LOCAL_STATUS = "#{Dir.tmpdir}/vatsim_status.txt"
    LOCAL_DATA = "#{Dir.tmpdir}/vatsim_data.txt"

    def initialize
      data_file
    end

    def create_status_tempfile
      status = Tempfile.new('vatsim_status')
      File.rename status.path, LOCAL_STATUS
      File.open(LOCAL_STATUS, "w+") {|f| f.write(Curl::Easy.perform(STATUS_URL).body_str) }
      File.chmod(0777, LOCAL_STATUS)
    end

    def read_status_tempfile
      status = File.open(LOCAL_STATUS)
      difference = Time.diff(status.ctime, Time.now)[:hour]
      difference > 3 ? create_status_tempfile : status.read
    end

    def status_file
      File.exists?(LOCAL_STATUS) ? read_status_tempfile : create_status_tempfile
      LOCAL_STATUS
    end

    def servers
      urls = []
      CSV.foreach(status_file, :col_sep =>'=') {|row| urls << row[1] if row[0] == "url0"}
      urls
    end

    def create_local_data_file
      data = Tempfile.new('vatsim_data', :encoding => 'utf-8')
      File.rename data.path, LOCAL_DATA
      data = Curl::Easy.perform(servers.sample).body_str.gsub(/["]/, '\s').encode!('UTF-16', 'UTF-8', :invalid => :replace, :replace => '').encode!('UTF-8', 'UTF-16')
      File.open(LOCAL_DATA, "w+") {|f| f.write(data)}
      File.chmod(0777, LOCAL_DATA)
    end

    def read_local_datafile
      data = File.open(LOCAL_DATA)
      difference = Time.diff(data.ctime, Time.now)[:minute]
      difference > 2 ? create_local_data_file : data.read
    end

    def data_file
      File.exists?(LOCAL_DATA) ? read_local_datafile : create_local_data_file
      LOCAL_DATA
    end

  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
vatsim_online-0.7.2 lib/vatsim_online/data_downloader.rb
vatsim_online-0.7.1 lib/vatsim_online/data_downloader.rb
vatsim_online-0.7.0 lib/vatsim_online/data_downloader.rb
vatsim_online-0.6.2 lib/vatsim_online/data_downloader.rb
vatsim_online-0.6.1 lib/vatsim_online/data_downloader.rb
vatsim_online-0.6.0 lib/vatsim_online/data_downloader.rb
vatsim_online-0.5.3 lib/vatsim_online/data_downloader.rb
vatsim_online-0.5.2 lib/vatsim_online/data_downloader.rb