Sha256: 44b2375915e3d4413523cb394a991aeb5e9bc5e6f92ca0fd38970d1df2b7d08e

Contents?: true

Size: 1.75 KB

Versions: 5

Compression:

Stored size: 1.75 KB

Contents

require 'open-uri'

module ARII

  # = XMLDetector
  #
  # Detect changes in XML files (uses XPath).
  #
  class XMLDetector < Detector

    public
    ##
    # == Detect the changes
    #
    def detect object
      ARII::Config.log.info(self.class.name) { "Monitoring #{object[:uri]}" } unless object[:uri].nil?
      begin
        if object[:uri] == '' then
          @doc = Nokogiri::XML(object[:content])
        else
          @doc = Nokogiri::XML(open(object[:uri]))
        end
        @doc.remove_namespaces!
        @doc.xpath(object[:query]).each do |element|
          element.xpath(object[:cache]).each do |c|
            @response = Cashier.verify c.content, object, c.content, object[:seed]
          end

          # Process ARII cache response
          @cache = JSON.parse(@response, {:symbolize_names => true})
          unless @cache[:templates].nil? then
            @cache[:templates].each do |t|
              @templates.push t
            end
          end

          ##
          # If not on cache, add to payload for processing
          #
          if @cache[:cache][:status] == 100 then
            ARII::Config.log.info(self.class.name) { "Not on cache, generating payload" }
            # add row data to payload from selectors (key => key, value => column name)
            payload = Hash.new
            object[:selectors].each do |selector|

              selector.each do |k, v|
                element.xpath(v).each do |el|
                  payload[k] = el.content
                end
              end
            end
            # add payload object to payloads list
            @payloads.push payload

          end
        end
      end
    rescue Exception => e
      ARII::Config.log.error(self.class.name) { "Processing error: #{e}" }
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
arii-1.8 lib/arii/xmldetector.rb
arii-1.7 lib/arii/xmldetector.rb
arii-1.6 lib/arii/xmldetector.rb
arii-1.5 lib/arii/xmldetector.rb
arii-1.2.2 lib/arii/xmldetector.rb