Sha256: 599db73fb4306045ed0cafc0b41525a05adb800a43d72ef4b78b36bb44e5771c

Contents?: true

Size: 1.98 KB

Versions: 7

Compression:

Stored size: 1.98 KB

Contents

#--
# Ruby Whois
#
# An intelligent pure Ruby WHOIS client and parser.
#
# Copyright (c) 2009-2013 Simone Carletti <weppos@weppos.net>
#++


require 'whois/record/scanners/base'


module Whois
  class Record
    module Scanners

      # Scanner for the whois.cira.ca record.
      class WhoisCiraCa < Base

        self.tokenizers += [
            :skip_empty_line,
            :scan_disclaimer,
            :skip_comment,
            :scan_header,
            :scan_keyvalue,
            :scan_nameserver,
        ]

        
        tokenizer :scan_disclaimer do
          if @input.match?(/^% Use of CIRA/)
            @ast["field:disclaimer"] = _scan_lines_to_array(/^%(.*)\n/).join("\n")
          end
        end

        tokenizer :scan_header do
          if @input.scan(/^(.+?):\n/)
            @tmp["group"] = @input[1]
          end
        end

        tokenizer :scan_keyvalue do
          if @input.scan(/^(.+?):(.*?)\n/)
            start = @input[1]
            key, value = start.strip, @input[2].strip

            # This is a nested key
            target = if start.index(" ") == 0
              error!("Expected group.") if @tmp["group"].nil?
              @ast[@tmp["group"]] ||= {}
              @ast[@tmp["group"]]
            else
              @tmp.delete("group")
              @ast
            end

            more  = _scan_lines_to_array(/^\s{#{start.size}}(.+)\n/)
            value = more.unshift(value).join("\n") unless more.empty?

            if target[key].nil?
              target[key] = value
            else
              target[key] = Array.wrap(target[key])
              target[key] << value
            end
          end
        end

        tokenizer :scan_nameserver do
          if @input.scan(/^\s+(.+?)\n/) && @tmp["group"] == "Name servers"
            @ast["field:nameservers"] ||= []
            @ast["field:nameservers"] <<  @input[1].strip
          end
        end

        tokenizer :skip_comment do
          @input.skip(/^%.*\n/)
        end

      end

    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
whois-3.4.3 lib/whois/record/scanners/whois.cira.ca.rb
whois-3.4.2 lib/whois/record/scanners/whois.cira.ca.rb
whois-3.4.1 lib/whois/record/scanners/whois.cira.ca.rb
whois-3.4.0 lib/whois/record/scanners/whois.cira.ca.rb
whois-3.3.1 lib/whois/record/scanners/whois.cira.ca.rb
whois-3.3.0 lib/whois/record/scanners/whois.cira.ca.rb
whois-3.2.1 lib/whois/record/scanners/whois.cira.ca.rb