Class: Nexpose::Criteria

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

Overview

Join search criteria for an asset filter search or dynamic asset group.

Direct Known Subclasses

Tag::Criteria

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(criteria = [], match = 'AND') ⇒ Criteria

Returns a new instance of Criteria.



300
301
302
303
# File 'lib/nexpose/filter.rb', line 300

def initialize(criteria = [], match = 'AND')
  @criteria = Array(criteria)
  @match = match.upcase
end

Instance Attribute Details

#criteriaObject

Array of criteria to match against.



298
299
300
# File 'lib/nexpose/filter.rb', line 298

def criteria
  @criteria
end

#matchObject

Whether to match any or all filters. One of ‘OR’ or ‘AND’.



296
297
298
# File 'lib/nexpose/filter.rb', line 296

def match
  @match
end

Class Method Details

.parse(json) ⇒ Object



331
332
333
334
335
336
337
# File 'lib/nexpose/filter.rb', line 331

def self.parse(json)
  ret = Criteria.new([], json['operator'])
  json['criteria'].each do |c|
    ret.criteria << Criterion.parse(c)
  end
  ret
end

Instance Method Details

#<<(criterion) ⇒ Object



327
328
329
# File 'lib/nexpose/filter.rb', line 327

def <<(criterion)
  criteria << criterion
end

#_to_payloadObject

Generate the payload needed for a POST request for Asset Filter.



318
319
320
321
322
323
324
325
# File 'lib/nexpose/filter.rb', line 318

def _to_payload
  { 'dir' => -1,
    'results' => -1,
    'sort' => 'assetIP',
    'startIndex' => -1,
    'table-id' => 'assetfilter',
    'searchCriteria' => to_json }
end

#to_jsonObject

Convert this object into the format expected by Nexpose.



312
313
314
# File 'lib/nexpose/filter.rb', line 312

def to_json
  JSON.generate(to_map)
end

#to_mapObject



305
306
307
308
# File 'lib/nexpose/filter.rb', line 305

def to_map
  { 'operator' => @match,
    'criteria' => @criteria.map { |c| c.to_map } }
end