uc3-dmp-id 0.0.78 → 0.0.80
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/updater.rb +3 -0
- 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: 49be29fe52616c95e8cb9a58221caf8ae2931a418a019f874e3c1ea311b8487a
|
4
|
+
data.tar.gz: 73643d8ac5c0058c554fb4679ace24e200dc97d12ac4a5a1d5d32725e259118d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1afdda10f4f785f5b9e4b2ace0851ca431ef7e91d88d16e98901f704e00a3d286e8febe161be736cf2f3576e6d5fe2b04d1ede420231bde5bcedaf17c1775170
|
7
|
+
data.tar.gz: 630b9efacc9bfdf7f52a620f6f29cf7e4452783ef153cf2e34b1aeb590fc2a99f13bb94805ecd34dddfc4fa32c7eb3c4a4869da0e851bcd7b8b316d4fa39b844
|
data/lib/uc3-dmp-id/updater.rb
CHANGED
@@ -13,6 +13,7 @@ module Uc3DmpId
|
|
13
13
|
raise UpdaterError, MSG_DMP_INVALID_DMP_ID unless p_key.is_a?(String) && !p_key.strip.empty?
|
14
14
|
|
15
15
|
dmp = Helper.parse_json(json: json)
|
16
|
+
p_key = Helper.append_pk_prefix(p_key: p_key)
|
16
17
|
errs = _updateable?(provenance: provenance, p_key: p_key, json: dmp)
|
17
18
|
|
18
19
|
puts "Updateable? #{errs}"
|
@@ -83,6 +84,8 @@ puts new_version
|
|
83
84
|
errs = Validator.validate(mode: 'author', json: json)
|
84
85
|
return errs.join(', ') if errs.is_a?(Array) && errs.any? && errs.first != Validator::MSG_VALID_JSON
|
85
86
|
|
87
|
+
puts "Provenance: #{provenance['PK']}, DMP_ID to PK #{Helper.dmp_id_to_pk(json: json.fetch('dmp_id', {}))} == P_KEY: #{p_key}"
|
88
|
+
|
86
89
|
# Fail if the provenance is not defined
|
87
90
|
return [MSG_DMP_FORBIDDEN] unless provenance.is_a?(Hash) && !provenance['PK'].nil?
|
88
91
|
|
data/lib/uc3-dmp-id/version.rb
CHANGED