dina 3.1.2.0 → 3.2.0.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/components/agent_role.rb +2 -2
- data/lib/dina/components/determination.rb +1 -1
- data/lib/dina/components/georeference_assertion.rb +1 -1
- data/lib/dina/components/protocol_data.rb +3 -3
- data/lib/dina/components/shipment.rb +1 -1
- data/lib/dina/models/agent/person.rb +2 -2
- data/lib/dina/models/material_sample/collection.rb +1 -1
- data/lib/dina/models/material_sample/organism.rb +1 -0
- data/lib/dina/models/object_store/file.rb +2 -1
- data/lib/dina/models/object_store/file_connection.rb +25 -14
- data/lib/dina/search/search_connection.rb +0 -2
- data/lib/dina/version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b352cf3c52493540a1f8089e292d1eb5a24e178330796c9d8548ea2fd04a555e
|
4
|
+
data.tar.gz: 592c57a9d91d6853b5ebf4bf10502f316a31f40c660e9525c83f6f31ab6ec8a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42f07765799ef8bfdf9d04b01b2fea2623f41ded4298e42ab7e53996ba8ed4d30d625c2a23160b4bab7cfe9e63c16498ad04d54d0d7428d4be907489a8a9405c
|
7
|
+
data.tar.gz: 72d908349ce9f90f07f52135fe44fcb2f2f960bc87cd2acb1f81233508bac9206593568a0a0adf2534586995b0386bfb6dcb79ad6547714c1ac35441a0b9f3c6
|
@@ -10,12 +10,12 @@ module Dina
|
|
10
10
|
@roles = []
|
11
11
|
end
|
12
12
|
|
13
|
-
def add_agent(id)
|
13
|
+
def add_agent(id:)
|
14
14
|
raise PropertyValueInvalid, "Agent must be a UUID." if !id.is_uuid?
|
15
15
|
@agent << id
|
16
16
|
end
|
17
17
|
|
18
|
-
def add_role(role)
|
18
|
+
def add_role(role:)
|
19
19
|
@roles << role
|
20
20
|
end
|
21
21
|
|
@@ -53,7 +53,7 @@ module Dina
|
|
53
53
|
# Add a determiner as UUID to the array of determiner
|
54
54
|
#
|
55
55
|
# @param id [String] a UUID for a determiner
|
56
|
-
def add_determiner(id)
|
56
|
+
def add_determiner(id:)
|
57
57
|
raise PropertyValueInvalid, "Determiner must be a UUID." if !id.is_uuid?
|
58
58
|
@determiner << id
|
59
59
|
end
|
@@ -21,7 +21,7 @@ module Dina
|
|
21
21
|
# Add a georeferencedBy as UUID to the array
|
22
22
|
#
|
23
23
|
# @param id [String] a UUID for a georeferencedBy
|
24
|
-
def add_georeferencedBy(id)
|
24
|
+
def add_georeferencedBy(id:)
|
25
25
|
raise PropertyValueInvalid, "georeferencedBy must be a UUID." if !id.is_uuid?
|
26
26
|
@georeferencedBy << id
|
27
27
|
end
|
@@ -8,11 +8,11 @@ module Dina
|
|
8
8
|
@protocolDataElement = []
|
9
9
|
end
|
10
10
|
|
11
|
-
def add_data_element(
|
12
|
-
if !
|
11
|
+
def add_data_element(element:)
|
12
|
+
if !element.instance_of?(ProtocolDataElement)
|
13
13
|
raise PropertyValueInvalid, "Data Element must be a ProtocolDataElement."
|
14
14
|
end
|
15
|
-
@protocolDataElement <<
|
15
|
+
@protocolDataElement << element.to_hash
|
16
16
|
end
|
17
17
|
|
18
18
|
# Produce a hash with symbolized keys
|
@@ -31,7 +31,7 @@ module Dina
|
|
31
31
|
#
|
32
32
|
# @param email [String] an email address
|
33
33
|
# @return array [Array] an array of Person objects
|
34
|
-
def self.find_by_email(email)
|
34
|
+
def self.find_by_email(email:)
|
35
35
|
where("email": email).all
|
36
36
|
end
|
37
37
|
|
@@ -39,7 +39,7 @@ module Dina
|
|
39
39
|
#
|
40
40
|
# @param name [String] any portion of a person's name
|
41
41
|
# @return array [Array] an array of Person objects, ordered by relevance
|
42
|
-
def self.search_by_name(name)
|
42
|
+
def self.search_by_name(name:)
|
43
43
|
payload = {
|
44
44
|
query: {
|
45
45
|
multi_match: {
|
@@ -9,6 +9,7 @@ module Dina
|
|
9
9
|
property :remarks, type: :string
|
10
10
|
property :isTarget, type: :boolean
|
11
11
|
property :managedAttributes, type: :hash
|
12
|
+
property :dwcVernacularName, type: :string
|
12
13
|
property :determination, type: :array, default: []
|
13
14
|
property :createdBy, type: :string
|
14
15
|
property :createdOn, type: :time
|
@@ -2,10 +2,11 @@ require_rel '../base_model'
|
|
2
2
|
require_rel 'file_connection'
|
3
3
|
|
4
4
|
module Dina
|
5
|
-
|
6
5
|
class File < BaseModel
|
7
6
|
self.connection_class = FileConnection
|
8
7
|
|
8
|
+
custom_endpoint :download, on: :collection, request_method: :get
|
9
|
+
|
9
10
|
property :id, type: :string, default: SecureRandom.uuid_v7
|
10
11
|
property :group, type: :string
|
11
12
|
property :filePath, type: :string
|
@@ -1,22 +1,32 @@
|
|
1
1
|
require_rel '../base_model'
|
2
2
|
|
3
3
|
module Dina
|
4
|
+
class FileConnection
|
4
5
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
builder.adapter(*adapter_options)
|
15
|
-
end
|
16
|
-
yield(self) if block_given?
|
6
|
+
def initialize(options = {})
|
7
|
+
site = options.fetch(:site)
|
8
|
+
connection_options = options.slice(:proxy, :ssl, :request, :headers, :params)
|
9
|
+
adapter_options = Array(options.fetch(:adapter, Faraday.default_adapter))
|
10
|
+
|
11
|
+
@faraday = Faraday.new(site, connection_options) do |builder|
|
12
|
+
builder.request :multipart
|
13
|
+
builder.response :json
|
14
|
+
builder.adapter(*adapter_options)
|
17
15
|
end
|
18
|
-
|
19
|
-
|
16
|
+
yield(self) if block_given?
|
17
|
+
end
|
18
|
+
|
19
|
+
def run(request_method, path, params: nil, headers: {}, body: nil)
|
20
|
+
if request_method == :get && path == "file/download"
|
21
|
+
path = "file" + "/#{params[:group]}/#{params[:fileId]}"
|
22
|
+
if params[:isDerivative]
|
23
|
+
path = "file" + "/#{params[:group]}/derivative/#{params[:fileId]}"
|
24
|
+
end
|
25
|
+
headers[:content_type] = "application/octet-stream"
|
26
|
+
response = @faraday.run_request(request_method, path, body, headers) do |request|
|
27
|
+
end
|
28
|
+
response
|
29
|
+
else
|
20
30
|
path = path + "/#{body[:data]["attributes"]["group"].downcase}"
|
21
31
|
if body[:data]["attributes"].key?("isDerivative")
|
22
32
|
path = path + "/derivative"
|
@@ -47,4 +57,5 @@ module Dina
|
|
47
57
|
end
|
48
58
|
end
|
49
59
|
|
60
|
+
end
|
50
61
|
end
|
data/lib/dina/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dina
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David P. Shorthouse
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-03-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json_api_client
|
@@ -230,7 +230,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
230
230
|
requirements:
|
231
231
|
- - ">="
|
232
232
|
- !ruby/object:Gem::Version
|
233
|
-
version: '3.
|
233
|
+
version: '3.1'
|
234
234
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
235
235
|
requirements:
|
236
236
|
- - ">="
|