dina 1.0.6.0 → 1.0.7.0
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/dina/models/base_model.rb +1 -1
- data/lib/dina/models/material_sample/collecting_event.rb +12 -0
- data/lib/dina/utils/validator.rb +9 -0
- data/lib/dina/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 761a480e5d017a1d0d4600cad5adbcb6a0461ca78750a588edb0082676ba6621
|
4
|
+
data.tar.gz: f049320abf3e40cf1fdc0a8fa3b600687cd57980c7fade955672d66767d0189f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 245a9196b2a2b2e243d505007ad8e57dacf1db31695d8c1cfdb40b7e0c7565409147eab25ef87bff0004bf1b4b7f93b6234061e2b3348e83695a3f8f50fb7024
|
7
|
+
data.tar.gz: d3d5e3aabe72117b5b3235ca6a28ed6829991945ff161e5ae78c60a8b7f56a81e2444903445f084afb35bfc37c159ed19d3fcdc813e648601ee65f3f6cb03919
|
@@ -21,7 +21,7 @@ module Dina
|
|
21
21
|
Dina.config.endpoint_url + "/" + endpoint_path
|
22
22
|
end
|
23
23
|
|
24
|
-
# injects
|
24
|
+
# injects keycloak bearer token with all json_api_client calls
|
25
25
|
def self.custom_headers
|
26
26
|
{ content_type: "application/vnd.api+json", authorization: Dina.header }
|
27
27
|
end
|
@@ -70,6 +70,18 @@ module Dina
|
|
70
70
|
if self.geographicPlaceNameSource.nil?
|
71
71
|
self.geographicPlaceNameSourceDetail = nil
|
72
72
|
end
|
73
|
+
if self.dwcMinimumDepthInMeters && !Validator.valid_depth_elevation(value: self.dwcMinimumDepthInMeters)
|
74
|
+
raise PropertyValueInvalid, "#{self.class} is invalid. Accepted value for dwcMinimumDepthInMeters must have no more than two decimal points and be less than or equal to 15000."
|
75
|
+
end
|
76
|
+
if self.dwcMaximumDepthInMeters && !Validator.valid_depth_elevation(value: self.dwcMaximumDepthInMeters)
|
77
|
+
raise PropertyValueInvalid, "#{self.class} is invalid. Accepted value for dwcMaximumDepthInMeters must have no more than two decimal points and be less than or equal to 15000."
|
78
|
+
end
|
79
|
+
if self.dwcMinimumElevationInMeters && !Validator.valid_depth_elevation(value: self.dwcMinimumElevationInMeters)
|
80
|
+
raise PropertyValueInvalid, "#{self.class} is invalid. Accepted value for dwcMinimumElevationInMeters must have no more than two decimal points and be less than or equal to 15000."
|
81
|
+
end
|
82
|
+
if self.dwcMaximumElevationInMeters && !Validator.valid_depth_elevation(value: self.dwcMaximumElevationInMeters)
|
83
|
+
raise PropertyValueInvalid, "#{self.class} is invalid. Accepted value for dwcMaximumElevationInMeters must have no more than two decimal points and be less than or equal to 15000."
|
84
|
+
end
|
73
85
|
super
|
74
86
|
end
|
75
87
|
|
data/lib/dina/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dina
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David P. Shorthouse
|
8
|
+
- Julia Douglas Freitas
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2023-
|
12
|
+
date: 2023-08-21 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: json_api_client
|
@@ -207,6 +208,7 @@ files:
|
|
207
208
|
- lib/dina/utils/identifier_type.rb
|
208
209
|
- lib/dina/utils/multi_lingual_description.rb
|
209
210
|
- lib/dina/utils/multi_lingual_title.rb
|
211
|
+
- lib/dina/utils/validator.rb
|
210
212
|
- lib/dina/version.rb
|
211
213
|
homepage: https://github.com/dshorthouse/dina
|
212
214
|
licenses:
|