Class: Geoblacklight::Reference

Inherits:
Object
  • Object
show all
Defined in:
lib/geoblacklight/reference.rb

Overview

Parses an array of dct_references to create useful reference information

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(reference) ⇒ Reference

Initializes a Reference object using an Array

Parameters:

  • reference (Array)


12
13
14
# File 'lib/geoblacklight/reference.rb', line 12

def initialize(reference)
  @reference = reference
end

Instance Attribute Details

#referenceObject (readonly)

Returns the value of attribute reference.



7
8
9
# File 'lib/geoblacklight/reference.rb', line 7

def reference
  @reference
end

Instance Method Details

#endpointString

The endpoint URL for a Geoblacklight::Reference

Returns:

  • (String)


19
20
21
# File 'lib/geoblacklight/reference.rb', line 19

def endpoint
  @reference[1]
end

#to_hashHash

Creates a hash, using its type as key and endpoint as value

Returns:

  • (Hash)


33
34
35
# File 'lib/geoblacklight/reference.rb', line 33

def to_hash
  {type => endpoint}
end

#typeSymbol

Lookups the type from the Constants::URI using the reference’s URI

Returns:

  • (Symbol)


26
27
28
# File 'lib/geoblacklight/reference.rb', line 26

def type
  Geoblacklight::Constants::URI.key(uri)
end