Class: JSON::LD::Resource

Inherits:
Object
  • Object
show all
Includes:
RDF::Enumerable
Defined in:
lib/json/ld/resource.rb

Overview

Simple Ruby reflector class to provide native access to JSON-LD objects

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(node_definition, options = {}) ⇒ Resource

A new resource from the parsed graph

Parameters:

  • node_definition (Hash{String => Object})
  • options (Hash{Symbol => Object}) (defaults to: {})

Options Hash (options):

  • :context (String)

    Resource context, used for finding appropriate collection and JSON-LD context.

  • :clean (Boolean) — default: false
  • :compact (Boolean) — default: false

    Assume ‘node_definition` is in expanded form and compact using `context`.

  • :reconciled (Boolean) — default: !new

    node_definition is not based on Mongo IDs and must be reconciled against Mongo, or merged into another resource.

  • :new (Boolean) — default: true

    This is a new resource, not yet saved to Mongo

  • :stub (Boolean) — default: false

    This is a stand-in for another resource that has not yet been retrieved (or created) from Mongo



77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/json/ld/resource.rb', line 77

def initialize(node_definition, options = {})
  @context = options[:context]
  @clean = options.fetch(:clean, false)
  @new = options.fetch(:new, true)
  @reconciled = options.fetch(:reconciled, !@new)
  @resolved = false
  @attributes = if options[:compact]
    JSON::LD::API.compact(node_definition, @context)
  else
    node_definition
  end
  @id = @attributes['@id']
  @anon = @id.nil? || @id.to_s[0,2] == '_:'
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args) ⇒ Object

Access individual fields, from subject definition



216
217
218
# File 'lib/json/ld/resource.rb', line 216

def method_missing(method, *args)
  property(method.to_s)
end

Instance Attribute Details

#attributesHash<String => Object] Object representation of resource (readonly)

Returns Hash<String => Object] Object representation of resource.

Returns:

  • (Hash<String => Object] Object representation of resource)

    Hash<String => Object] Object representation of resource



8
9
10
# File 'lib/json/ld/resource.rb', line 8

def attributes
  @attributes
end

#contextJSON::LD::Context (readonly)

Returns Context associated with this resource.

Returns:



14
15
16
# File 'lib/json/ld/resource.rb', line 14

def context
  @context
end

#idString (readonly)

Returns ID of this resource.

Returns:

  • (String)

    ID of this resource



11
12
13
# File 'lib/json/ld/resource.rb', line 11

def id
  @id
end

Instance Method Details

#anonymous?Boolean

Anonymous resources have BNode ids or no schema:url

Returns:

  • (Boolean)


45
# File 'lib/json/ld/resource.rb', line 45

def anonymous?; @anon; end

#clean?Boolean

Is this resource clean (i.e., saved to mongo?)

Returns:

  • (Boolean)


20
# File 'lib/json/ld/resource.rb', line 20

def clean?; @clean; end

#deresolveHash

Reverse resolution of resource attributes. Just returns ‘attributes` if resource is unresolved. Otherwise, replaces `Resource` values with node references.

Result is expanded and re-compacted to get to normalized representation.

Returns:

  • (Hash)

    deresolved attribute hash



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
135
# File 'lib/json/ld/resource.rb', line 109

def deresolve
  node_definition = if resolved?
    deresolved = attributes.keys.inject({}) do |memo, prop|
      value = attributes[prop]
      memo[prop] = case value
      when Resource
        {'id' => value.id}
      when Array
        value.map do |v|
          v.is_a?(Resource) ? {'id' => v.id} : v
        end
      else
        value
      end
      memo
    end
    deresolved
  else
    attributes
  end

  compacted = nil
  JSON::LD::API.expand(node_definition, :expandContext => @context) do |expanded|
    compacted = JSON::LD::API.compact(expanded, @context)
  end
  compacted.delete_if {|k, v| k == '@context'}
end

#dirty?Boolean

Is this resource dirty (i.e., not yet saved to mongo?)

Returns:

  • (Boolean)


26
# File 'lib/json/ld/resource.rb', line 26

def dirty?; !clean?; end

#each(&block) ⇒ Object

Enumerate over statements associated with this resource



