Class: RelatonBib::Organization

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

Overview

Organization.

Instance Attribute Summary collapse

Attributes inherited from Contributor

#contact, #uri

Instance Method Summary collapse

Methods inherited from Contributor

#url

Constructor Details

#initialize(**args) ⇒ Organization

Returns a new instance of Organization.

Parameters:

Raises:

  • (ArgumentError)


70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/relaton_bib/organization.rb', line 70

def initialize(**args)
  raise ArgumentError, "missing keyword: name" unless args[:name]

  super(url: args[:url], contact: args.fetch(:contact, []))

  @name = if args[:name].is_a?(Array)
            args[:name].map { |n| hash2locstr(n) }
          else
            [hash2locstr(args[:name])]
          end

  @abbreviation = if args[:abbreviation].is_a?(String)
                    LocalizedString.new(args[:abbreviation])
                  else
                    args[:abbreviation]
                  end

  @subdivision  = if args[:subdivision].is_a?(String)
                    LocalizedString.new(args[:subdivision])
                  else
                    args[:subdivision]
                  end

  @identifier  = args.fetch(:identifier, [])
end

Instance Attribute Details

#abbreviationRelatonBib::LocalizedString, NilClass (readonly)

Returns:



50
51
52
# File 'lib/relaton_bib/organization.rb', line 50

def abbreviation
  @abbreviation
end

#identifierArray<RelatonBib::OrgIdentifier> (readonly)

Returns:



56
57
58
# File 'lib/relaton_bib/organization.rb', line 56

def identifier
  @identifier
end

#nameArray<RelatonBib::LocalizedString> (readonly)

Returns:



47
48
49
# File 'lib/relaton_bib/organization.rb', line 47

def name
  @name
end

#subdivisionRelatonBib::LocalizedString, NilClass (readonly)

Returns:



53
54
55
# File 'lib/relaton_bib/organization.rb', line 53

def subdivision
  @subdivision
end

Instance Method Details

#hash2locstr(name) ⇒ Object



58
59
60
61
62
# File 'lib/relaton_bib/organization.rb', line 58

def hash2locstr(name)
  name.is_a?(Hash) ?
    LocalizedString.new(name[:content], name[:language], name[:script]) : 
    LocalizedString.new(name)
end

#to_hashHash

Returns:

  • (Hash)


111
112
113
114
115
116
117
# File 'lib/relaton_bib/organization.rb', line 111

def to_hash
  hash = { name: name.map(&:to_hash) }
  hash[:abbreviation] = abbreviation.to_hash if abbreviation
  hash[:identifier] = identifier.map(&:to_hash) if identifier&.any?
  hash[:subdivision] = subdivision.to_hash if subdivision
  { organization: hash.merge(super) }
end

#to_xml(builder) ⇒ Object

Parameters:

  • builder (Nokogiri::XML::Builder)


97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/relaton_bib/organization.rb', line 97

def to_xml(builder)
  builder.organization do
    name.each do |n|
      builder.name { |b| n.to_xml b }
    end
    builder.subdivision { |s| subdivision.to_xml s } if subdivision
    builder.abbreviation { |a| abbreviation.to_xml a } if abbreviation
    builder.uri url if uri
    identifier.each { |identifier| identifier.to_xml builder }
    super
  end
end