Class: RelatonBib::OrgIdentifier

Inherits:
Object
  • Object
show all
Defined in:
lib/relaton_bib/organization.rb

Overview

Organization identifier.

Constant Summary collapse

ORCID =
"orcid"
URI =
"uri"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type, value) ⇒ OrgIdentifier

Returns a new instance of OrgIdentifier.

Parameters:

  • type (String)

    “orcid” or “uri”

  • value (String)


19
20
21
22
23
24
25
26
# File 'lib/relaton_bib/organization.rb', line 19

def initialize(type, value)
  unless [ORCID, URI].include? type
    raise ArgumentError, 'Invalid type. It should be "orsid" or "uri".'
  end

  @type  = type
  @value = value
end

Instance Attribute Details

#typeString (readonly)

Returns:

  • (String)


12
13
14
# File 'lib/relaton_bib/organization.rb', line 12

def type
  @type
end

#valueString (readonly)

Returns:

  • (String)


15
16
17
# File 'lib/relaton_bib/organization.rb', line 15

def value
  @value
end

Instance Method Details

#to_asciibib(prefix = "", count = 1) ⇒ String

Parameters:

  • prefix (String) (defaults to: "")
  • count (Integer) (defaults to: 1)

Returns:

  • (String)


41
42
43
44
45
46
47
# File 'lib/relaton_bib/organization.rb', line 41

def to_asciibib(prefix = "", count = 1)
  pref = prefix.empty? ? prefix : prefix + "."
  out = count > 1 ? "#{pref}identifier::\m" : ""
  out += "#{pref}identifier.type:: #{type}\n"
  out += "#{pref}identifier.value:: #{value}\n"
  out
end

#to_hashHash

Returns:

  • (Hash)


34
35
36
# File 'lib/relaton_bib/organization.rb', line 34

def to_hash
  { "type" => type, "id" => value }
end

#to_xml(builder) ⇒ Object

Parameters:

  • builder (Nokogiri::XML::Builder)


29
30
31
# File 'lib/relaton_bib/organization.rb', line 29

def to_xml(builder)
  builder.identifier(value, type: type)
end