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:

  • name (String, Hash, Array<String, Hash>)
  • abbreviation (RelatoBib::LocalizedStrig, String)
  • subdivision (RelatoBib::LocalizedStrig, String)
  • url (String)
  • identifier (Array<RelatonBib::OrgIdentifier>)
  • contact (Array<RelatonBib::Address, RelatonBib::Phone>)

Raises:

  • (ArgumentError)


65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/relaton_bib/organization.rb', line 65

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 (readonly)



45
46
47
# File 'lib/relaton_bib/organization.rb', line 45

def abbreviation
  @abbreviation
end

#identifierArray<RelatonBib::OrgIdentifier> (readonly)

Returns:



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

def identifier
  @identifier
end

#nameArray<RelatonBib::LocalizedString> (readonly)

Returns:



42
43
44
# File 'lib/relaton_bib/organization.rb', line 42

def name
  @name
end

#subdivisionRelatonBib::LocalizedString (readonly)



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

def subdivision
  @subdivision
end

Instance Method Details

#hash2locstr(name) ⇒ Object



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

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

#to_xml(builder) ⇒ Object

Parameters:

  • builder (Nokogiri::XML::Builder)


92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/relaton_bib/organization.rb', line 92

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