Skip to content

Commit ffc404c

Browse files
committed
mapping updates from Regine
1 parent 34e2b37 commit ffc404c

File tree

1 file changed

+41
-26
lines changed

1 file changed

+41
-26
lines changed

backend/model/marc_ao_mapper.rb

+41-26
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@
77
require 'nokogiri'
88

99
class MarcAOMapper
10-
1110
def self.resolves
1211
[
13-
'subjects',
14-
'linked_agents',
15-
'top_container',
16-
'top_container::container_locations',
12+
'subjects',
13+
'linked_agents',
14+
'top_container',
15+
'top_container::container_locations'
1716
]
1817
end
1918

@@ -33,14 +32,13 @@ def self.xml_escape(text)
3332
end
3433

3534
def self.collection_to_marc(ao_jsons)
36-
3735
header = '<collection xmlns="http://www.loc.gov/MARC21/slim"
3836
xmlns:marc="http://www.loc.gov/MARC21/slim"
3937
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4038
xsi:schemaLocation="http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd">'
4139
footer = '</collection>'
4240

43-
records = ao_jsons.map{|json| to_marc(json)}.join("\n")
41+
records = ao_jsons.map {|json| to_marc(json)}.join("\n")
4442

4543
[header, records, footer].join("\n")
4644
end
@@ -123,8 +121,30 @@ def self.to_marc(json)
123121
}
124122
end
125123

124+
#get instances
125+
instances = get_ao['instances']
126+
127+
#map instance types
128+
leader_06 = instances.map do |instance|
129+
case instance['instance_type']
130+
when "audio"
131+
"i"
132+
when "books"
133+
"a"
134+
when "computer_disks"
135+
"m"
136+
when "graphic_materials"
137+
"k"
138+
when "microform" || "moving_images"
139+
"g"
140+
else
141+
"t"
142+
end
143+
end
144+
126145
# process locations
127-
instances = get_ao['instances'].select {|instance| instance['instance_type'] == "mixed_materials"}
146+
instances.select {|instance| instance['instance_type'] == "mixed_materials"}
147+
128148
#process containers first
129149
top_containers = instances.map do |instance|
130150
if instance['sub_container'].nil? == false
@@ -134,11 +154,9 @@ def self.to_marc(json)
134154
end
135155
end
136156

137-
unless top_containers.empty?
138-
unless top_containers.first['container_locations'].empty?
157+
if !top_containers.empty? && !top_containers.first['container_locations'].empty?
139158
top_container_location_code = top_containers.first['container_locations'][0]['_resolved']['classification']
140159
end
141-
end
142160

143161
#process linked subjects
144162
subjects = get_ao['subjects']
@@ -158,7 +176,7 @@ def self.to_marc(json)
158176
}
159177
end
160178
# add controlfields
161-
leader = '<leader>00000ntmaa22000002u 4500</leader>'
179+
leader = "<leader>00000n#{leader_06[0]}maa22000002u 4500</leader>"
162180
tag001 = "<controlfield tag='001'>#{ref_id}</controlfield>"
163181
tag003 = "<controlfield tag='003'>PULFA</controlfield>"
164182
tag008 = Nokogiri::XML.fragment("<controlfield tag='008'>000000#{tag008_date_type}#{date1}#{date2}xx | #{tag008_langcode} d</controlfield>")
@@ -195,7 +213,6 @@ def self.to_marc(json)
195213
"<subfield code = 'f'>#{date1}</subfield>"
196214
elsif date2 && date1 != ' '
197215
"<subfield code = 'f'>#{date1}-#{date2}</subfield>"
198-
else nil
199216
end
200217
tag245 = "<datafield ind1=' ' ind2=' ' tag='245'>
201218
<subfield code = 'a'>#{xml_escape(title)}</subfield>
@@ -209,7 +226,7 @@ def self.to_marc(json)
209226
tag300 =
210227
if extents.count > 1
211228
repeatable_subfields =
212-
extents[1..-1].map do |extent|
229+
extents[1..].map do |extent|
213230
"<subfield code = 'a'>#{extent['number']}</subfield>
214231
<subfield code = 'f'>#{extent['extent_type']})</subfield>"
215232
end
@@ -271,7 +288,7 @@ def self.to_marc(json)
271288
# process tag number
272289
agents_processed.map do |agent|
273290
tag =
274-
if agent['role'] == 'creator' && (agent['type'] == 'agent_person' || agent['type'] == 'agent_family')
291+
if (agent['role'] == 'creator' || agent['role'] == 'source') && (agent['type'] == 'agent_person' || agent['type'] == 'agent_family')
275292
700
276293
elsif agent['role'] == 'subject' && (agent['type'] == 'agent_person' || agent['type'] == 'agent_family')
277294
600
@@ -304,12 +321,12 @@ def self.to_marc(json)
304321
end
305322
dates = "<subfield code='d'>#{agent['name_dates']}</subfield>" unless agent['name_dates'].nil?
306323
subfield_e =
307-
if
308-
agent['relator'].nil?
324+
if agent['relator'].nil?
309325
nil
310326
elsif agent['relator'].length == 3
311327
"<subfield code='4'>#{agent['relator']}</subfield>"
312-
else "<subfield code='e'>#{agent['relator']}</subfield>"
328+
else
329+
"<subfield code='e'>#{agent['relator']}</subfield>"
313330
end
314331
subfield_2 = source_code == 7 ? "<subfield code = '2'>#{agent['source']}</subfield>" : nil
315332
add_punctuation = agent['name_dates'].nil? ? '.' : ','
@@ -345,25 +362,24 @@ def self.to_marc(json)
345362
case subject['type']
346363
when 'cultural_context'
347364
647
348-
when 'topical'
365+
when 'topical' || 'temporal'
349366
650
350367
when 'geographic'
351368
651
352-
when 'temporal'
353-
650
354369
when 'genre_form'
355370
655
356371
end
357372
source_code =
358373
if subject['source'] == 'lcsh' || subject['source'] == 'Library of Congress Subject Headings'
359374
0
360-
else 7
375+
else
376+
7
361377
end
362378
main_term = subject['main_term']
363-
subterms = subject['terms'][1..-1].map do |subterm|
379+
subterms = subject['terms'][1..].map do |subterm|
364380
subfield_code =
365381
case subterm['term_type']
366-
when 'temporal', 'style_period', 'cultural_context'
382+
when 'temporal' || 'style_period' || 'cultural_context'
367383
'y'
368384
when 'genre_form'
369385
'v'
@@ -379,7 +395,7 @@ def self.to_marc(json)
379395
if subject['terms'].count == 1 && subject['full_first_term'] =~ /--/
380396
tokens = subject['full_first_term'].split('--')
381397
tokens.each(&:strip!)
382-
tokens[1..-1].map do |token|
398+
tokens[1..].map do |token|
383399
subfield_code = token =~ /^[0-9]{2}/ ? 'y' : 'x'
384400
"<subfield code = '#{subfield_code}'>#{token}</subfield>"
385401
end
@@ -433,5 +449,4 @@ def self.to_marc(json)
433449
#{tag982 ||= ''}
434450
</record>"
435451
end
436-
437452
end

0 commit comments

Comments
 (0)