Class: Valkyrie::Persistence::Fedora::Persister::OrmConverter::GraphToAttributes::ValkyrieIDValue

Inherits:
ValueMapper
  • Object
show all
Defined in:
lib/valkyrie/persistence/fedora/persister/orm_converter.rb

Overview

Casts the value of the RDF literal into an Applicator for Valkyrie ID objects

Returns:

Instance Attribute Summary

Attributes inherited from ValueMapper

#calling_mapper, #value

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ValueMapper

for, #initialize, register

Constructor Details

This class inherits a constructor from Valkyrie::ValueMapper

Class Method Details

.handles?(value) ⇒ Boolean

Determines whether or not a Property statement is an RDF literal typed for Valkyrie ID literals

Parameters:

Returns:

  • (Boolean)


416
417
418
# File 'lib/valkyrie/persistence/fedora/persister/orm_converter.rb', line 416

def self.handles?(value)
  value.statement.object.is_a?(RDF::Literal) && value.statement.object.datatype == PermissiveSchema.valkyrie_id
end

Instance Method Details

#resultApplicator

Casts the value of the RDF literal into an Applicator for Valkyrie::ID objects

Returns:



422
423
424
425
# File 'lib/valkyrie/persistence/fedora/persister/orm_converter.rb', line 422

def result
  value.statement.object = Valkyrie::ID.new(value.statement.object.to_s)
  calling_mapper.for(Property.new(statement: value.statement, scope: value.scope, adapter: value.adapter)).result
end