5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
# File 'backend/app/lib/oai/mappers/oai_mods.rb', line 5
def map_oai_record(record)
jsonmodel = record.jsonmodel_record
result = Nokogiri::XML::Builder.new do |xml|
xml.mods('xmlns' => 'http://www.loc.gov/mods/v3',
'xmlns:xlink' => 'http://www.w3.org/1999/xlink',
'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance',
'xsi:schemaLocation' => 'http://www.loc.gov/mods/v3 https://www.loc.gov/standards/mods/v3/mods-3-6.xsd') do
xml.location {
xml.physicalLocation(jsonmodel['repository']['_resolved']['name'])
}
merged_identifier = if jsonmodel['jsonmodel_type'] == 'archival_object'
([jsonmodel['component_id']] + jsonmodel['ancestors'].map {|a| a['_resolved']['component_id']}).compact.reverse.join(".")
else
(0..3).map {|id| jsonmodel["id_#{id}"]}.compact.join('.')
end
if AppConfig[:arks_enabled] && jsonmodel['ark_name']
ark_url = jsonmodel['ark_name']['current']
xml.identifier(ark_url) if ark_url
end
Array(jsonmodel['linked_agents']).each do |link|
next unless link['_resolved']['publish']
if link['role'] == 'creator'
xml.name { xml.namePart(link['_resolved']['title']) }
end
end
xml.titleinfo {
xml.title(OAIUtils.display_string(jsonmodel))
}
Array(jsonmodel['dates']).each do |date|
next unless date['label'] == 'creation'
if date['begin'] || date['end']
xml.originInfo {
xml.dateCreated({'encoding' => 'iso8601'},
[date['begin'], date['end']].compact.join('/'))
}
elsif date['expression']
xml.originInfo { xml.dateCreated(date['expression']) }
end
end
Array(jsonmodel['extents']).each do |extent|
extent_str = [extent['number'] + ' ' + I18n.t('enumerations.extent_extent_type.' + extent['extent_type'], :default => extent['extent_type']), extent['container_summary']].compact.join('; ')
xml.physicalDescription { xml.extent(extent_str) }
end
Array(jsonmodel['notes'])
.select {|note| ['dimensions'].include?(note['type'])}
.each do |note|
OAIUtils.(note).each do |content|
xml.physicalDescription { xml.extent(content) }
end
end
if (lang_materials = Array(jsonmodel['lang_materials']))
language_vals = lang_materials.map {|l| l['language_and_script']}.compact
if !language_vals.empty?
language_vals.each do |l|
xml.language {
xml.languageTerm({'authority' => 'iso639-2b', 'type' => 'text'}, I18n.t("enumerations.language_iso639_2." + l['language']))
xml.languageTerm({'authority' => 'iso639-2b', 'type' => 'code'}, l['language'])
if l['script']
xml.scriptTerm({'authority' => 'iso15924', 'type' => 'text'}, I18n.t("enumerations.script_iso15924." + l['script']))
xml.scriptTerm({'authority' => 'iso15924', 'type' => 'code'}, l['script'])
end
}
end
end
language_notes = lang_materials.map {|l| l['notes']}.compact.reject {|e| e == [] }.flatten
if !language_notes.empty?
language_notes.each do |note|
OAIUtils.(note).each do |content|
xml.note({'type' => 'language'}, content)
end
end
end
end
Array(jsonmodel['notes'])
.each do |note|
OAIUtils.(note).each do |content|
case note['type']
when 'bioghist'
xml.note({'type' => 'biographical'}, content)
when 'scopecontent', 'abstract'
xml.abstract(content)
when 'odd'
xml.note(content)
when 'arrangement'
xml.note({'type' => 'organization'}, content)
when 'altformavail'
xml.note({'type' => 'additionalform'}, content)
when 'accessrestrict'
xml.accessCondition({'type' => 'restrictionOnAccess'}, content)
when 'userestrict'
xml.accessCondition({'type' => 'useAndReproduction'}, content)
when 'accruals'
xml.note({'type' => 'accrual method'}, content)
when 'acqinfo'
xml.note({'type' => 'acquisition'}, content)
when 'appraisal'
xml.note({'type' => 'action'}, content)
when 'bibliography'
xml.note({'type' => 'citation'}, content)
when 'custodhist'
xml.note({'type' => 'ownership'}, content)
when 'originalsloc'
xml.note({'type' => 'originallocation'}, content)
when 'fileplan'
xml.note({'type' => 'fileplan'}, content)
when 'otherfindaid'
xml.note({'type' => 'otherfindaid'}, content)
when 'phystech'
xml.note({'type' => 'systemdetails'}, content)
when 'prefercite'
xml.note({'type' => 'preferredcitation'}, content)
when 'processinfo'
xml.note({'type' => 'action'}, content)
when 'relatedmaterial'
xml.note({'type' => 'relatedmaterial'}, content)
when 'separatedmaterial'
xml.note({'type' => 'separatedmaterial'}, content)
end
end
end
Array(jsonmodel['subjects']).each do |subject|
term_types = subject['_resolved']['terms'].map {|term| term['term_type']}
if term_types.include?('topical')
xml.subject { xml.topic(subject['_resolved']['title']) }
elsif term_types.include?('geographic')
xml.subject { xml.geographic(subject['_resolved']['title']) }
elsif term_types.include?('genre_form')
xml.subject { xml.genre(subject['_resolved']['title']) }
else
xml.subject(subject['_resolved']['title'])
end
end
Array(jsonmodel['linked_agents']).each do |link|
next unless link['role'] == 'subject'
next unless link['_resolved']['publish']
case link['_resolved']['agent_type']
when 'agent_person', 'agent_family'
xml.subject { xml.name({'type' => 'personal'}, link['_resolved']['title']) }
when 'agent_corporate_entity'
xml.subject { xml.name({'type' => 'corporate'}, link['_resolved']['title']) }
end
end
if jsonmodel['jsonmodel_type'] == 'archival_object'
resource_id_str = (0..3).map {|i| jsonmodel['resource']['_resolved']["id_#{i}"]}.compact.join(".")
resource_str = [jsonmodel['resource']['_resolved']['title'], resource_id_str].join(', ')
xml.relatedItem({'type' => 'host'}, resource_str)
end
end
end
result.to_xml(:save_with => Nokogiri::XML::Node::SaveOptions::NO_DECLARATION)
end
|