Module: JSON::LD::Utils
- Defined in:
- lib/json/ld/utils.rb
Instance Method Summary collapse
-
#add_value(subject, property, value, property_is_array: false, value_is_array: false, allow_duplicate: true) ⇒ Object
Adds a value to a subject.
-
#as_array(object) ⇒ Array<Object>
Represent as an array.
-
#as_resource(id, base = nil) ⇒ RDF::Resource
Represent an id as an IRI or Blank Node.
-
#blank_node?(value) ⇒ Boolean
Is value a blank node? Value is a blank node.
-
#compare_values(v1, v2) ⇒ Boolean
Compares two JSON-LD values for equality.
-
#graph?(value) ⇒ Boolean
Is value an expaned @graph?.
-
#has_property(subject, property) ⇒ Boolean
Returns True if the given subject has the given property.
-
#has_value(subject, property, value) ⇒ Boolean
Determines if the given value is a property of the given subject.
-
#index?(value) ⇒ Boolean
Is value annotated?.
-
#list?(value) ⇒ Boolean
Is value an expaned @list?.
-
#node?(value) ⇒ Boolean
Is value a node? A value is a node if * it is a Hash * it is not a @value, @set or @list * it has more than 1 key or any key is not @id.
-
#node_or_ref?(value) ⇒ Boolean
Is value a node or a node reference reference?.
-
#node_reference?(value) ⇒ Boolean
Is value a node reference?.
-
#simple_graph?(value) ⇒ Boolean
Is value a simple graph (lacking @id)?.
-
#value?(value) ⇒ Boolean
Is value literal?.
Instance Method Details
#add_value(subject, property, value, property_is_array: false, value_is_array: false, allow_duplicate: true) ⇒ Object
Adds a value to a subject. If the value is an array, all values in the array will be added.
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
# File 'lib/json/ld/utils.rb', line 162 def add_value(subject, property, value, property_is_array: false, value_is_array: false, allow_duplicate: true) if value_is_array subject[property] = value elsif value.is_a?(Array) subject[property] = [] if value.empty? && property_is_array value.each do |v| add_value(subject, property, v, property_is_array: property_is_array, allow_duplicate: allow_duplicate) end elsif subject[property] # check if subject already has value if duplicates not allowed _has_value = !allow_duplicate && has_value(subject, property, value) # make property an array if value not present or always an array if !subject[property].is_a?(Array) && (!_has_value || property_is_array) subject[property] = [subject[property]] end subject[property] << value unless _has_value else subject[property] = property_is_array ? [value] : value end end |
#as_array(object) ⇒ Array<Object>
Represent as an array
119 120 121 |
# File 'lib/json/ld/utils.rb', line 119 def as_array(object) object.is_a?(Array) ? object : [object] end |
#as_resource(id, base = nil) ⇒ RDF::Resource
Represent an id as an IRI or Blank Node
104 105 106 107 108 109 110 111 112 113 |
# File 'lib/json/ld/utils.rb', line 104 def as_resource(id, base = nil) @nodes ||= {} # Re-use BNodes if id.start_with?('_:') (@nodes[id] ||= RDF::Node.new(namer.get_sym(id))) elsif base base.join(id) else RDF::URI(id) end end |
#blank_node?(value) ⇒ Boolean
Is value a blank node? Value is a blank node
40 41 42 43 44 45 46 47 |
# File 'lib/json/ld/utils.rb', line 40 def blank_node?(value) case value when nil then true when String then value.start_with?('_:') else (node?(value) || node_reference?(value)) && value.fetch('@id', '_:').start_with?('_:') end end |
#compare_values(v1, v2) ⇒ Boolean
Compares two JSON-LD values for equality. Two JSON-LD values will be considered equal if:
-
They are both primitives of the same type and value.
-
They are both @values with the same @value, @type, @language,
and @index, OR
-
They both have @ids that are the same.
136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'lib/json/ld/utils.rb', line 136 def compare_values(v1, v2) case when node_or_ref?(v1) && node_or_ref?(v2) then v1['@id'] && v1['@id'] == v2['@id'] when value?(v1) && value?(v2) v1['@value'] == v2['@value'] && v1['@type'] == v2['@type'] && v1['@language'] == v2['@language'] && v1['@index'] == v2['@index'] else v1 == v2 end end |
#graph?(value) ⇒ Boolean
Is value an expaned @graph?
Note: A value is a graph if all of these hold true:
-
It is an object.
-
It has an ‘@graph` key.
-
It may have ‘@context’, ‘@id’ or ‘@index’
59 60 61 |
# File 'lib/json/ld/utils.rb', line 59 def graph?(value) value.is_a?(Hash) && (value.keys - UTIL_GRAPH_KEYS) == ['@graph'] end |
#has_property(subject, property) ⇒ Boolean
Returns True if the given subject has the given property.
191 192 193 194 |
# File 'lib/json/ld/utils.rb', line 191 def has_property(subject, property) return false unless value = subject[property] !value.is_a?(Array) || !value.empty? end |
#has_value(subject, property, value) ⇒ Boolean
Determines if the given value is a property of the given subject.
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
# File 'lib/json/ld/utils.rb', line 203 def has_value(subject, property, value) if has_property(subject, property) val = subject[property] is_list = list?(val) if val.is_a?(Array) || is_list val = val['@list'] if is_list val.any? {|v| compare_values(value, v)} elsif !val.is_a?(Array) compare_values(value, val) else false end else false end end |
#index?(value) ⇒ Boolean
Is value annotated?
86 87 88 |
# File 'lib/json/ld/utils.rb', line 86 def index?(value) value.is_a?(Hash) && value.has_key?('@index') end |
#list?(value) ⇒ Boolean
Is value an expaned @list?
77 78 79 |
# File 'lib/json/ld/utils.rb', line 77 def list?(value) value.is_a?(Hash) && value.has_key?('@list') end |
#node?(value) ⇒ Boolean
Is value a node? A value is a node if
-
it is a Hash
-
it is not a @value, @set or @list
-
it has more than 1 key or any key is not @id
12 13 14 15 16 |
# File 'lib/json/ld/utils.rb', line 12 def node?(value) value.is_a?(Hash) && !(value.has_key?('@value') || value.has_key?('@list') || value.has_key?('@set')) && (value.length > 1 || !value.has_key?('@id')) end |
#node_or_ref?(value) ⇒ Boolean
Is value a node or a node reference reference?
30 31 32 33 |
# File 'lib/json/ld/utils.rb', line 30 def node_or_ref?(value) value.is_a?(Hash) && !(value.has_key?('@value') || value.has_key?('@list') || value.has_key?('@set')) end |
#node_reference?(value) ⇒ Boolean
Is value a node reference?
22 23 24 |
# File 'lib/json/ld/utils.rb', line 22 def node_reference?(value) value.is_a?(Hash) && value.length == 1 && value.key?('@id') end |
#simple_graph?(value) ⇒ Boolean
Is value a simple graph (lacking @id)?
68 69 70 |
# File 'lib/json/ld/utils.rb', line 68 def simple_graph?(value) graph?(value) && !value.has_key?('@id') end |
#value?(value) ⇒ Boolean
Is value literal?
95 96 97 |
# File 'lib/json/ld/utils.rb', line 95 def value?(value) value.is_a?(Hash) && value.has_key?('@value') end |