uc3-dmp-id 0.0.73 → 0.0.74
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/creator.rb +3 -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: aafd3e027681cfa713fad3c48471dae7a192cd844546e67a55cec59ae0c2e1d8
|
|
4
|
+
data.tar.gz: deda47068b080ccbfddd35091cde8626bde787110ae5a4df6bb204f0b248ff89
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 578c94e8fc0da1b8bb36b163eca0cdd656fc1ae63cbdb02f4be104a6746d137f83b5dc6cd36424549c8f227eba20b69f7058710fb188a400fa546db28a52e08a
|
|
7
|
+
data.tar.gz: fc2e39ea16382559b2eac7459528e7cf241623dd9256497088f4c000819dda5d491a80a7f555ed6e357a510d85228884aa842c38b5175e64c15c0666dfb2df26
|
data/lib/uc3-dmp-id/creator.rb
CHANGED
|
@@ -57,9 +57,9 @@ module Uc3DmpId
|
|
|
57
57
|
seed_id = json.fetch('dmp', {})['dmproadmap_external_system_identifier']
|
|
58
58
|
|
|
59
59
|
# If we are seeding already registered DMP IDs from the Provenance system, then return the original DMP ID
|
|
60
|
-
return seed_id if existing.fetch('type', 'other') == 'url' &&
|
|
61
|
-
|
|
62
|
-
|
|
60
|
+
return seed_id.gsub(%r{https?://}, '') if existing.fetch('type', 'other') == 'url' &&
|
|
61
|
+
!seed_id.nil? &&
|
|
62
|
+
provenance.fetch('seedingWithLiveDmpIds', false).to_s.downcase == 'true'
|
|
63
63
|
|
|
64
64
|
#Generate a new DMP ID
|
|
65
65
|
dmp_id = ''
|
data/lib/uc3-dmp-id/version.rb
CHANGED