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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 437282826ba1a248fba0a130a73c37cbf246d36eb749f4b1b6fd263f9d813627
4
- data.tar.gz: 3bd9a8a0df98e894fc662098c4eff770423d6907c9ab7c91e12b31333c1e0d54
3
+ metadata.gz: b352cf3c52493540a1f8089e292d1eb5a24e178330796c9d8548ea2fd04a555e
4
+ data.tar.gz: 592c57a9d91d6853b5ebf4bf10502f316a31f40c660e9525c83f6f31ab6ec8a4
5
5
  SHA512:
6
- metadata.gz: b72c25c00ea9924de683842c38a0b7a166b5c95bab7b31f213277449052e5a0dced589a1c7adab473770893bdedc15267e0984a4103eea77a6770e9ec2a07ee1
7
- data.tar.gz: 56264812471dacbce3be68cd530a8cdd4d733f0d2c15f49eff5e5e4b4cad52bc689f89a39cd66749faea2fc5e6a7c4e5592cddddd4c974187ffa7ed49867e87a
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(data_element)
12
- if !data_element.instance_of?(ProtocolDataElement)
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 << data_element.to_hash
15
+ @protocolDataElement << element.to_hash
16
16
  end
17
17
 
18
18
  # Produce a hash with symbolized keys
@@ -15,7 +15,7 @@ module Dina
15
15
  @address = {}
16
16
  end
17
17
 
18
- def add_address(address)
18
+ def add_address(address:)
19
19
  if !address.instance_of?(Address)
20
20
  raise PropertyValueInvalid, "Address must be of type Address."
21
21
  end
@@ -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: {
@@ -40,7 +40,7 @@ module Dina
40
40
  #
41
41
  # @param code [String] a code
42
42
  # @return object [Object] a Collection object
43
- def self.find_by_code(code)
43
+ def self.find_by_code(code:)
44
44
  where(code: code).all
45
45
  end
46
46
 
@@ -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
- class FileConnection
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)
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
- def run(request_method, path, params: nil, headers: {}, body: nil)
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
@@ -1,7 +1,6 @@
1
1
  require_rel '../models/base_model'
2
2
 
3
3
  module Dina
4
-
5
4
  class SearchConnection
6
5
 
7
6
  attr_reader :faraday
@@ -69,5 +68,4 @@ module Dina
69
68
  end
70
69
 
71
70
  end
72
-
73
71
  end
data/lib/dina/version.rb CHANGED
@@ -2,8 +2,8 @@ module Dina
2
2
  class Version
3
3
 
4
4
  MAJOR = 3
5
- MINOR = 1
6
- PATCH = 2
5
+ MINOR = 2
6
+ PATCH = 0
7
7
  BUILD = 0
8
8
 
9
9
  def self.version
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.1.2.0
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: 2024-11-13 00:00:00.000000000 Z
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.2'
233
+ version: '3.1'
234
234
  required_rubygems_version: !ruby/object:Gem::Requirement
235
235
  requirements:
236
236
  - - ">="