Class: RelatonBib::DocumentIdentifier

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

Overview

Document identifier.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id:, type: nil) ⇒ DocumentIdentifier

Returns a new instance of DocumentIdentifier.

Parameters:

  • id (String)
  • type (String, NilClass) (defaults to: nil)


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

def initialize(id:, type: nil)
  @id   = id
  @type = type
end

Instance Attribute Details

#idString (readonly)

Returns:

  • (String)


5
6
7
# File 'lib/relaton_bib/document_identifier.rb', line 5

def id
  @id
end

#typeString, NilClass (readonly)

Returns:

  • (String, NilClass)


8
9
10
# File 'lib/relaton_bib/document_identifier.rb', line 8

def type
  @type
end

Instance Method Details

#all_partsObject



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

def all_parts
  @id += " (all parts)"
end

#remove_dateObject



26
27
28
29
30
31
32
# File 'lib/relaton_bib/document_identifier.rb', line 26

def remove_date
  case @type
  when "Chinese Standard" then @id.sub!(/-[12]\d\d\d/, "")
  else
    @id.sub!(/:[12]\d\d\d/, "")
  end
end

#remove_partObject

in docid manipulations, assume ISO as the default: id-part:year



18
19
20
21
22
23
24
# File 'lib/relaton_bib/document_identifier.rb', line 18

def remove_part
  case @type
  when "Chinese Standard" then @id.sub!(/\.\d+/, "")
  else
    @id.sub!(/-\d+/, "")
  end
end

#to_xml(builder) ⇒ Object

Add docidentifier xml element

Parameters:

  • builder (Nokogiri::XML::Builder)


43
44
45
# File 'lib/relaton_bib/document_identifier.rb', line 43

def to_xml(builder)
  builder.docidentifier(id, type: type)
end