149
150
151
# File 'lib/json/ld/resource.rb', line 149

def each(&block)
  JSON::LD::API.toRdf(attributes, expandContext: context, &block)
end

#hashFixnum

Return a hash of this object, suitable for use by for ETag

Returns:

  • (Fixnum)


95
96
97
# File 'lib/json/ld/resource.rb', line 95

def hash
  self.deresolve.hash
end

#inspectObject



220
221
222
223
224
225
226
# File 'lib/json/ld/resource.rb', line 220

def inspect
  "<Resource" +
  attributes.map do |k, v|
    "\n  #{k}: #{v.inspect}"
  end.join(" ") +
  ">"
end

#new?Boolean

Is this a new resource, which has not yet been synched or created within the DB?

Returns:

  • (Boolean)


55
# File 'lib/json/ld/resource.rb', line 55

def new?; !!@new; end

#property(prop_name) ⇒ Object

Access individual fields, from subject definition



212
# File 'lib/json/ld/resource.rb', line 212

def property(prop_name); @attributes.fetch(prop_name, nil); end

#reconciled?Boolean

Has this resource been reconciled against a mongo ID?

Returns:

  • (Boolean)


32
# File 'lib/json/ld/resource.rb', line 32

def reconciled?; @reconciled; end

#resolve(reference_map) ⇒ Resource

Update node references using the provided map. This replaces node references with Resources, either stub or instantiated.

Node references with ids not in the reference_map will cause stub resources to be added to the map.

Parameters:

  • reference_map (Hash{String => Resource})

Returns:



163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# File 'lib/json/ld/resource.rb', line 163

def resolve(reference_map)
  return if resolved?
  def update_obj(obj, reference_map)
    case obj
    when Array
      obj.map {|o| update_obj(o, reference_map)}
    when Hash
      if node_reference?(obj)
        reference_map[obj['id']] ||= Resource.new(obj,
          :context => @context_name,
          :clean => false,
          :stub => true
          )
      else
        obj.keys.each do |k|
          obj[k] = update_obj(obj[k], reference_map)
        end
        obj
      end
    else
      obj
    end
  end

  #$logger.debug "resolve(0): #{attributes.inspect}"
  @attributes.each do |k, v|
    next if %w(id type).include?(k)
    @attributes[k] = update_obj(@attributes[k], reference_map)
  end
  #$logger.debug "resolve(1): #{attributes.inspect}"
  @resolved = true
  self
end

#resolved?Boolean

Has this resource been resolved so that all references are to other Resources?

Returns:

  • (Boolean)


39
# File 'lib/json/ld/resource.rb', line 39

def resolved?; @resolved; end

#saveBoolean

Override this method to implement save using an appropriate storage mechanism.

Save the object to the Mongo collection use Upsert to create things that don’t exist. First makes sure that the resource is valid.

Returns:

  • (Boolean)

    true or false if resource not saved

Raises:

  • (NotImplementedError)


206
207
208
# File 'lib/json/ld/resource.rb', line 206

def save
  raise NotImplementedError
end

#stub?Boolean

Is this a stub resource, which has not yet been synched or created within the DB?

Returns:

  • (Boolean)


50
# File 'lib/json/ld/resource.rb', line 50

def stub?; !!@stub; end

#to_json(options = nil) ⇒ String

Serialize to JSON-LD, minus ‘@context` using a deresolved version of the attributes

Parameters:

  • options (Hash) (defaults to: nil)

Returns:

  • (String)

    serizlied JSON representation of resource



143
144
145
# File 'lib/json/ld/resource.rb', line 143

def to_json(options = nil)
  deresolve.to_json(options)
end

#update_obj(obj, reference_map) ⇒ Object



165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# File 'lib/json/ld/resource.rb', line 165

def update_obj(obj, reference_map)
  case obj
  when Array
    obj.map {|o| update_obj(o, reference_map)}
  when Hash
    if node_reference?(obj)
      reference_map[obj['id']] ||= Resource.new(obj,
        :context => @context_name,
        :clean => false,
        :stub => true
        )
    else
      obj.keys.each do |k|
        obj[k] = update_obj(obj[k], reference_map)
      end
      obj
    end
  else
    obj
  end
end