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)


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

def initialize(reference)
  @reference = reference
end

Instance Attribute Details

#referenceObject (readonly)

Returns the value of attribute reference.



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

def reference
  @reference
end

Instance Method Details

#endpointString

The endpoint URL for a Geoblacklight::Reference

Returns:

  • (String)


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

def endpoint
  @reference[1]
end

#to_hashHash

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

Returns:

  • (Hash)


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

def to_hash
  { type => endpoint }
end

#typeSymbol

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

Returns:

  • (Symbol)


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

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