uc3-dmp-id 0.0.69 → 0.0.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/uc3-dmp-id/helper.rb +9 -3
- data/lib/uc3-dmp-id/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0ca5545af2c686ec3c72c6d87ee6035f2c32d15e4e02e88a2242405d989c723
|
|
4
|
+
data.tar.gz: dc8abcfa7e6f83b0f4c65701595d57f6dfa8a3ba59049b3a90814eaa08036c35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1396221ec09ad597c60b0227263589ef4ab5dbec2a0522ccfd264d87d4c7125bb69d0953be1faa3a3bb1cf0e9ad0a10472d1933501edb7d54a8fdd137017d7c
|
|
7
|
+
data.tar.gz: 00b202a1a166b2ad2a334503991e20d470e0ed445e5635a199c244c5622e2d3f8bbbf13da07989b2958625904f13c3fd067a96ff5eaec6d304630b723f5886f6
|
data/lib/uc3-dmp-id/helper.rb
CHANGED
|
@@ -191,9 +191,15 @@ module Uc3DmpId
|
|
|
191
191
|
json.fetch('dmp_id', {})['identifier'].nil?
|
|
192
192
|
|
|
193
193
|
# Record the original Provenance system's identifier
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
194
|
+
# If we are currently seeding records for existing DMP IDs, then use the :dmproadmap_links
|
|
195
|
+
if provenance.fetch('seedingWithLiveDmpIds', false).to_s.downcase == 'true' &&
|
|
196
|
+
!annotated.fetch('dmproadmap_links', {})['get'].nil?
|
|
197
|
+
annotated['dmphub_provenance_identifier'] = annotated.fetch('dmproadmap_links', {})['get']
|
|
198
|
+
else
|
|
199
|
+
annotated['dmphub_provenance_identifier'] = format_provenance_id(
|
|
200
|
+
provenance: provenance, value: json.fetch('dmp_id', {})['identifier']
|
|
201
|
+
)
|
|
202
|
+
end
|
|
197
203
|
annotated
|
|
198
204
|
end
|
|
199
205
|
|
data/lib/uc3-dmp-id/version.rb
CHANGED