Class: Jamf::Criteriable::Criterion
- Includes:
- Comparable
- Defined in:
- lib/jamf/api/classic/api_objects/criteriable/criterion.rb
Overview
This class defines a single criterion used in advanced searches and smart groups throughout the JSS module.
They are used within Criteria instances which store an array of these objects and provides methods for working with them as a group.
The classes that mix-in Jamf::Criteriable each have a :criteria attribute which holds one Criteria
See Jamf::Criteriable for examples
Constant Summary collapse
- SEARCH_TYPES =
These are the available search-types for building criteria
[ 'is', 'is not', 'like', 'not like', 'has', 'does not have', 'more than', 'less than', 'greater than', 'greater than or equal', 'less than or equal', 'before (yyyy-mm-dd)', 'after (yyyy-mm-dd)', 'more than x days ago', 'less than x days ago', 'in more than x days', 'in less than x days', 'member of', 'not member of', 'current', 'not current', 'matches regex', 'does not match regex' ].freeze
- AND_OR =
the acceptable symboles for and/or
%i[and or].freeze
Instance Attribute Summary collapse
-
#and_or ⇒ Symbol
:and or :or - the and_or value for associating this criterion with the previous one, defaults to :and.
-
#closing_paren ⇒ Boolean
readonly
Is there a closing paren after this criterion.
-
#name ⇒ String
The name of the field being searched.
-
#opening_paren ⇒ Boolean
readonly
Is there an opening paren before this criterion.
-
#priority ⇒ Integer
Zero-based index of this criterion within an array of criteria used for an advanced search or smart group.
-
#search_type ⇒ String
The comparator between the field and the value, must be one of SEARCH_TYPES.
-
#value ⇒ String
The value being searched for in the field named by :name.
Instance Method Summary collapse
-
#<=>(other) ⇒ Integer
Comparison - allows the Comparable module to do its work.
-
#initialize(**args) ⇒ Criterion
constructor
A new instance of Criterion.
-
#paren=(new_val) ⇒ void
set the parenthesis for the criteria.
-
#rest_xml ⇒ REXML::Element
private
The xml element for the criterion, to be embeded in that of a Criteria instance.
-
#signature ⇒ String
All our values except priority joined together for comparing this Criterion to another for equality and order.
Constructor Details
#initialize(**args) ⇒ Criterion
:priority is maintained by the Jamf::Criteriable::Criteria object holding this instance
Returns a new instance of Criterion.
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 107 def initialize(**args) @priority = args[:priority] @and_or = (args[:and_or].downcase.to_sym if args[:and_or]) || :and raise Jamf::InvalidDataError, ":and_or must be 'and' or 'or'." unless AND_OR.include? @and_or @name = args[:name] if args[:search_type] raise Jamf::InvalidDataError, 'Invalid :search_type' unless SEARCH_TYPES.include? args[:search_type] @search_type = args[:search_type] end # from the API, parens come like this @opening_paren = args[:opening_paren] @closing_paren = args[:closing_paren] # but from a user, they might come as a single :paren key, which # will be handled by the setter below send 'paren=', args[:paren] if args.key? :paren # default to false @opening_paren ||= false @closing_paren ||= false @value = args[:value] end |
Instance Attribute Details
#and_or ⇒ Symbol
Returns :and or :or - the and_or value for associating this criterion with the previous one, defaults to :and.
81 82 83 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 81 def and_or @and_or end |
#closing_paren ⇒ Boolean (readonly)
Returns Is there a closing paren after this criterion.
97 98 99 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 97 def closing_paren @closing_paren end |
#name ⇒ String
Returns the name of the field being searched.
84 85 86 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 84 def name @name end |
#opening_paren ⇒ Boolean (readonly)
Returns Is there an opening paren before this criterion.
94 95 96 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 94 def opening_paren @opening_paren end |
#priority ⇒ Integer
Returns zero-based index of this criterion within an array of criteria used for an advanced search or smart group. This is maintained automaticaly by the enclosing Criteria object.
78 79 80 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 78 def priority @priority end |
#search_type ⇒ String
Returns the comparator between the field and the value, must be one of SEARCH_TYPES.
88 89 90 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 88 def search_type @search_type end |
#value ⇒ String
Returns the value being searched for in the field named by :name.
91 92 93 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 91 def value @value end |
Instance Method Details
#<=>(other) ⇒ Integer
Comparison - allows the Comparable module to do its work
215 216 217 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 215 def <=>(other) signature <=> other.signature end |
#paren=(new_val) ⇒ void
This method returns an undefined value.
set the parenthesis for the criteria
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 152 def paren=(new_val) case new_val when :opening @opening_paren = true @closing_paren = false when :closing @opening_paren = false @closing_paren = true when nil @opening_paren = false @closing_paren = false else raise Jamf::InvalidDataError, 'paren must be :opening, :closing, or nil.' end end |
#rest_xml ⇒ REXML::Element
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
For this class, rest_xml can’t be a private method.
Returns The xml element for the criterion, to be embeded in that of a Criteria instance.
226 227 228 229 230 231 232 233 234 235 236 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 226 def rest_xml crn = REXML::Element.new 'criterion' crn.add_element('priority').text = @priority crn.add_element('and_or').text = @and_or crn.add_element('name').text = @name crn.add_element('search_type').text = @search_type crn.add_element('value').text = @value crn.add_element('opening_paren').text = @opening_paren ? 'true' : 'false' crn.add_element('closing_paren').text = @closing_paren ? 'true' : 'false' crn end |
#signature ⇒ String
Returns All our values except priority joined together for comparing this Criterion to another for equality and order.
205 206 207 |
# File 'lib/jamf/api/classic/api_objects/criteriable/criterion.rb', line 205 def signature [@and_or, @name, @search_type, @value].join ',' end |