# frozen_string_literal: true require "uri" module RelatonBib # Address class. class Address # @return [Array] attr_reader :street # @return [String] attr_reader :city # @return [String, NilClass] attr_reader :state # @return [String] attr_reader :country # @return [String, NilClass] attr_reader :postcode # @param street [Array] # @param city [String] # @param state [String] # @param country [String] # @param postcode [String] def initialize(street:, city:, state: nil, country:, postcode: nil) @street = street @city = city @state = state @country = country @postcode = postcode end # @param builder [Nokogiri::XML::Document] def to_xml(doc) doc.address do street.each { |str| doc.street str } doc.city city doc.state state if state doc.country country doc.postcode postcode if postcode end end end # Contact class. class Contact # @return [String] allowed "phone", "email" or "uri" attr_reader :type # @return [String] attr_reader :value # @param phone [String] def initialize(type:, value:) @type = type @value = value end # @param builder [Nokogiri::XML::Document] def to_xml(doc) doc.send type, value end end # Affilation. class Affilation # @return [RelatonBib::LocalizedString] attr_reader :name # @return [Array] attr_reader :description # @return [RelatonBib::Organization] attr_reader :organization # @param organization [RelatonBib::Organization] # @param description [Array] def initialize(organization, description = []) @organization = organization @description = description end # @params builder [Nokogiri::XML::Builder] def to_xml(builder) builder.affiliation do builder.name { name.to_xml builder } if name description.each { |d| builder.description { d.to_xml builder } } organization.to_xml builder end end end # Contributor. class Contributor # @return [URI] attr_reader :uri # @return [Array] attr_reader :contact # @param url [String] # @param contact [Array] def initialize(url: nil, contact: []) @uri = URI url if url @contact = contact end # Returns url. # @return [String] def url @uri.to_s end # @params builder [Nokogiri::XML::Builder] def to_xml(builder) contact.each { |contact| contact.to_xml builder } end end end