# encoding: utf-8 # Copyright (c) 2015, Tomas Korcak # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. require 'pmap' require 'csv' require_relative '../../config/config' require_relative '../../helpers/helpers' require_relative '../../modules/module' module Jetel module Modules class Ip < Module class << self def sources [ { name: 'afrinic', url: 'ftp://ftp.afrinic.net/pub/stats/afrinic/delegated-afrinic-latest' }, { name: 'apnic', url: 'ftp://ftp.apnic.net/pub/stats/apnic/delegated-apnic-latest' }, { name: 'arin', url: 'ftp://ftp.arin.net/pub/stats/arin/delegated-arin-latest' }, { name: 'lacnic', url: 'ftp://ftp.lacnic.net/pub/stats/lacnic/delegated-lacnic-latest' }, { name: 'ripencc', url: 'ftp://ftp.ripe.net/ripe/stats/delegated-ripencc-latest' }, { name: 'iana', url: 'ftp://ftp.apnic.net/pub/stats/iana/delegated-iana-latest' } ] end end def download(global_options, options, args) self.class.sources.pmap do |source| download_source(source, global_options.merge(options)) end end 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 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) FileUtils.mkdir_p(transform_dir(source, opts)) csv_opts = { :col_sep => '|' } puts "Transforming #{extracted_file}" CSV.open(extracted_file, 'r', csv_opts) do |csv| headers = %w( registry cc type start value date status ) CSV.open(transformed_file, 'w', :write_headers => true, :headers => headers) do |csv_out| csv.each do |row| next if row.length < 7 next if row[0] != source[:name] csv_out << row end end end end end end end end