Class: Nexpose::DBExport

Inherits:
Object
  • Object
show all
Defined in:
lib/nexpose/report.rb

Overview

Configuration structure for database exporting of reports.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type) ⇒ DBExport

Returns a new instance of DBExport.



559
560
561
562
# File 'lib/nexpose/report.rb', line 559

def initialize(type)
  @type = type
  @parameters = {}
end

Instance Attribute Details

#credentialsObject

Credentials needed to export to the specified database.



555
556
557
# File 'lib/nexpose/report.rb', line 555

def credentials
  @credentials
end

#parametersObject

Map of parameters for this DB export configuration.



557
558
559
# File 'lib/nexpose/report.rb', line 557

def parameters
  @parameters
end

#typeObject

The DB type to export to.



553
554
555
# File 'lib/nexpose/report.rb', line 553

def type
  @type
end

Class Method Details

.parse(xml) ⇒ Object



573
574
575
576
577
578
579
580
581
582
583
# File 'lib/nexpose/report.rb', line 573

def self.parse(xml)
  xml.elements.each('//DBExport') do |dbexport|
    config = DBExport.new(dbexport.attributes['type'])
    config.credentials = ExportCredential.parse(xml)
    xml.elements.each('//param') do |param|
      config.parameters[param.attributes['name']] = param.text
    end
    return config
  end
  nil
end

Instance Method Details

#to_xmlObject



564
565
566
567
568
569
570
571
# File 'lib/nexpose/report.rb', line 564

def to_xml
  xml = %(<DBExport type="#{@type}">)
  xml << @credentials.to_xml if @credentials
  @parameters.each_pair do |name, value|
    xml << %(<param name="#{name}">#{value}</param>)
  end
  xml << '</DBExport>'
end