7
7
require 'nokogiri'
8
8
9
9
class MarcAOMapper
10
-
11
10
def self . resolves
12
11
[
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'
17
16
]
18
17
end
19
18
@@ -33,14 +32,13 @@ def self.xml_escape(text)
33
32
end
34
33
35
34
def self . collection_to_marc ( ao_jsons )
36
-
37
35
header = '<collection xmlns="http://www.loc.gov/MARC21/slim"
38
36
xmlns:marc="http://www.loc.gov/MARC21/slim"
39
37
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
40
38
xsi:schemaLocation="http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd">'
41
39
footer = '</collection>'
42
40
43
- records = ao_jsons . map { |json | to_marc ( json ) } . join ( "\n " )
41
+ records = ao_jsons . map { |json | to_marc ( json ) } . join ( "\n " )
44
42
45
43
[ header , records , footer ] . join ( "\n " )
46
44
end
@@ -123,8 +121,30 @@ def self.to_marc(json)
123
121
}
124
122
end
125
123
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
+
126
145
# process locations
127
- instances = get_ao [ 'instances' ] . select { |instance | instance [ 'instance_type' ] == "mixed_materials" }
146
+ instances . select { |instance | instance [ 'instance_type' ] == "mixed_materials" }
147
+
128
148
#process containers first
129
149
top_containers = instances . map do |instance |
130
150
if instance [ 'sub_container' ] . nil? == false
@@ -134,11 +154,9 @@ def self.to_marc(json)
134
154
end
135
155
end
136
156
137
- unless top_containers . empty?
138
- unless top_containers . first [ 'container_locations' ] . empty?
157
+ if !top_containers . empty? && !top_containers . first [ 'container_locations' ] . empty?
139
158
top_container_location_code = top_containers . first [ 'container_locations' ] [ 0 ] [ '_resolved' ] [ 'classification' ]
140
159
end
141
- end
142
160
143
161
#process linked subjects
144
162
subjects = get_ao [ 'subjects' ]
@@ -158,7 +176,7 @@ def self.to_marc(json)
158
176
}
159
177
end
160
178
# add controlfields
161
- leader = ' <leader>00000ntmaa22000002u 4500</leader>'
179
+ leader = " <leader>00000n #{ leader_06 [ 0 ] } maa22000002u 4500</leader>"
162
180
tag001 = "<controlfield tag='001'>#{ ref_id } </controlfield>"
163
181
tag003 = "<controlfield tag='003'>PULFA</controlfield>"
164
182
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)
195
213
"<subfield code = 'f'>#{ date1 } </subfield>"
196
214
elsif date2 && date1 != ' '
197
215
"<subfield code = 'f'>#{ date1 } -#{ date2 } </subfield>"
198
- else nil
199
216
end
200
217
tag245 = "<datafield ind1=' ' ind2=' ' tag='245'>
201
218
<subfield code = 'a'>#{ xml_escape ( title ) } </subfield>
@@ -209,7 +226,7 @@ def self.to_marc(json)
209
226
tag300 =
210
227
if extents . count > 1
211
228
repeatable_subfields =
212
- extents [ 1 ..- 1 ] . map do |extent |
229
+ extents [ 1 ..] . map do |extent |
213
230
"<subfield code = 'a'>#{ extent [ 'number' ] } </subfield>
214
231
<subfield code = 'f'>#{ extent [ 'extent_type' ] } )</subfield>"
215
232
end
@@ -271,7 +288,7 @@ def self.to_marc(json)
271
288
# process tag number
272
289
agents_processed . map do |agent |
273
290
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' )
275
292
700
276
293
elsif agent [ 'role' ] == 'subject' && ( agent [ 'type' ] == 'agent_person' || agent [ 'type' ] == 'agent_family' )
277
294
600
@@ -304,12 +321,12 @@ def self.to_marc(json)
304
321
end
305
322
dates = "<subfield code='d'>#{ agent [ 'name_dates' ] } </subfield>" unless agent [ 'name_dates' ] . nil?
306
323
subfield_e =
307
- if
308
- agent [ 'relator' ] . nil?
324
+ if agent [ 'relator' ] . nil?
309
325
nil
310
326
elsif agent [ 'relator' ] . length == 3
311
327
"<subfield code='4'>#{ agent [ 'relator' ] } </subfield>"
312
- else "<subfield code='e'>#{ agent [ 'relator' ] } </subfield>"
328
+ else
329
+ "<subfield code='e'>#{ agent [ 'relator' ] } </subfield>"
313
330
end
314
331
subfield_2 = source_code == 7 ? "<subfield code = '2'>#{ agent [ 'source' ] } </subfield>" : nil
315
332
add_punctuation = agent [ 'name_dates' ] . nil? ? '.' : ','
@@ -345,25 +362,24 @@ def self.to_marc(json)
345
362
case subject [ 'type' ]
346
363
when 'cultural_context'
347
364
647
348
- when 'topical'
365
+ when 'topical' || 'temporal'
349
366
650
350
367
when 'geographic'
351
368
651
352
- when 'temporal'
353
- 650
354
369
when 'genre_form'
355
370
655
356
371
end
357
372
source_code =
358
373
if subject [ 'source' ] == 'lcsh' || subject [ 'source' ] == 'Library of Congress Subject Headings'
359
374
0
360
- else 7
375
+ else
376
+ 7
361
377
end
362
378
main_term = subject [ 'main_term' ]
363
- subterms = subject [ 'terms' ] [ 1 ..- 1 ] . map do |subterm |
379
+ subterms = subject [ 'terms' ] [ 1 ..] . map do |subterm |
364
380
subfield_code =
365
381
case subterm [ 'term_type' ]
366
- when 'temporal' , 'style_period' , 'cultural_context'
382
+ when 'temporal' || 'style_period' || 'cultural_context'
367
383
'y'
368
384
when 'genre_form'
369
385
'v'
@@ -379,7 +395,7 @@ def self.to_marc(json)
379
395
if subject [ 'terms' ] . count == 1 && subject [ 'full_first_term' ] =~ /--/
380
396
tokens = subject [ 'full_first_term' ] . split ( '--' )
381
397
tokens . each ( &:strip! )
382
- tokens [ 1 ..- 1 ] . map do |token |
398
+ tokens [ 1 ..] . map do |token |
383
399
subfield_code = token =~ /^[0-9]{2}/ ? 'y' : 'x'
384
400
"<subfield code = '#{ subfield_code } '>#{ token } </subfield>"
385
401
end
@@ -433,5 +449,4 @@ def self.to_marc(json)
433
449
#{ tag982 ||= '' }
434
450
</record>"
435
451
end
436
-
437
452
end
0 commit comments