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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
|
# File 'backend/app/converters/ead_converter.rb', line 79
def self.configure
with 'ead' do |*|
make :resource, {
:publish => att('audience') != 'internal',
:finding_aid_language => 'und',
:finding_aid_script => 'Zyyy'
}
end
ignore "titlepage"
with 'eadheader' do |*|
set :finding_aid_status, att('findaidstatus')
end
with 'archdesc' do |*|
publish = if !context_obj.publish || (att('audience') == 'internal')
false
else
true
end
set :level, att('level') || 'otherlevel'
set :other_level, att('otherlevel')
set :publish, publish
end
(0..12).to_a.map {|i| "c" + (i+100).to_s[1..-1]}.push('c').each do |c|
with c do |*|
make :archival_object, {
:level => att('level') || 'otherlevel',
:other_level => att('otherlevel'),
:ref_id => att('id'),
:resource => ancestor(:resource),
:parent => ancestor(:archival_object),
:publish => att('audience') != 'internal'
}
end
end
with 'unitid' do |node|
= proc do |s|
if s.start_with?('<extref')
Nokogiri::XML::DocumentFragment.parse(s)
.children[0]
.attribute('xlink:href')
.value
elsif s.start_with?('<ref')
Nokogiri::XML::DocumentFragment.parse(s)
.children[0]
.attribute('href')
.value
else
s
end
end
if 'ark' == node.attribute('type') || 'ark' == node.attribute('localtype')
ancestor(:resource, :archival_object) do |obj|
set obj, :import_current_ark, .call(inner_xml.strip)
end
elsif 'ark-superseded' == node.attribute('type') || 'ark-superseded' == node.attribute('localtype')
ancestor(:resource, :archival_object) do |obj|
set obj, :import_previous_arks, .call(inner_xml.strip)
end
else
ancestor(:note_multipart, :resource, :archival_object) do |obj|
case obj.class.record_type
when 'resource'
set obj, :id_0, inner_xml if obj.id_0.nil? || obj.id_0.empty?
if node.attribute( "type")
make :external_id, {
:source => node.attribute( "type"),
:external_id => inner_xml
} do |ext_id|
set ancestor(:resource ), :external_ids, ext_id
end
end
when 'archival_object'
set obj, :component_id, inner_xml if obj.component_id.nil? || obj.component_id.empty?
if node.attribute( "type" )
make :external_id, {
:source => node.attribute( "type" ),
:external_id => inner_xml
} do |ext_id|
set ancestor(:resource, :archival_object), :external_ids, ext_id
end
end
end
end
end
end
with 'unittitle' do |node|
ancestor(:note_multipart, :resource, :archival_object) do |obj|
unless obj.class.record_type == "note_multipart"
title = Nokogiri::XML::DocumentFragment.parse(inner_xml.strip)
title.xpath(".//unitdate").remove
obj.title = format_content( title.to_xml(:encoding => 'utf-8') ) if obj.title.nil? || obj.title.empty?
end
end
end
with 'unitdate' do |node|
norm_dates = (att('normal') || "").sub(/^\s/, '').sub(/\s$/, '').split('/')
norm_dates.map! {|d| d =~ /^([0-9]{4}(\-(1[0-2]|0[1-9])(\-(0[1-9]|[12][0-9]|3[01]))?)?)$/ ? d : nil}
make :date, {
:date_type => att('type') || ( norm_dates[1] ? 'inclusive' : 'single' ),
:expression => inner_xml,
:label => 'creation',
:begin => norm_dates[0],
:end => norm_dates[1],
:calendar => att('calendar'),
:era => att('era'),
:certainty => att('certainty')
} do |date|
set ancestor(:resource, :archival_object), :dates, date
end
end
with "archdesc/note" do |*|
make :note_multipart, {
:type => 'odd',
:persistent_id => att('id'),
:publish => att('audience') != 'internal',
:subnotes => {
:publish => att('audience') != 'internal',
'jsonmodel_type' => 'note_text',
'content' => format_content( inner_xml )
}
} do |note|
set ancestor(:resource, :archival_object), :notes, note
end
end
with 'langmaterial' do |*|
langmaterial = Nokogiri::XML::DocumentFragment.parse(inner_xml)
ancestor(:resource, :archival_object) do |obj|
if !(languages = langmaterial.xpath('.//language')).empty? && langmaterial.xpath('.//language').any? { |l| l.attr('langcode') }
languages.each do |language|
next unless (langcode = language.attr('langcode'))
script = language.attr('scriptcode')
make :lang_material, {
:jsonmodel_type => 'lang_material',
:language_and_script => {
'jsonmodel_type' => 'language_and_script',
'language' => langcode.to_s,
'script' => script ? script.to_s : nil
}
} do |lang|
set obj, :lang_materials, lang
end
end
elsif obj.class.record_type == 'resource'
make :lang_material, {
:jsonmodel_type => 'lang_material',
:language_and_script => {
'jsonmodel_type' => 'language_and_script',
'language' => 'und'
}
} do |lang|
set obj, :lang_materials, lang
end
end
langmaterial.search('.//language').each do |node|
node.replace Nokogiri::XML::Text.new(node.inner_html, node.document)
end
content = langmaterial.to_s
unless content.nil? || content.strip.empty?
make :lang_material, {
:jsonmodel_type => 'lang_material',
:notes => {
'jsonmodel_type' => 'note_langmaterial',
'type' => 'langmaterial',
'persistent_id' => att('id'),
'publish' => att('audience') != 'internal',
'content' => [format_content( content.sub(/<head>.*?<\/head>/, '') )]
}
} do |note|
set obj, :lang_materials, note
end
end
end
end
with "archdesc/did" do |e|
if context_obj['jsonmodel_type'] == 'resource' && inner_xml.include?('<langmaterial') == false
make :lang_material, {
:jsonmodel_type => 'lang_material',
:language_and_script => {
'jsonmodel_type' => 'language_and_script',
'language' => 'und'
}
} do |lang|
set ancestor(:resource), :lang_materials, lang
break
end
end
end
def make_single_note(note_name, tag, tag_name="")
content = tag.inner_text
if !tag_name.empty?
content = tag_name + ": " + content
end
make :note_singlepart, {
:type => note_name,
:persistent_id => att('id'),
:label => att('label'),
:publish => att('audience') != 'internal',
:content => format_content( content.sub(/<head>.?<\/head>/, '').strip)
} do |note|
set ancestor(:resource, :archival_object), :notes, note
end
end
def make_nested_note(note_name, tag)
content = tag.inner_text
make :note_multipart, {
:type => note_name,
:persistent_id => att('id'),
:label => att('label'),
:publish => att('audience') != 'internal',
:subnotes => {
:publish => att('audience') != 'internal',
'jsonmodel_type' => 'note_text',
'content' => format_content( content )
}
} do |note|
set ancestor(:resource, :archival_object), :notes, note
end
end
with 'physdesc' do |*|
physdesc = Nokogiri::XML::DocumentFragment.parse(inner_xml)
extent_number_and_type = nil
dimensions = []
physfacets = []
container_summaries = []
other_extent_data = []
container_summary_texts = []
dimensions_texts = []
physfacet_texts = []
if att('altrender') && att('altrender').downcase == 'part'
portion = 'part'
else
portion = 'whole'
end
if physdesc.children.length == 1 && physdesc.children[0].name == 'text'
container_summaries << physdesc
else
physdesc.children.each do |child|
if child.name == 'extent'
child_content = child.content.strip
if extent_number_and_type.nil? && child_content =~ /^([0-9\.]+)+\s+(.*)$/
extent_number_and_type = {:number => $1, :extent_type => $2}
else
container_summaries << child
container_summary_texts << child.content.strip
end
elsif child.name == 'physfacet'
physfacets << child
physfacet_texts << child.content.strip
elsif child.name == 'dimensions'
dimensions << child
dimensions_texts << child.content.strip
elsif child.name != 'text'
other_extent_data << child
end
end
end
if extent_number_and_type
make :extent, {
:number => $1,
:extent_type => $2,
:portion => portion,
:container_summary => container_summary_texts.join('; '),
:physical_details => physfacet_texts.join('; '),
:dimensions => dimensions_texts.join('; ')
} do |extent|
set ancestor(:resource, :archival_object), :extents, extent
end
else
container_summaries.each do |summary|
make_single_note("physdesc", summary)
end
physfacets.each do |physfacet|
make_single_note("physfacet", physfacet)
end
dimensions.each do |dimension|
make_nested_note("dimensions", dimension)
end
end
other_extent_data.each do |unknown_tag|
make_single_note("physdesc", unknown_tag, unknown_tag.name)
end
end
with 'bibliography' do |*|
make :note_bibliography
set :persistent_id, att('id')
set :publish, att('audience') != 'internal'
set ancestor(:resource, :archival_object), :notes, proxy
end
with 'index' do |*|
make :note_index
set :persistent_id, att('id')
set :publish, att('audience') != 'internal'
set ancestor(:resource, :archival_object), :notes, proxy
end
%w(bibliography index).each do |x|
with "#{x}/head" do |node|
set :label, format_content( inner_xml )
end
with "#{x}/p" do |*|
set :content, format_content( inner_xml )
end
end
with 'bibliography/bibref' do |*|
set :items, inner_xml
end
field_mapping = {
'name' => 'name',
'persname' => 'person',
'famname' => 'family',
'corpname' => 'corporate_entity',
'subject' => 'subject',
'function' => 'function',
'occupation' => 'occupation',
'genreform' => 'genre_form',
'title' => 'title',
'geogname' => 'geographic_name',
}
with 'indexentry' do |*|
entry_type = ''
entry_value = ''
entry_reference = ''
entry_ref_target = ''
indexentry = Nokogiri::XML::DocumentFragment.parse(inner_xml)
indexentry.children.each do |child|
if field_mapping.key? child.name
entry_value << child.content
entry_type << field_mapping[child.name]
elsif child.name == 'ref' && child.xpath('./ptr').count == 0
entry_reference << child.content
entry_ref_target << (child['target'] || '')
elsif child.name == 'ref'
entry_reference = format_content( child.inner_html )
end
end
make :note_index_item, {
:type => entry_type,
:value => entry_value,
:reference_text => entry_reference,
:reference => entry_ref_target
} do |item|
set ancestor(:note_index), :items, item
end
end
%w(accessrestrict accessrestrict/legalstatus
accruals acqinfo altformavail appraisal arrangement
bioghist custodhist
fileplan odd otherfindaid originalsloc phystech
prefercite processinfo relatedmaterial scopecontent
separatedmaterial userestrict ).each do |note|
with note do |node|
content = inner_xml.tap {|xml|
xml.sub!(/<head>.*?<\/head>/m, '')
}
make :note_multipart, {
:type => node.name,
:persistent_id => att('id'),
:publish => att('audience') != 'internal',
:subnotes => {
:publish => att('audience') != 'internal',
'jsonmodel_type' => 'note_text',
'content' => format_content( content )
}
} do |note|
set ancestor(:resource, :archival_object), :notes, note
end
end
end
%w(abstract materialspec physloc).each do |note|
with note do |node|
content = inner_xml
make :note_singlepart, {
:type => note,
:persistent_id => att('id'),
:publish => att('audience') != 'internal',
:content => format_content( content.sub(/<head>.*?<\/head>/, '') )
} do |note|
set ancestor(:resource, :archival_object), :notes, note
end
end
end
with 'notestmt/note' do |*|
append :finding_aid_note, format_content( inner_xml )
end
with 'chronlist' do |*|
if ancestor(:note_multipart)
left_overs = insert_into_subnotes('chronlist')
else
left_overs = nil
make :note_multipart, {
:type => node.name,
:persistent_id => att('id'),
:publish => att('audience') != 'internal'
} do |note|
set ancestor(:resource, :archival_object), :notes, note
end
end
make :note_chronology, {
:publish => att('audience') != 'internal'
} do |note|
set ancestor(:note_multipart), :subnotes, note
end
if ( !left_overs.nil? && left_overs["content"] && left_overs["content"].length > 0 )
set ancestor(:note_multipart), :subnotes, left_overs
end
end
with 'chronitem' do |*|
context_obj.items << {}
end
%w(eventgrp/event chronitem/event).each do |path|
with path do |*|
context_obj.items.last['events'] ||= []
context_obj.items.last['events'] << format_content( inner_xml )
end
end
with 'list' do |*|
if ancestor(:note_multipart)
left_overs = insert_into_subnotes
else
left_overs = nil
make :note_multipart, {
:type => 'odd',
:persistent_id => att('id'),
:publish => att('audience') != 'internal'
} do |note|
set ancestor(:resource, :archival_object), :notes, note
end
end
type = att('type')
if type == 'deflist' || (type.nil? && inner_xml.match(/<deflist>/))
make :note_definedlist, {
:publish => att('audience') != 'internal'
} do |note|
set ancestor(:note_multipart), :subnotes, note
end
else
make :note_orderedlist, {
:enumeration => att('numeration'),
:publish => att('audience') != 'internal'
} do |note|
set ancestor(:note_multipart), :subnotes, note
end
end
if ( !left_overs.nil? && left_overs["content"] && left_overs["content"].length > 0 )
set ancestor(:note_multipart), :subnotes, left_overs
end
end
with 'list/head' do |node|
set :title, format_content( inner_xml )
end
with 'defitem' do |node|
context_obj.items << {}
end
with 'defitem/label' do |node|
context_obj.items.last['label'] = format_content( inner_xml ) if context == :note_definedlist
end
with 'defitem/item' do |node|
context_obj.items.last['value'] = format_content( inner_xml ) if context == :note_definedlist
end
with 'list/item' do |*|
set :items, inner_xml if context == :note_orderedlist
end
with 'publicationstmt/date' do |*|
set :finding_aid_date, inner_xml if context == :resource
end
with 'date' do |*|
if context == :note_chronology
date = inner_xml
context_obj.items.last['event_date'] = date
end
end
with 'head' do |*|
if context == :note_multipart
set :label, format_content( inner_xml )
elsif context == :note_chronology
set :title, format_content( inner_xml )
end
end
def remember_instance(instance, id = nil)
@instances ||= {}
@instances[id] = instance if id
@last_instance = instance
end
def recall_instance(id = nil)
id ? @instances[id] : @last_instance
end
def add_to_instance(type, indicator, id, parent_id = nil)
if (instance = recall_instance(parent_id))
sub_container = instance.sub_container
if sub_container['type_3']
else
level = sub_container["type_2"].nil? ? "2" : "3"
sub_container["type_#{level}"] = type
sub_container["indicator_#{level}"] = indicator
remember_instance(instance, id)
end
else
end
end
def get_or_make_top_container_uri(type, indicator, barcode, container_profile_name)
@top_container_uris ||= {}
if barcode
if @top_container_uris[barcode]
return @top_container_uris[barcode]
elsif (TopContainer.for_barcode(barcode) && TopContainer.for_barcode(barcode).uri)
return TopContainer.for_barcode(barcode).uri
end
elsif @top_container_uris["#{type}:#{indicator}"]
return @top_container_uris["#{type}:#{indicator}"]
end
container_profile = ContainerProfile.filter(:name => container_profile_name).first
make :top_container, {
:barcode => barcode,
:indicator => indicator,
:type => type
} do |top_container|
if container_profile
set top_container, :container_profile, {:ref => container_profile.uri}
end
end
if barcode
@top_container_uris[barcode] = context_obj.uri
else
@top_container_uris["#{type}:#{indicator}"] = context_obj.uri
end
context_obj.uri
end
with 'container' do |*|
if context == :instance
add_to_instance(att('type'), format_content(inner_xml), att('id'))
return
end
if att('parent')
add_to_instance(att('type'), format_content(inner_xml), att('id'), att('parent'))
return
end
if !att('id') && defined?(context_obj.instances) && (instance = context_obj.instances.last)
add_to_instance(att('type'), format_content(inner_xml), att('id'))
return
end
instance_type = att('label') || 'mixed_materials'
if instance_type =~ /(.*)\s+?[\(\[]\s*(.*?)\s*[\)\]]$/
instance_type = $1
barcode = $2
end
make :instance, {
:instance_type => instance_type.downcase.strip
} do |instance|
set ancestor(:resource, :archival_object), :instances, instance
end
instance = context_obj
top_container_uri = get_or_make_top_container_uri(att('type'),
format_content(inner_xml),
barcode,
att("altrender"))
make :sub_container, {
:top_container => {'ref' => top_container_uri}
} do |sub_container|
set instance, :sub_container, sub_container
end
remember_instance(instance, att('id'))
end
with 'author' do |*|
set :finding_aid_author, inner_xml
end
with 'descrules' do |*|
set :finding_aid_description_rules, format_content( inner_xml )
end
with 'eadid' do |*|
set :ead_id, inner_xml
set :ead_location, att('url')
end
with 'editionstmt' do |*|
set :finding_aid_edition_statement, format_content( inner_xml )
end
with 'seriesstmt' do |*|
set :finding_aid_series_statement, format_content( inner_xml )
end
with 'sponsor' do |*|
set :finding_aid_sponsor, format_content( inner_xml )
end
with 'titleproper' do |*|
type = att('type')
case type
when 'filing'
set :finding_aid_filing_title, format_content( inner_xml )
else
set :finding_aid_title, format_content( inner_xml )
end
end
with 'subtitle' do |*|
set :finding_aid_subtitle, format_content( inner_xml )
end
with 'profiledesc' do |*|
profiledesc = Nokogiri::XML::DocumentFragment.parse(inner_xml)
if !(langusage = profiledesc.xpath(".//langusage")).empty?
if (language = langusage.xpath('.//language')).size != 0 && (langcode = langusage.xpath('.//language').attr('langcode'))
set :finding_aid_language, langcode.to_s
if (script = language.attr('scriptcode'))
set :finding_aid_script, script.to_s
end
end
set :finding_aid_language_note, format_content( langusage.inner_text )
else
set :finding_aid_language, 'und'
end
end
with 'revisiondesc/change' do |*|
make :revision_statement
set ancestor(:resource), :revision_statements, proxy
set :publish, !(att('audience') === 'internal')
end
with 'revisiondesc/change/item' do |*|
set :description, format_content( inner_xml )
end
with 'revisiondesc/change/date' do |*|
set :date, format_content( inner_xml )
end
with 'origination/corpname' do |*|
make_corp_template(:role => 'creator')
end
with 'controlaccess/corpname' do |*|
make_corp_template(:role => 'subject')
end
with 'origination/famname' do |*|
make_family_template(:role => 'creator')
end
with 'controlaccess/famname' do |*|
make_family_template(:role => 'subject')
end
with 'origination/persname' do |*|
make_person_template(:role => 'creator')
end
with 'controlaccess/persname' do |*|
make_person_template(:role => 'subject')
end
{
'function' => 'function',
'genreform' => 'genre_form',
'geogname' => 'geographic',
'occupation' => 'occupation',
'subject' => 'topical',
'title' => 'uniform_title'
}.each do |tag, type|
with "controlaccess/#{tag}" do |*|
make :subject, {
:terms => {'term' => inner_xml, 'term_type' => type, 'vocabulary' => '/vocabularies/1'},
:vocabulary => '/vocabularies/1',
:source => att('source') || 'ingest'
} do |subject|
set ancestor(:resource, :archival_object), :subjects, {'ref' => subject.uri}
end
end
end
with 'dao' do |*|
make :instance, {
:instance_type => 'digital_object'
} do |instance|
set ancestor(:resource, :archival_object), :instances, instance
end
make :digital_object, {
:digital_object_id => SecureRandom.uuid,
:publish => att('audience') != 'internal',
:title => att('title')
} do |obj|
obj.file_versions << {
:use_statement => att('role'),
:file_uri => att('href'),
:xlink_actuate_attribute => att('actuate'),
:xlink_show_attribute => att('show'),
:publish => att('audience') != 'internal',
}
set ancestor(:instance), :digital_object, obj
end
end
with 'daodesc' do |*|
make :note_digital_object, {
:type => 'note',
:persistent_id => att('id'),
:publish => att('audience') != 'internal',
:content => inner_xml.strip
} do |note|
set ancestor(:digital_object), :notes, note
end
end
with 'daogrp' do |*|
title = att('title')
unless title
title = ''
ancestor(:resource, :archival_object ) { |ao|
display_string = ArchivalObject.produce_display_string(ao)
display_string = Nokogiri::XML::DocumentFragment.parse(display_string).inner_text
title << display_string + ' Digital Object'
}
end
make :digital_object, {
:digital_object_id => SecureRandom.uuid,
:title => title,
:publish => att('audience') != 'internal'
} do |obj|
ancestor(:resource, :archival_object) do |ao|
ao.instances.push({'instance_type' => 'digital_object', 'digital_object' => {'ref' => obj.uri}})
end
dg_contents = Nokogiri::XML::DocumentFragment.parse(inner_xml)
arc_by_to_val = dg_contents.xpath('arc').map {|arc|
if arc['xlink:to']
[arc['xlink:to'], arc]
else
nil
end
}.reject(&:nil?).reduce({}) {|hsh, (k, v)| hsh[k] = v; hsh}
dg_contents.xpath('daoloc').each do |daoloc|
arc = arc_by_to_val[daoloc['xlink:label']] || {}
fv_attrs = {}
fv_attrs[:xlink_show_attribute] = arc['xlink:show'] if arc['xlink:show']
fv_attrs[:xlink_actuate_attribute] = arc['xlink:actuate'] if arc['xlink:actuate']
fv_attrs[:file_uri] = daoloc['xlink:href'] if daoloc['xlink:href']
fv_attrs[:use_statement] = daoloc['xlink:role'] if daoloc['xlink:role']
fv_attrs[:publish] = daoloc['audience'] != 'internal'
obj.file_versions << fv_attrs
end
obj
end
end
end
|