Class: Jetel::Modules::Wifileaks

Inherits:
Module
  • Object
show all
Defined in:
lib/jetel/modules/wifileaks/wifileaks.rb

Instance Attribute Summary

Attributes inherited from Module

#downloader

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Module

#download_dir, download_dir, #download_source, downloaded_file, #downloaded_file, extract_dir, #extract_dir, extracted_file, #extracted_file, #initialize, target_dir, #target_dir, transform_dir, #transform_dir, transformed_file, #transformed_file, #unzip

Constructor Details

This class inherits a constructor from Jetel::Modules::Module

Class Method Details

.sourcesObject



12
13
14
15
16
17
18
19
# File 'lib/jetel/modules/wifileaks/wifileaks.rb', line 12

def sources
  [
    {
      name: 'wifileaks',
      url: 'http://download.wifileaks.cz/data/wifileaks_150709.tsv'
    }
  ]
end

Instance Method Details

#download(global_options, options, args) ⇒ Object



22
23
24
25
26
# File 'lib/jetel/modules/wifileaks/wifileaks.rb', line 22

def download(global_options, options, args)
  self.class.sources.pmap do |source|
    download_source(source, global_options.merge(options))
  end
end

#extract(global_options, options, args) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
# File 'lib/jetel/modules/wifileaks/wifileaks.rb', line 28

def extract(global_options, options, args)
  self.class.sources.pmap do |source|
    downloaded_file = downloaded_file(source, global_options.merge(options))
    dest_dir = extract_dir(source, global_options.merge(options))

    puts "Extracting #{downloaded_file}"

    FileUtils.mkdir_p(dest_dir)
    FileUtils.cp(downloaded_file, dest_dir)
  end
end

#load(global_options, options, args) ⇒ Object



71
72
73
74
# File 'lib/jetel/modules/wifileaks/wifileaks.rb', line 71

def load(global_options, options, args)
  res = super(global_options, options.merge({:delimiter => "\t"}), args)
  res
end

#transform(global_options, options, args) ⇒ Object



40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/jetel/modules/wifileaks/wifileaks.rb', line 40

def transform(global_options, options, args)
  self.class.sources.pmap do |source|
    opts = global_options.merge(options)

    extracted_file = extracted_file(source, opts)
    transformed_file = transformed_file(source, opts)

    puts "Transforming #{extracted_file}"

    headers = %w(
      MAC
      SSID
      security
      latitude
      longitude
      altitude
      updated_at
    )

    File.open(extracted_file, 'r') do |file_in|
      File.open(transformed_file, 'w') do |file_out|
        file_out.puts(headers.join("\t"))
        file_in.each do |line|
          next if line == "\n"
          file_out.puts(line.chomp)
        end
      end
    end
  end
end