dina 3.2.1.0 → 3.2.2.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: 2eda00f62a4b5a9ef520e5c2ed2a253861a9ce38d1d43f96989d87ca170ffc91
4
- data.tar.gz: ac9c14b964f24f478cf52bb5157b0c0b70102573dc234c821c56717d0ba52470
3
+ metadata.gz: d0b2bc9a37fbfb05ffba522a500727b1361ff36a651fe018ff6028bf73893a9c
4
+ data.tar.gz: b9b1108e417033274c77f455f2253dca0c4144703e76b56c1293f55dfaae18e6
5
5
  SHA512:
6
- metadata.gz: f1417c9d2bbdc048d03173d7fd6f11fc0a373ef072dcf2e921c41befbc31459904a55537f8a28a0f7388ff5735d035cc3199486a7b115cb23660ad8737c3bffe
7
- data.tar.gz: 928d1b4c29320ae094a69156c3637b2791acd81ab39b019571ad3aa75ea94e56b865d36c40831bf636266ccb5622ce4fe9ac384f7663e8712fa525b58d4880dd
6
+ metadata.gz: 5f8055e4d8a07358bb29536f6b0e14d589a73fce0072d637a5ed536e26eb13d641130fb3b7f024884502c9c0bdaba32811ac49055a0779e2d3ddeab0ff6772e1
7
+ data.tar.gz: d696ba8f509b8841207e532784e889a9a4ccb6b098607c2567bc7c727384ba703e40db9349edc59397e08cbdc112f609f2939e51ac397a121f00a13694c7e6af
@@ -18,23 +18,13 @@ module Dina
18
18
 
19
19
  def run(request_method, path, params: nil, headers: {}, body: nil)
20
20
  if request_method == :get && path == "file/download"
21
- path = "file" + "/#{params[:group]}/#{params[:fileId]}"
21
+ path = "file" + "/#{params[:group].downcase}/#{params[:fileIdentifier]}"
22
22
  if params[:isDerivative]
23
- path = "file" + "/#{params[:group]}/derivative/#{params[:fileId]}"
23
+ path = "file" + "/#{params[:group].downcase}/derivative/#{params[:fileIdentifier]}"
24
24
  end
25
25
  headers[:content_type] = "application/octet-stream"
26
-
27
-
28
26
  response = @faraday.run_request(request_method, path, body, headers) do |request|
29
27
  end
30
- response.body["meta"] = {}
31
- response.body["errors"] = []
32
- response.body["data"] = {
33
- "id" => params[:fileId],
34
- "type" => "file",
35
- "relationships" => {},
36
- "attributes" => response.headers
37
- }
38
28
  response
39
29
  else
40
30
  path = path + "/#{body[:data]["attributes"]["group"].downcase}"
data/lib/dina/version.rb CHANGED
@@ -3,7 +3,7 @@ module Dina
3
3
 
4
4
  MAJOR = 3
5
5
  MINOR = 2
6
- PATCH = 1
6
+ PATCH = 2
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.2.1.0
4
+ version: 3.2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David P. Shorthouse