-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyesc.py
1695 lines (1324 loc) · 59.8 KB
/
yesc.py
1
2
3
4
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
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
#!/usr/bin/env python3
"""
Create .protocol file for Presrevica ingest
"""
# python3 yesc.py -input ./sips/test_file/ -o ./sips/
__author__ = "David Cirella"
__version__ = "1.0.1-alpha"
__license__ = ""
import os
import sys
import shutil
import argparse
import hashlib
import uuid
import datetime
import xml.etree.ElementTree as et
from xml.dom import minidom
from lxml import etree
from pathlib import Path
localAIPstr = ''
sips_out_path = ''
sip_report = {}
package_parts = ''
## user set defaults
default_security_tag = 'open'
def create_protocol(content_path):
global localAIPstr
# get stats for input directory contents
file_count, data_size = data_stats(content_path)
# create elements for .protocol file type
protocol_root = et.Element('protocol')
protocol_root.attrib = {'xmlns':"http://www.tessella.com/xipcreateprotocol/v1"}
date_create = et.Element('dateCreated')
time_stamp = str(datetime.datetime.now().isoformat(timespec='microseconds'))
date_create.text = time_stamp
protocol_root.append(date_create)
#size
size = et.Element('size')
size.text = str(data_size)
protocol_root.append(size)
#files
files = et.Element('files')
files.text = str(file_count)
protocol_root.append(files)
#submissionName
submissionName = et.Element('submissionName')
submissionName.text = str(Path(content_path).parts[-1])
protocol_root.append(submissionName)
#catalogueName
catalogueName = et.Element('catalogueName')
catalogueName.text = str(Path(content_path).parts[-1])
protocol_root.append(catalogueName)
#localAIP
localAIP = et.Element('localAIP')
localAIPstr = str(uuid.uuid4())
localAIP.text = localAIPstr
protocol_root.append(localAIP)
#globalAIP
globalAIP = et.Element('globalAIP')
globalAIP.text = str(uuid.uuid4())
protocol_root.append(globalAIP)
#createdBy
createdBy = et.Element('createdBy')
createdBy.text = 'yesc '+ __version__
protocol_root.append(createdBy)
# create UUID.protocol named file for SIP
write_out(protocol_root, sips_out_path + localAIPstr + '.protocol')
# send protocol UUID, data stats for reporting function
reporting_std_out(localAIPstr, file_count, data_size)
return localAIPstr
def create_xip(args):
###
def create_xip_recurse(content_path, parent_set):
# create sub-SO or parent_set
sobj = et.Element('StructuralObject')
xip_root.append(sobj)
# ref
sobj_ref = et.Element('Ref')
sobj_uuid = str(uuid.uuid4())
sobj_ref.text = sobj_uuid
sobj.append(sobj_ref)
# title
sobj_title = et.Element('Title')
sobj_title.text = args.sotitle or str(Path(content_path).parts[-1])
sobj.append(sobj_title)
# description
sobj_desc = et.Element('Description')
sobj_desc.text = args.sodescription
sobj.append(sobj_desc)
# security
sobj_sec = et.Element('SecurityTag')
sobj_sec.text = args.securitytag
sobj.append(sobj_sec)
# Parent
sobj_par = et.Element('Parent')
sobj_par.text = parent_set
sobj.append(sobj_par)
print(sobj_par.text, ' sobj_par.text')
iobj_parent_set = sobj_uuid
## create IOs for all files in dir of SO above
for file_to_pack in Path(content_path).iterdir():
if Path(file_to_pack).is_file() and include_files(Path(file_to_pack).name, args.excludedFileNames):
# <InformationObject>
iobj = et.Element('InformationObject')
xip_root.append(iobj)
# ref
iobj_ref = et.Element('Ref')
iobj_uuid = str(uuid.uuid4())
iobj_ref.text = iobj_uuid
iobj.append(iobj_ref)
# title
iobj_title = et.Element('Title')
iobj_title.text = Path(file_to_pack).name
iobj.append(iobj_title)
# description
iobj_desc = et.Element('Description')
iobj_desc.text = args.iodescription
iobj.append(iobj_desc)
# security
iobj_sec = et.Element('SecurityTag')
iobj_sec.text = args.securitytag
iobj.append(iobj_sec)
# Parent
iobj_par = et.Element('Parent')
iobj_par.text = iobj_parent_set
iobj.append(iobj_par)
##
# Representation
representation = et.Element('Representation')
xip_root.append(representation)
# io
rep_iobj = et.Element('InformationObject')
rep_iobj.text = iobj_uuid
representation.append(rep_iobj)
#name
rep_name = et.Element('Name')
rep_name.text = 'Preservation-1'
representation.append(rep_name)
#type
rep_type = et.Element('Type')
rep_type.text = 'Preservation'
representation.append(rep_type)
#cos
rep_cobjs = et.Element('ContentObjects')
representation.append(rep_cobjs)
#co
rep_cobj = et.Element('ContentObject')
cobj_uuid = str(uuid.uuid4())
rep_cobj.text = cobj_uuid
rep_cobjs.append(rep_cobj)
##
# Content Object
cobj = et.Element('ContentObject')
xip_root.append(cobj)
#ref
cobj_ref = et.Element('Ref')
cobj_ref.text = cobj_uuid
cobj.append(cobj_ref)
#title
cobj_title = et.Element('Title')
cobj_title.text = Path(file_to_pack).name
cobj.append(cobj_title)
#security
cobj_sec = et.Element('SecurityTag')
cobj_sec.text = args.securitytag
cobj.append(cobj_sec)
#parent
cobj_par = et.Element('Parent')
cobj_par.text = iobj_uuid
cobj.append(cobj_par)
##
# Generation
gen = et.Element('Generation')
gen.attrib = {'original' : "true", 'active' : "true"}
xip_root.append(gen)
#co
gen_cobj = et.Element('ContentObject')
gen_cobj.text = cobj_uuid
gen.append(gen_cobj)
#effectivedate
gen_effect_d = et.Element('EffectiveDate')
gen_effect_d.text = str(datetime.datetime.now().isoformat(timespec='microseconds'))
gen.append(gen_effect_d)
# bitstreams
gen_bss = et.Element('Bitstreams')
gen.append(gen_bss)
#bitstream
gen_bs = et.Element('Bitstream')
gen_bs.text = Path(file_to_pack).parts[-2] + '/' + Path(file_to_pack).parts[-1]
gen_bss.append(gen_bs)
##
# Bitstream
bit_stream = et.Element('Bitstream')
xip_root.append(bit_stream)
#filename
bs_file = et.Element('Filename')
bs_file.text = Path(file_to_pack).name
bit_stream.append(bs_file)
#filesize
bs_size = et.Element('FileSize')
bs_size_get = str(Path(file_to_pack).stat().st_size)
bs_size.text = bs_size_get
bit_stream.append(bs_size)
#physicallocation
bs_pl = et.Element('PhysicalLocation')
bs_pl.text = Path(file_to_pack).parts[-2]
bit_stream.append(bs_pl)
#fixities
bs_fixities = et.Element('Fixities')
bit_stream.append(bs_fixities)
#fixity
bs_fixity = et.Element('Fixity')
bs_fixities.append(bs_fixity)
# fixity
hash_out, hash_algo = get_checksum(file_to_pack, args)
##fixitiy ALgo
bs_fixity_algo = et.Element('FixityAlgorithmRef')
bs_fixity_algo.text = hash_algo
bs_fixity.append(bs_fixity_algo)
##fixixty val
bs_fixity_val = et.Element('FixityValue')
bs_checksum = hash_out
bs_fixity_val.text = bs_checksum
bs_fixity.append(bs_fixity_val)
## check for embedding metadata at IO level
if args.iometadata:
meta_entity = iobj_uuid
md_embed_iobj = embed_metadata(args.iometadata, meta_entity)
xip_root.append(md_embed_iobj)
### storage
## check for embedding metadata at IO level
if args.storage:
md_str_entity = iobj_uuid
md_str_embed_iobj = embed_metadata(args.storage, md_str_entity)
xip_root.append(md_str_embed_iobj)
elif args.storageconfig:
# get package reps entry match with SO name
print("+++++++++++++++++++++++++++++++++++++++")
print(Path(file_to_pack).parent.name)
print(str(Path(file_to_pack.parent)))
for k,v in package_parts.items():
print(k)
if str(Path(file_to_pack.parent)) == k:
md_strcnf_embed_iobj = v
md_str_entity = iobj_uuid
md_str_embed_iobj = embed_metadata(md_strcnf_embed_iobj, md_str_entity)
print(md_strcnf_embed_iobj, md_str_entity)
xip_root.append(md_str_embed_iobj)
else:
pass
#print(k,v)
# check of creting identifier at so level
if args.ioidtype:
id_entity = iobj_uuid
id_iobj = gen_id(args, id_entity, 'io')
xip_root.append(id_iobj)
elif Path(file_to_pack).is_dir():
# when sub-dir found, recursive call to create sub-SO
create_xip_recurse(file_to_pack, iobj_parent_set)
def file_dir_pack_std():
# create IOs for each file following root/parent SO creation
for file_to_pack in Path(content_path).iterdir():
if Path(file_to_pack).is_file() and include_files(Path(file_to_pack).name, args.excludedFileNames):
# call function for IO packing
# elif dir call SO func and then IO func
# <InformationObject>
iobj = et.Element('InformationObject')
xip_root.append(iobj)
# ref
iobj_ref = et.Element('Ref')
iobj_uuid = str(uuid.uuid4())
iobj_ref.text = iobj_uuid
iobj.append(iobj_ref)
# title
iobj_title = et.Element('Title')
iobj_title.text = Path(file_to_pack).name
iobj.append(iobj_title)
# description
iobj_desc = et.Element('Description')
iobj_desc.text = args.iodescription
iobj.append(iobj_desc)
# security
iobj_sec = et.Element('SecurityTag')
iobj_sec.text = args.securitytag
iobj.append(iobj_sec)
# Parent
iobj_par = et.Element('Parent')
iobj_par.text = iobj_parent_set
iobj.append(iobj_par)
##
# Representation
representation = et.Element('Representation')
xip_root.append(representation)
# io
rep_iobj = et.Element('InformationObject')
rep_iobj.text = iobj_uuid
representation.append(rep_iobj)
#name
rep_name = et.Element('Name')
rep_name.text = 'Preservation-1'
representation.append(rep_name)
#type
rep_type = et.Element('Type')
rep_type.text = 'Preservation'
representation.append(rep_type)
#cos
rep_cobjs = et.Element('ContentObjects')
representation.append(rep_cobjs)
#co
rep_cobj = et.Element('ContentObject')
cobj_uuid = str(uuid.uuid4())
rep_cobj.text = cobj_uuid
rep_cobjs.append(rep_cobj)
##
# Content Object
cobj = et.Element('ContentObject')
xip_root.append(cobj)
#ref
cobj_ref = et.Element('Ref')
cobj_ref.text = cobj_uuid
cobj.append(cobj_ref)
#title
cobj_title = et.Element('Title')
cobj_title.text = Path(file_to_pack).name
cobj.append(cobj_title)
#security
cobj_sec = et.Element('SecurityTag')
cobj_sec.text = args.securitytag
cobj.append(cobj_sec)
#parent
cobj_par = et.Element('Parent')
cobj_par.text = iobj_uuid
cobj.append(cobj_par)
##
# Generation
gen = et.Element('Generation')
gen.attrib = {'original' : "true", 'active' : "true"}
xip_root.append(gen)
#co
gen_cobj = et.Element('ContentObject')
gen_cobj.text = cobj_uuid
gen.append(gen_cobj)
#effectivedate
gen_effect_d = et.Element('EffectiveDate')
gen_effect_d.text = str(datetime.datetime.now().isoformat(timespec='microseconds'))
gen.append(gen_effect_d)
# bitstreams
gen_bss = et.Element('Bitstreams')
gen.append(gen_bss)
#bitstream
gen_bs = et.Element('Bitstream')
gen_bs.text = Path(file_to_pack).parts[-2] + '/' + Path(file_to_pack).parts[-1]
gen_bss.append(gen_bs)
##
# Bitstream
bit_stream = et.Element('Bitstream')
xip_root.append(bit_stream)
#filename
bs_file = et.Element('Filename')
bs_file.text = Path(file_to_pack).name
bit_stream.append(bs_file)
#filesize
bs_size = et.Element('FileSize')
bs_size_get = str(Path(file_to_pack).stat().st_size)
bs_size.text = bs_size_get
bit_stream.append(bs_size)
#physicallocation
bs_pl = et.Element('PhysicalLocation')
bs_pl.text = Path(file_to_pack).parts[-2]
bit_stream.append(bs_pl)
#fixities
bs_fixities = et.Element('Fixities')
bit_stream.append(bs_fixities)
#fixity
bs_fixity = et.Element('Fixity')
bs_fixities.append(bs_fixity)
# fixity
hash_out, hash_algo = get_checksum(file_to_pack, args)
##fixitiy ALgo
bs_fixity_algo = et.Element('FixityAlgorithmRef')
bs_fixity_algo.text = hash_algo
bs_fixity.append(bs_fixity_algo)
##fixixty val
bs_fixity_val = et.Element('FixityValue')
bs_checksum = hash_out
bs_fixity_val.text = bs_checksum
bs_fixity.append(bs_fixity_val)
'''
## IO handle parentless
if iobj_parent_set == None:
print('parentless')
md_virt = parentless(iobj_uuid)
xip_root.append(md_virt)
'''
## check for embedding metadata at IO level
if args.iometadata:
meta_entity = iobj_uuid
md_embed_iobj = embed_metadata(args.iometadata, meta_entity)
xip_root.append(md_embed_iobj)
### storage
## check for embedding metadata at IO level
if args.storage:
md_str_entity = iobj_uuid
md_str_embed_iobj = embed_metadata(args.storage, md_str_entity)
xip_root.append(md_str_embed_iobj)
elif args.storageconfig:
# storageconfig not used for single folder standard packages
print('ERROR - storageconfig cannot be used with this package type')
# check of creting identifier at so level
if args.ioidtype:
id_entity = iobj_uuid
id_iobj = gen_id(args, id_entity, 'io')
xip_root.append(id_iobj)
elif Path(file_to_pack).is_dir():
# if sub dirs found, call function to create new sub-SO
create_xip_recurse(file_to_pack, iobj_parent_set)
def file_mult_single_asset_pack():
# call function for IO packing
# <InformationObject>
iobj = et.Element('InformationObject')
xip_root.append(iobj)
# ref
iobj_ref = et.Element('Ref')
iobj_uuid = str(uuid.uuid4())
iobj_ref.text = iobj_uuid
iobj.append(iobj_ref)
# title
iobj_title = et.Element('Title')
# TODO name after first file
#iobj_title.text = Path(file_to_pack).name
iobj_title.text = args.iotitle
iobj.append(iobj_title)
# description
iobj_desc = et.Element('Description')
iobj_desc.text = args.iodescription
iobj.append(iobj_desc)
# security
iobj_sec = et.Element('SecurityTag')
iobj_sec.text = args.securitytag
iobj.append(iobj_sec)
# Parent
iobj_par = et.Element('Parent')
iobj_par.text = iobj_parent_set
iobj.append(iobj_par)
##
# Representation
representation = et.Element('Representation')
xip_root.append(representation)
# io
rep_iobj = et.Element('InformationObject')
rep_iobj.text = iobj_uuid
representation.append(rep_iobj)
#name
rep_name = et.Element('Name')
rep_name.text = 'Preservation-1'
representation.append(rep_name)
#type
rep_type = et.Element('Type')
rep_type.text = 'Preservation'
representation.append(rep_type)
#cos
rep_cobjs = et.Element('ContentObjects')
representation.append(rep_cobjs)
### WIP Testing, exlcude at CO level
for file_to_pack in Path(content_path).iterdir():
if Path(file_to_pack).is_file() and include_files(Path(file_to_pack).name, args.excludedFileNames):
#co
rep_cobj = et.Element('ContentObject')
cobj_uuid = str(uuid.uuid4())
rep_cobj.text = cobj_uuid
rep_cobjs.append(rep_cobj)
##
# Content Object
cobj = et.Element('ContentObject')
xip_root.append(cobj)
#ref
cobj_ref = et.Element('Ref')
cobj_ref.text = cobj_uuid
cobj.append(cobj_ref)
#title
cobj_title = et.Element('Title')
cobj_title.text = Path(file_to_pack).name
cobj.append(cobj_title)
#security
cobj_sec = et.Element('SecurityTag')
cobj_sec.text = args.securitytag
cobj.append(cobj_sec)
#parent
cobj_par = et.Element('Parent')
cobj_par.text = iobj_uuid
cobj.append(cobj_par)
##
# Generation
gen = et.Element('Generation')
gen.attrib = {'original' : "true", 'active' : "true"}
xip_root.append(gen)
#co
gen_cobj = et.Element('ContentObject')
gen_cobj.text = cobj_uuid
gen.append(gen_cobj)
#effectivedate
gen_effect_d = et.Element('EffectiveDate')
gen_effect_d.text = str(datetime.datetime.now().isoformat(timespec='microseconds'))
gen.append(gen_effect_d)
# bitstreams
gen_bss = et.Element('Bitstreams')
gen.append(gen_bss)
#bitstream
gen_bs = et.Element('Bitstream')
gen_bs.text = Path(file_to_pack).parts[-2] + '/' + Path(file_to_pack).parts[-1]
gen_bss.append(gen_bs)
##
# Bitstream
bit_stream = et.Element('Bitstream')
xip_root.append(bit_stream)
#filename
bs_file = et.Element('Filename')
bs_file.text = Path(file_to_pack).name
bit_stream.append(bs_file)
#filesize
bs_size = et.Element('FileSize')
bs_size_get = str(Path(file_to_pack).stat().st_size)
bs_size.text = bs_size_get
bit_stream.append(bs_size)
#physicallocation
bs_pl = et.Element('PhysicalLocation')
bs_pl.text = Path(file_to_pack).parts[-2]
bit_stream.append(bs_pl)
#fixities
bs_fixities = et.Element('Fixities')
bit_stream.append(bs_fixities)
#fixity
bs_fixity = et.Element('Fixity')
bs_fixities.append(bs_fixity)
# fixity
hash_out, hash_algo = get_checksum(file_to_pack, args)
##fixitiy ALgo
bs_fixity_algo = et.Element('FixityAlgorithmRef')
bs_fixity_algo.text = hash_algo
bs_fixity.append(bs_fixity_algo)
##fixixty val
bs_fixity_val = et.Element('FixityValue')
bs_checksum = hash_out
bs_fixity_val.text = bs_checksum
bs_fixity.append(bs_fixity_val)
'''
## IO handle parentless
if iobj_parent_set == None:
print('parentless')
md_virt = parentless(iobj_uuid)
xip_root.append(md_virt)
'''
elif Path(file_to_pack).is_dir():
print('ERROR - Directory found, input for single asset objects must be files only')
## check for embedding metadata at IO level
if args.iometadata:
meta_entity = iobj_uuid
md_embed_iobj = embed_metadata(args.iometadata, meta_entity)
xip_root.append(md_embed_iobj)
### storage
## check for embedding metadata at IO level
if args.storage:
md_str_entity = iobj_uuid
md_str_embed_iobj = embed_metadata(args.storage, md_str_entity)
xip_root.append(md_str_embed_iobj)
elif args.storageconfig:
# storageconfig not used for single folder standard packages
print('ERROR - storageconfig cannot be used with this package type')
# check of creting identifier at so level
if args.ioidtype:
id_entity = iobj_uuid
id_iobj = gen_id(args, id_entity, 'io')
xip_root.append(id_iobj)
def mult_reps_pack(package_reps):
# call function for IO packing
# <InformationObject>
iobj = et.Element('InformationObject')
xip_root.append(iobj)
# ref
iobj_ref = et.Element('Ref')
iobj_uuid = str(uuid.uuid4())
iobj_ref.text = iobj_uuid
iobj.append(iobj_ref)
# title
iobj_title = et.Element('Title')
# TODO name after first file
#iobj_title.text = Path(file_to_pack).name
iobj_title.text = args.iotitle
iobj.append(iobj_title)
# description
iobj_desc = et.Element('Description')
iobj_desc.text = args.iodescription
iobj.append(iobj_desc)
# security
iobj_sec = et.Element('SecurityTag')
iobj_sec.text = args.securitytag
iobj.append(iobj_sec)
# Parent
iobj_par = et.Element('Parent')
iobj_par.text = iobj_parent_set
iobj.append(iobj_par)
### multi rep handling
# dict items have tuple with (path string, type, name)
for key, value in package_reps.items():
# print(key)
rep_dir_path = value[0]
rep_dir_type = value[1]
rep_dir_name = value[2]
# Representation
representation = et.Element('Representation')
xip_root.append(representation)
# io
rep_iobj = et.Element('InformationObject')
rep_iobj.text = iobj_uuid
representation.append(rep_iobj)
#name
rep_name = et.Element('Name')
rep_name.text = rep_dir_name
representation.append(rep_name)
#type
rep_type = et.Element('Type')
rep_type.text = rep_dir_type
representation.append(rep_type)
#cos
rep_cobjs = et.Element('ContentObjects')
representation.append(rep_cobjs)
### WIP Testing, exlcude at CO level
for file_to_pack in Path(rep_dir_path).iterdir():
if Path(file_to_pack).is_file() and include_files(Path(file_to_pack).name, args.excludedFileNames):
#co
rep_cobj = et.Element('ContentObject')
cobj_uuid = str(uuid.uuid4())
rep_cobj.text = cobj_uuid
rep_cobjs.append(rep_cobj)
##
# Content Object
cobj = et.Element('ContentObject')
xip_root.append(cobj)
#ref
cobj_ref = et.Element('Ref')
cobj_ref.text = cobj_uuid
cobj.append(cobj_ref)
#title
cobj_title = et.Element('Title')
cobj_title.text = Path(file_to_pack).name
cobj.append(cobj_title)
#security
cobj_sec = et.Element('SecurityTag')
cobj_sec.text = args.securitytag
cobj.append(cobj_sec)
#parent
cobj_par = et.Element('Parent')
cobj_par.text = iobj_uuid
cobj.append(cobj_par)
##
# Generation
gen = et.Element('Generation')
gen.attrib = {'original' : "true", 'active' : "true"}
xip_root.append(gen)
#co
gen_cobj = et.Element('ContentObject')
gen_cobj.text = cobj_uuid
gen.append(gen_cobj)
#effectivedate
gen_effect_d = et.Element('EffectiveDate')
gen_effect_d.text = str(datetime.datetime.now().isoformat(timespec='microseconds'))
gen.append(gen_effect_d)
# bitstreams
gen_bss = et.Element('Bitstreams')
gen.append(gen_bss)
#bitstream
gen_bs = et.Element('Bitstream')
gen_bs.text = Path(file_to_pack).parts[-2] + '/' + Path(file_to_pack).parts[-1]
gen_bss.append(gen_bs)
##
# Bitstream
bit_stream = et.Element('Bitstream')
xip_root.append(bit_stream)
#filename
bs_file = et.Element('Filename')
bs_file.text = Path(file_to_pack).name
bit_stream.append(bs_file)
#filesize
bs_size = et.Element('FileSize')
bs_size_get = str(Path(file_to_pack).stat().st_size)
bs_size.text = bs_size_get
bit_stream.append(bs_size)
#physicallocation
bs_pl = et.Element('PhysicalLocation')
bs_pl.text = Path(file_to_pack).parts[-2]
bit_stream.append(bs_pl)
#fixities
bs_fixities = et.Element('Fixities')
bit_stream.append(bs_fixities)
#fixity
bs_fixity = et.Element('Fixity')
bs_fixities.append(bs_fixity)
# fixity
hash_out, hash_algo = get_checksum(file_to_pack, args)
##fixitiy ALgo
bs_fixity_algo = et.Element('FixityAlgorithmRef')
bs_fixity_algo.text = hash_algo
bs_fixity.append(bs_fixity_algo)
##fixixty val
bs_fixity_val = et.Element('FixityValue')
bs_checksum = hash_out
bs_fixity_val.text = bs_checksum
bs_fixity.append(bs_fixity_val)
# ## IO handle parentless
#if iobj_parent_set == None:
# print('parentless')
# md_virt = parentless(iobj_uuid)
# xip_root.append(md_virt)
elif Path(file_to_pack).is_dir():
print('ERROR - Directory found, input for multi representation objects must be files only')
## check for embedding metadata at IO level
if args.iometadata:
meta_entity = iobj_uuid
md_embed_iobj = embed_metadata(args.iometadata, meta_entity)
xip_root.append(md_embed_iobj)
### storage
## check for embedding metadata at IO level
if args.storage:
md_str_entity = iobj_uuid
md_str_embed_iobj = embed_metadata(args.storage, md_str_entity)
xip_root.append(md_str_embed_iobj)
elif args.storageconfig:
print('ERROR - use sk to set kw and manage representation storage in Preservica instance settings')
'''
# get package reps entry match with SO name
print("+++++++++++++++++++++++++++++++++++++++")
print(Path(file_to_pack).parent.name)
print(str(Path(file_to_pack.parent)))
for k,v in package_parts.items():
print(k)
if str(Path(file_to_pack.parent)) == k:
md_strcnf_embed_iobj = v
md_str_entity = iobj_uuid
md_str_embed_iobj = embed_metadata(md_strcnf_embed_iobj, md_str_entity)
print(md_strcnf_embed_iobj, md_str_entity)
xip_root.append(md_str_embed_iobj)
else:
pass
#print(k,v)
'''
# check of creting identifier at so level
if args.ioidtype:
id_entity = iobj_uuid
id_iobj = gen_id(args, id_entity, 'io')
xip_root.append(id_iobj)
## entry point of function
content_path = os.path.join(args.input, '')
## create XIP root element
xip_root = et.Element('XIP')
#et.register_namespace('XIP','http://preservica.com/XIP/v6.2')
xip_root.attrib = {'xmlns':"http://preservica.com/XIP/v6.2"}
### storage config
if args.storageconfig:
global package_parts
#package_parts = parse_storageconfig(args.storageconfig, args.input)
print(content_path)
package_parts = parse_storageconfig(args.storageconfig, content_path)
## main branching for different package types
if args.assetonly:
sobj_uuid = None
if args.parent == 'None':
print('ERROR : Parent must be provided for asset only ingests')
exit()
iobj_parent_set = args.parent
file_dir_pack_std()
elif args.singleasset:
sobj_uuid = None
if args.parent == 'None':
print('ERROR : Parent must be provided for multi-file, single asset, ingests')
exit()
iobj_parent_set = args.parent
file_mult_single_asset_pack()
# add multi-representation handling:
elif args.representations:
sobj_uuid = None
if args.sipconfig:
# call func with sipconfig
# proc sipconfig for paths