Sha256: 033960f8c13771eb1a2bac13a621759ca53777e20718a0bfea9ac17671703672

Contents?: true

Size: 1.15 KB

Versions: 7

Compression:

Stored size: 1.15 KB

Contents

require 'json'

module I2X

  # = JSONSeedReader
  #
  # Load content from JSON seed.
  #
  class JSONSeedReader < SeedReader
    ##
    # == Read
    #
    # => Load the seed data into the @objects array for processing.
    #
    def read
      begin
        url = RestClient.get @seed[:payload][:uri]
        @doc = url.to_str
        JsonPath.on(@doc,@seed[:payload][:query]).each do |element|

          begin
            object = @help.deep_copy @agent[:payload]
            object.each_pair do |key,value|
              variables = @help.identify_variables(object[key])
              variables.each do |v|

                JsonPath.on(element, @seed[:payload][:selectors][v]).each do |el|
                
                  object[key].gsub!("%{#{v}}", el.to_s)
                end
              end
            end

            JsonPath.on(element,@seed[:payload][:cache]).each do |el|
              object[:seed] = el

            end

            object[:identifier] = @agent.identifier
            @objects.push object
          rescue Exception => e
            
          end
        end
      rescue Exception => e
        
      end

      @objects
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
i2x-0.1.1 lib/i2x/jsonseedreader.rb
i2x-0.1 lib/i2x/jsonseedreader.rb
i2x-0.0.7 lib/i2x/jsonseedreader.rb
i2x-0.0.6 lib/i2x/jsonseedreader.rb
i2x-0.0.5 lib/i2x/jsonseedreader.rb
i2x-0.0.4 lib/i2x/jsonseedreader.rb
i2x-0.0.3 lib/i2x/jsonseedreader.rb