-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathmodels.py
1553 lines (1404 loc) · 58.4 KB
/
models.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
"""Dataverse data-types data model."""
from __future__ import absolute_import
import json
import os
from pyDataverse.utils import validate_data
INTERNAL_ATTRIBUTES = [
"_default_json_format",
"_default_json_schema_filename",
"_allowed_json_formats",
"_json_dataverse_upload_attr",
"_internal_attributes",
]
class DVObject:
"""Base class for the Dataverse data types `Dataverse`, `Dataset` and `Datafile`."""
def __init__(self, data=None):
"""Init :class:`DVObject`.
Parameters
----------
data : dict
Flat dictionary. All keys will be mapped to a similar
named attribute and it's value.
"""
if data is not None:
self.set(data)
def set(self, data):
"""Set class attributes by a flat dictionary.
The flat dict is the main way to set the class attributes.
It is the main interface between the object and the outside world.
Parameters
----------
data : dict
Flat dictionary. All keys will be mapped to a similar
named attribute and it's value.
Returns
-------
bool
`True` if all attributes are set, `False` if wrong data type was
passed.
"""
assert isinstance(data, dict)
for key, val in data.items():
if key in self._internal_attributes:
print("Importing attribute {0} not allowed.".format(key))
else:
self.__setattr__(key, val)
def get(self):
"""Create flat `dict` of all attributes.
Creates :class:`dict` with all attributes in a flat structure.
The flat :class:`dict` can then be used for further processing.
Returns
-------
dict
Data in a flat data structure.
"""
data = {}
for attr in list(self.__dict__.keys()):
if attr not in INTERNAL_ATTRIBUTES:
data[attr] = self.__getattribute__(attr)
assert isinstance(data, dict)
return data
def validate_json(self, filename_schema=None):
"""Validate JSON formats.
Check if JSON data structure is valid.
Parameters
----------
filename_schema : str
Filename of JSON schema with full path.
Returns
-------
bool
`True` if JSON validates correctly, `False` if not.
"""
if filename_schema is None:
filename_schema = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
self._default_json_schema_filename,
)
assert isinstance(filename_schema, str)
return validate_data(
json.loads(self.json(validate=False)),
filename_schema,
file_format="json",
)
def from_json(
self, json_str, data_format=None, validate=True, filename_schema=None
):
"""Import metadata from a JSON file.
Parses in the metadata from different JSON formats.
Parameters
----------
json_str : str
JSON string to be imported.
data_format : str
Data formats available for import. See `_allowed_json_formats`.
validate : bool
`True`, if imported JSON should be validated against a JSON
schema file. `False`, if JSON string should be imported directly and
not checked if valid.
filename_schema : str
Filename of JSON schema with full path.
Returns
-------
bool
`True` if JSON imported correctly, `False` if not.
"""
assert isinstance(json_str, str)
json_dict = json.loads(json_str)
assert isinstance(json_dict, dict)
assert isinstance(validate, bool)
if data_format is None:
data_format = self._default_json_format
assert isinstance(data_format, str)
assert data_format in self._allowed_json_formats
if filename_schema is None:
filename_schema = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
self._default_json_schema_filename,
)
assert isinstance(filename_schema, str)
data = {}
if data_format == "dataverse_upload":
if validate:
validate_data(json_dict, filename_schema)
# get first level metadata and parse it automatically
for key in json_dict.keys():
if key in self._json_dataverse_upload_attr:
data[key] = json_dict[key]
else:
print(
"INFO: Attribute {0} not valid for import (data format=`{1}`).".format(
key, data_format
)
)
elif data_format == "dataverse_download":
print("INFO: Not implemented yet.")
elif data_format == "dspace":
print("INFO: Not implemented yet.")
elif data_format == "custom":
print("INFO: Not implemented yet.")
else:
# TODO: add exception for wrong data format
pass
self.set(data)
def json(self, data_format=None, validate=True, filename_schema=None):
r"""Create JSON from :class:`DVObject` attributes.
Parameters
----------
data_format : str
Data formats to be validated. See `_allowed_json_formats`.
validate : bool
`True`, if created JSON should be validated against a JSON schema
file. `False`, if JSON string should be created and not checked if
valid.
filename_schema : str
Filename of JSON schema with full path.
Returns
-------
str
The data as a JSON string.
"""
assert isinstance(validate, bool)
if data_format is None:
data_format = self._default_json_format
assert isinstance(data_format, str)
assert data_format in self._allowed_json_formats
if filename_schema is None:
filename_schema = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
self._default_json_schema_filename,
)
assert isinstance(filename_schema, str)
data = {}
if data_format == "dataverse_upload":
for attr in self._json_dataverse_upload_attr:
# check if attribute exists
if hasattr(self, attr):
data[attr] = self.__getattribute__(attr)
elif data_format == "dspace":
print("INFO: Not implemented yet.")
return False
elif data_format == "custom":
print("INFO: Not implemented yet.")
return False
if validate:
validate_data(data, filename_schema)
json_str = json.dumps(data, indent=2)
assert isinstance(json_str, str)
return json_str
class Dataverse(DVObject):
"""Base class for the Dataverse data type `Dataverse`.
Attributes
----------
_default_json_format : str
Default JSON data format.
_default_json_schema_filename : str
Default JSON schema filename.
_allowed_json_formats : list
List of all possible JSON data formats.
_json_dataverse_upload_attr : list
List of all attributes to be exported in :func:`json`.
"""
def __init__(self, data=None):
"""Init :class:`Dataverse()`.
Inherits attributes from parent :class:`DVObject()`
Parameters
----------
data : dict
Flat dictionary. All keys will be mapped to a similar
named attribute and it's value.
Examples
-------
Create a Dataverse::
>>> from pyDataverse.models import Dataverse
>>> dv = Dataverse()
>>> print(dv._default_json_schema_filename)
'schemas/json/dataverse_upload_schema.json'
"""
self._internal_attributes = [
"_Dataverse" + attr for attr in INTERNAL_ATTRIBUTES
]
super().__init__(data=data)
self._default_json_format = "dataverse_upload"
self._default_json_schema_filename = "schemas/json/dataverse_upload_schema.json"
self._allowed_json_formats = ["dataverse_upload", "dataverse_download"]
self._json_dataverse_upload_attr = [
"affiliation",
"alias",
"dataverseContacts",
"dataverseType",
"description",
"name",
]
class Dataset(DVObject):
"""Base class for the Dataverse data type `Dataset`.
Attributes
----------
_default_json_format : str
Default JSON data format.
_default_json_schema_filename : str
Default JSON schema filename.
_allowed_json_formats : list
List of all possible JSON data formats.
_json_dataverse_upload_attr : list
List with all attributes to be exported in :func:`json`.
__attr_import_dv_up_datasetVersion_values : list
Dataverse API Upload Dataset JSON attributes inside ds[\'datasetVersion\'].
__attr_import_dv_up_citation_fields_values : list
Dataverse API Upload Dataset JSON attributes inside
ds[\'datasetVersion\'][\'metadataBlocks\'][\'citation\'][\'fields\'].
__attr_import_dv_up_citation_fields_arrays : dict
Dataverse API Upload Dataset JSON attributes inside
[\'datasetVersion\'][\'metadataBlocks\'][\'citation\'][\'fields\'].
__attr_import_dv_up_geospatial_fields_values : list
Attributes of Dataverse API Upload Dataset JSON metadata standard inside
[\'datasetVersion\'][\'metadataBlocks\'][\'geospatial\'][\'fields\'].
__attr_import_dv_up_geospatial_fields_arrays : dict
Attributes of Dataverse API Upload Dataset JSON metadata standard inside
[\'datasetVersion\'][\'metadataBlocks\'][\'geospatial\'][\'fields\'].
__attr_import_dv_up_socialscience_fields_values : list
Attributes of Dataverse API Upload Dataset JSON metadata standard inside
[\'datasetVersion\'][\'metadataBlocks\'][\'socialscience\'][\'fields\'].
__attr_import_dv_up_journal_fields_values : list
Attributes of Dataverse API Upload Dataset JSON metadata standard inside
[\'datasetVersion\'][\'metadataBlocks\'][\'journal\'][\'fields\'].
__attr_import_dv_up_journal_fields_arrays : dict
Attributes of Dataverse API Upload Dataset JSON metadata standard inside
[\'datasetVersion\'][\'metadataBlocks\'][\'journal\'][\'fields\'].
__attr_dict_dv_up_required :list
Required attributes for valid `dv_up` metadata dict creation.
__attr_dict_dv_up_type_class_primitive : list
typeClass primitive.
__attr_dict_dv_up_type_class_compound : list
typeClass compound.
__attr_dict_dv_up_type_class_controlled_vocabulary : list
typeClass controlledVocabulary.
__attr_dict_dv_up_single_dict : list
This attributes are excluded from automatic parsing in ds.get() creation.
__attr_displayNames : list
Attributes of displayName.
"""
__attr_import_dv_up_datasetVersion_values = [
"license",
"termsOfAccess",
"fileAccessRequest",
"protocol",
"authority",
"identifier",
"termsOfUse",
]
__attr_import_dv_up_citation_fields_values = [
"accessToSources",
"alternativeTitle",
"alternativeURL",
"characteristicOfSources",
"dateOfDeposit",
"dataSources",
"depositor",
"distributionDate",
"kindOfData",
"language",
"notesText",
"originOfSources",
"otherReferences",
"productionDate",
"productionPlace",
"relatedDatasets",
"relatedMaterial",
"subject",
"subtitle",
"title",
]
__attr_import_dv_up_citation_fields_arrays = {
"author": [
"authorName",
"authorAffiliation",
"authorIdentifierScheme",
"authorIdentifier",
],
"contributor": ["contributorType", "contributorName"],
"dateOfCollection": ["dateOfCollectionStart", "dateOfCollectionEnd"],
"datasetContact": [
"datasetContactName",
"datasetContactAffiliation",
"datasetContactEmail",
],
"distributor": [
"distributorName",
"distributorAffiliation",
"distributorAbbreviation",
"distributorURL",
"distributorLogoURL",
],
"dsDescription": ["dsDescriptionValue", "dsDescriptionDate"],
"grantNumber": ["grantNumberAgency", "grantNumberValue"],
"keyword": ["keywordValue", "keywordVocabulary", "keywordVocabularyURI"],
"producer": [
"producerName",
"producerAffiliation",
"producerAbbreviation",
"producerURL",
"producerLogoURL",
],
"otherId": ["otherIdAgency", "otherIdValue"],
"publication": [
"publicationCitation",
"publicationIDType",
"publicationIDNumber",
"publicationURL",
],
"software": ["softwareName", "softwareVersion"],
"timePeriodCovered": ["timePeriodCoveredStart", "timePeriodCoveredEnd"],
"topicClassification": [
"topicClassValue",
"topicClassVocab",
"topicClassVocabURI",
],
}
__attr_import_dv_up_geospatial_fields_values = ["geographicUnit"]
__attr_import_dv_up_geospatial_fields_arrays = {
"geographicBoundingBox": [
"westLongitude",
"eastLongitude",
"northLongitude",
"southLongitude",
],
"geographicCoverage": ["country", "state", "city", "otherGeographicCoverage"],
}
__attr_import_dv_up_socialscience_fields_values = [
"actionsToMinimizeLoss",
"cleaningOperations",
"collectionMode",
"collectorTraining",
"controlOperations",
"dataCollectionSituation",
"dataCollector",
"datasetLevelErrorNotes",
"deviationsFromSampleDesign",
"frequencyOfDataCollection",
"otherDataAppraisal",
"researchInstrument",
"responseRate",
"samplingErrorEstimates",
"samplingProcedure",
"unitOfAnalysis",
"universe",
"timeMethod",
"weighting",
]
__attr_import_dv_up_journal_fields_values = ["journalArticleType"]
__attr_import_dv_up_journal_fields_arrays = {
"journalVolumeIssue": ["journalVolume", "journalIssue", "journalPubDate"]
}
__attr_dict_dv_up_required = [
"author",
"datasetContact",
"dsDescription",
"subject",
"title",
]
__attr_dict_dv_up_type_class_primitive = (
[
"accessToSources",
"alternativeTitle",
"alternativeURL",
"authorAffiliation",
"authorIdentifier",
"authorName",
"characteristicOfSources",
"city",
"contributorName",
"dateOfDeposit",
"dataSources",
"depositor",
"distributionDate",
"kindOfData",
"notesText",
"originOfSources",
"otherGeographicCoverage",
"otherReferences",
"productionDate",
"productionPlace",
"publicationCitation",
"publicationIDNumber",
"publicationURL",
"relatedDatasets",
"relatedMaterial",
"seriesInformation",
"seriesName",
"state",
"subtitle",
"title",
]
+ __attr_import_dv_up_citation_fields_arrays["dateOfCollection"]
+ __attr_import_dv_up_citation_fields_arrays["datasetContact"]
+ __attr_import_dv_up_citation_fields_arrays["distributor"]
+ __attr_import_dv_up_citation_fields_arrays["dsDescription"]
+ __attr_import_dv_up_citation_fields_arrays["grantNumber"]
+ __attr_import_dv_up_citation_fields_arrays["keyword"]
+ __attr_import_dv_up_citation_fields_arrays["producer"]
+ __attr_import_dv_up_citation_fields_arrays["otherId"]
+ __attr_import_dv_up_citation_fields_arrays["software"]
+ __attr_import_dv_up_citation_fields_arrays["timePeriodCovered"]
+ __attr_import_dv_up_citation_fields_arrays["topicClassification"]
+ __attr_import_dv_up_geospatial_fields_values
+ __attr_import_dv_up_geospatial_fields_arrays["geographicBoundingBox"]
+ __attr_import_dv_up_socialscience_fields_values
+ __attr_import_dv_up_journal_fields_arrays["journalVolumeIssue"]
+ [
"socialScienceNotesType",
"socialScienceNotesSubject",
"socialScienceNotesText",
]
+ ["targetSampleActualSize", "targetSampleSizeFormula"]
)
__attr_dict_dv_up_type_class_compound = (
list(__attr_import_dv_up_citation_fields_arrays.keys())
+ list(__attr_import_dv_up_geospatial_fields_arrays.keys())
+ list(__attr_import_dv_up_journal_fields_arrays.keys())
+ ["series", "socialScienceNotes", "targetSampleSize"]
)
__attr_dict_dv_up_type_class_controlled_vocabulary = [
"authorIdentifierScheme",
"contributorType",
"country",
"journalArticleType",
"language",
"publicationIDType",
"subject",
]
__attr_dict_dv_up_single_dict = ["series", "socialScienceNotes", "targetSampleSize"]
__attr_displayNames = [
"citation_displayName",
"geospatial_displayName",
"socialscience_displayName",
"journal_displayName",
]
def __init__(self, data=None):
"""Init a Dataset() class.
Parameters
----------
data : dict
Flat dictionary. All keys will be mapped to a similar
named attribute and it's value.
Examples
-------
Create a Dataset::
>>> from pyDataverse.models import Dataset
>>> ds = Dataset()
>>> print(ds._default_json_schema_filename)
'schemas/json/dataset_upload_default_schema.json'
"""
self._internal_attributes = ["_Dataset" + attr for attr in INTERNAL_ATTRIBUTES]
super().__init__(data=data)
self._default_json_format = "dataverse_upload"
self._default_json_schema_filename = (
"schemas/json/dataset_upload_default_schema.json"
)
self._allowed_json_formats = [
"dataverse_upload",
"dataverse_download",
"dspace",
"custom",
]
self._json_dataverse_upload_attr = [
"license",
"termsOfUse",
"termsOfAccess",
"fileAccessRequest",
"protocol",
"authority",
"identifier",
"citation_displayName",
"title",
"subtitle",
"alternativeTitle",
"alternativeURL",
"otherId",
"author",
"datasetContact",
"dsDescription",
"subject",
"keyword",
"topicClassification",
"publication",
"notesText",
"producer",
"productionDate",
"productionPlace",
"contributor",
"grantNumber",
"distributor",
"distributionDate",
"depositor",
"dateOfDeposit",
"timePeriodCovered",
"dateOfCollection",
"kindOfData",
"language",
"series",
"software",
"relatedMaterial",
"relatedDatasets",
"otherReferences",
"dataSources",
"originOfSources",
"characteristicOfSources",
"accessToSources",
"geospatial_displayName",
"geographicCoverage",
"geographicUnit",
"geographicBoundingBox",
"socialscience_displayName",
"unitOfAnalysis",
"universe",
"timeMethod",
"dataCollector",
"collectorTraining",
"frequencyOfDataCollection",
"samplingProcedure",
"targetSampleSize",
"deviationsFromSampleDesign",
"collectionMode",
"researchInstrument",
"dataCollectionSituation",
"actionsToMinimizeLoss",
"controlOperations",
"weighting",
"cleaningOperations",
"datasetLevelErrorNotes",
"responseRate",
"samplingErrorEstimates",
"otherDataAppraisal",
"socialScienceNotes",
"journal_displayName",
"journalVolumeIssue",
"journalArticleType",
]
def validate_json(self, filename_schema=None):
"""Validate JSON formats of Dataset.
Check if JSON data structure is valid.
Parameters
----------
filename_schema : str
Filename of JSON schema with full path.
Returns
-------
bool
`True` if JSON validate correctly, `False` if not.
Examples
-------
Check if JSON is valid for Dataverse API upload::
>>> from pyDataverse.models import Dataset
>>> ds = Dataset()
>>> data = {
>>> 'title': 'pyDataverse study 2019',
>>> 'dsDescription': [
>>> {'dsDescriptionValue': 'New study about pyDataverse usage in 2019'}
>>> ]
>>> }
>>> ds.set(data)
>>> print(ds.validate_json())
False
>>> ds.author = [{'authorName': 'LastAuthor1, FirstAuthor1'}]
>>> ds.datasetContact = [{'datasetContactName': 'LastContact1, FirstContact1'}]
>>> ds.subject = ['Engineering']
>>> print(ds.validate_json())
True
"""
if filename_schema is None:
filename_schema = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
self._default_json_schema_filename,
)
assert isinstance(filename_schema, str)
is_valid = True
data_json = self.json(validate=False)
if data_json:
is_valid = validate_data(
json.loads(data_json), filename_schema, file_format="json"
)
if not is_valid:
return False
else:
return False
# check if all required attributes are set
for attr in self.__attr_dict_dv_up_required:
if attr in list(self.__dict__.keys()):
if not self.__getattribute__(attr):
is_valid = False
print("Attribute '{0}' is `False`.".format(attr))
else:
is_valid = False
print("Attribute '{0}' missing.".format(attr))
# check if attributes set are complete where necessary
if "timePeriodCovered" in list(self.__dict__.keys()):
tp_cov = self.__getattribute__("timePeriodCovered")
if tp_cov:
for tp in tp_cov:
if "timePeriodCoveredStart" in tp or "timePeriodCoveredEnd" in tp:
if not (
"timePeriodCoveredStart" in tp
and "timePeriodCoveredEnd" in tp
):
is_valid = False
print("timePeriodCovered attribute missing.")
if "dateOfCollection" in list(self.__dict__.keys()):
d_coll = self.__getattribute__("dateOfCollection")
if d_coll:
for d in d_coll:
if "dateOfCollectionStart" in d or "dateOfCollectionEnd" in d:
if not (
"dateOfCollectionStart" in d and "dateOfCollectionEnd" in d
):
is_valid = False
print("dateOfCollection attribute missing.")
if "author" in list(self.__dict__.keys()):
authors = self.__getattribute__("author")
if authors:
for a in authors:
if (
"authorAffiliation" in a
or "authorIdentifierScheme" in a
or "authorIdentifier" in a
):
if "authorName" not in a:
is_valid = False
print("author attribute missing.")
if "datasetContact" in list(self.__dict__.keys()):
ds_contac = self.__getattribute__("datasetContact")
if ds_contac:
for c in ds_contac:
if "datasetContactAffiliation" in c or "datasetContactEmail" in c:
if "datasetContactName" not in c:
is_valid = False
print("datasetContact attribute missing.")
if "producer" in list(self.__dict__.keys()):
producer = self.__getattribute__("producer")
if producer:
for p in producer:
if (
"producerAffiliation" in p
or "producerAbbreviation" in p
or "producerURL" in p
or "producerLogoURL" in p
):
if not p["producerName"]:
is_valid = False
print("producer attribute missing.")
if "contributor" in list(self.__dict__.keys()):
contributor = self.__getattribute__("contributor")
if contributor:
for c in contributor:
if "contributorType" in c:
if "contributorName" not in c:
is_valid = False
print("contributor attribute missing.")
if "distributor" in list(self.__dict__.keys()):
distributor = self.__getattribute__("distributor")
if distributor:
for d in distributor:
if (
"distributorAffiliation" in d
or "distributorAbbreviation" in d
or "distributorURL" in d
or "distributorLogoURL" in d
):
if "distributorName" not in d:
is_valid = False
print("distributor attribute missing.")
if "geographicBoundingBox" in list(self.__dict__.keys()):
bbox = self.__getattribute__("geographicBoundingBox")
if bbox:
for b in bbox:
if b:
if not (
"westLongitude" in b
and "eastLongitude" in b
and "northLongitude" in b
and "southLongitude" in b
):
is_valid = False
print("geographicBoundingBox attribute missing.")
assert isinstance(is_valid, bool)
return is_valid
def from_json(
self, json_str, data_format=None, validate=True, filename_schema=None
):
"""Import Dataset metadata from JSON file.
Parses in the metadata of a Dataset from different JSON formats.
Parameters
----------
json_str : str
JSON string to be imported.
data_format : str
Data formats available for import. See `_allowed_json_formats`.
validate : bool
`True`, if imported JSON should be validated against a JSON
schema file. `False`, if JSON string should be imported directly and
not checked if valid.
filename_schema : str
Filename of JSON schema with full path.
Examples
-------
Set Dataverse attributes via flat :class:`dict`::
>>> from pyDataverse.models import Dataset
>>> ds = Dataset()
>>> ds.from_json('tests/data/dataset_upload_min_default.json')
>>> ds.title
'Darwin's Finches'
"""
assert isinstance(json_str, str)
json_dict = json.loads(json_str)
assert isinstance(json_dict, dict)
assert isinstance(validate, bool)
if data_format is None:
data_format = self._default_json_format
assert isinstance(data_format, str)
assert data_format in self._allowed_json_formats
if filename_schema is None:
filename_schema = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
self._default_json_schema_filename,
)
assert isinstance(filename_schema, str)
data = {}
if data_format == "dataverse_upload":
if validate:
validate_data(json_dict, filename_schema, file_format="json")
# dataset
# get first level metadata and parse it automatically
for key, val in json_dict["datasetVersion"].items():
if not key == "metadataBlocks":
if key in self.__attr_import_dv_up_datasetVersion_values:
data[key] = val
else:
print(
"Attribute {0} not valid for import (format={1}).".format(
key, data_format
)
)
if "metadataBlocks" in json_dict["datasetVersion"]:
# citation
if "citation" in json_dict["datasetVersion"]["metadataBlocks"]:
citation = json_dict["datasetVersion"]["metadataBlocks"]["citation"]
if "displayName" in citation:
data["citation_displayName"] = citation["displayName"]
for field in citation["fields"]:
if (
field["typeName"]
in self.__attr_import_dv_up_citation_fields_values
):
data[field["typeName"]] = field["value"]
elif (
field["typeName"]
in self.__attr_import_dv_up_citation_fields_arrays
):
data[field["typeName"]] = self.__parse_field_array(
field["value"],
self.__attr_import_dv_up_citation_fields_arrays[
field["typeName"]
],
)
elif field["typeName"] == "series":
data["series"] = {}
if "seriesName" in field["value"]:
data["series"]["seriesName"] = field["value"][
"seriesName"
]["value"]
if "seriesInformation" in field["value"]:
data["series"]["seriesInformation"] = field["value"][
"seriesInformation"
]["value"]
else:
print(
"Attribute {0} not valid for import (dv_up).".format(
field["typeName"]
)
)
else:
# TODO: Exception
pass
# geospatial
if "geospatial" in json_dict["datasetVersion"]["metadataBlocks"]:
geospatial = json_dict["datasetVersion"]["metadataBlocks"][
"geospatial"
]
if "displayName" in geospatial:
self.__setattr__(
"geospatial_displayName", geospatial["displayName"]
)
for field in geospatial["fields"]:
if (
field["typeName"]
in self.__attr_import_dv_up_geospatial_fields_values
):
data[field["typeName"]] = field["value"]
elif (
field["typeName"]
in self.__attr_import_dv_up_geospatial_fields_arrays
):
data[field["typeName"]] = self.__parse_field_array(
field["value"],
self.__attr_import_dv_up_geospatial_fields_arrays[
field["typeName"]
],
)
else:
print(
"Attribute {0} not valid for import (dv_up).".format(
field["typeName"]
)
)
else:
# TODO: Exception
pass
# socialscience
if "socialscience" in json_dict["datasetVersion"]["metadataBlocks"]:
socialscience = json_dict["datasetVersion"]["metadataBlocks"][
"socialscience"
]
if "displayName" in socialscience:
self.__setattr__(
"socialscience_displayName",
socialscience["displayName"],
)
for field in socialscience["fields"]:
if (
field["typeName"]
in self.__attr_import_dv_up_socialscience_fields_values
):
data[field["typeName"]] = field["value"]
elif field["typeName"] == "targetSampleSize":
data["targetSampleSize"] = {}
if "targetSampleActualSize" in field["value"]:
data["targetSampleSize"]["targetSampleActualSize"] = (
field["value"]["targetSampleActualSize"]["value"]
)
if "targetSampleSizeFormula" in field["value"]:
data["targetSampleSize"]["targetSampleSizeFormula"] = (
field["value"]["targetSampleSizeFormula"]["value"]
)
elif field["typeName"] == "socialScienceNotes":
data["socialScienceNotes"] = {}
if "socialScienceNotesType" in field["value"]:
data["socialScienceNotes"]["socialScienceNotesType"] = (
field["value"]["socialScienceNotesType"]["value"]
)
if "socialScienceNotesSubject" in field["value"]:
data["socialScienceNotes"][
"socialScienceNotesSubject"
] = field["value"]["socialScienceNotesSubject"]["value"]
if "socialScienceNotesText" in field["value"]:
data["socialScienceNotes"]["socialScienceNotesText"] = (
field["value"]["socialScienceNotesText"]["value"]
)
else:
print(
"Attribute {0} not valid for import (dv_up).".format(
field["typeName"]
)
)
else:
# TODO: Exception