uc3-dmp-external-api 0.0.8 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2818002466c6dd5a14095e41cdf7873c4c4269e6a8871d644425cdda70be60c
4
- data.tar.gz: e34734bc3242a271c954dc5225056f2b706607e6474db57fc50803234c5e5c34
3
+ metadata.gz: 3dcc09638fbcc4da99904246c145c4c8622e416960aea9a9807fd55c50d8cacf
4
+ data.tar.gz: ec892e6e99e5f4b85db275b2acbb0ad300b7697d9e59215edd6715a01aaa3581
5
5
  SHA512:
6
- metadata.gz: c4bb1dff30d186bf54ea5c5b65b040a7d8b32245ca226c87eeca77285c6ecb2dda81ea111131f218666c90d1dacb12ea30d8e0ffff06ab016b79c877feb4a68e
7
- data.tar.gz: 184e1113f18ffd67622364b201eb1ab54e1f3b0a5b413a52bf88c5111e3f0185a16a725c771fb9c5d57463c6664af3c4636af636d50fc67afad3de0445529f21
6
+ metadata.gz: 88efda8dbe66252392fe49b10d80fda286251db33ad6a659a93c4b500d3518ebb6298f0e89c57f017902bc65ab5386d9b055cd1c1cbf7f6b2332264eca07b43d
7
+ data.tar.gz: 79695db7a217a21e5b155e07340fc6719ffab6e1a0c2b6bf02ae6227d8da70d825245c73c5d84d58b69ae86f2c1e76c3effd521cb8317afe2859e6a3aebc874b
@@ -18,11 +18,11 @@ module Uc3DmpExternalApi
18
18
  class << self
19
19
  # Call the specified URL using the specified HTTP method, body and headers
20
20
  # rubocop:disable Metrics/AbcSize
21
- def call(url:, method: :get, body: '', additional_headers: {}, debug: false)
21
+ def call(url:, method: :get, body: '', basic_auth: {}, additional_headers: {}, logger: nil)
22
22
  uri = URI(url)
23
23
  # Skip the body if we are doing a get
24
24
  body = nil if method.to_sym == :get
25
- opts = _options(body: body, additional_headers: additional_headers, debug: debug)
25
+ opts = _options(body: body, basic_auth: basic_auth, additional_headers: additional_headers, logger: logger)
26
26
  resp = HTTParty.send(method.to_sym, uri, opts)
27
27
 
28
28
  if resp.code != 200
@@ -62,17 +62,18 @@ module Uc3DmpExternalApi
62
62
  end
63
63
 
64
64
  # Prepare the HTTParty gem options
65
- def _options(body:, additional_headers: {}, debug: false)
65
+ def _options(body:, additional_headers: {}, logger: nil)
66
66
  hdrs = _headers(additional_headers: additional_headers)
67
67
  opts = {
68
68
  headers: hdrs,
69
69
  follow_redirects: true,
70
70
  limit: 6
71
71
  }
72
+ opts[:basic_auth] = basic_auth if basic_auth.is_a?(Hash)
72
73
  # If the body is not already JSON and we intend to send JSON, convert it
73
74
  opts[:body] = body.is_a?(Hash) && hdrs['Content-Type'] == 'application/json' ? body.to_json : body
74
75
  # If debug is enabled then tap into the HTTParty gem's debug option
75
- opts[:debug_output] = $stdout if debug
76
+ opts[:debug_output] = $stdout if logger&.level == 'debug'
76
77
  opts
77
78
  end
78
79
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uc3DmpExternalApi
4
- VERSION = '0.0.8'
4
+ VERSION = '0.0.10'
5
5
  end
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uc3-dmp-external-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Riley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-04 00:00:00.000000000 Z
11
+ date: 2023-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: active_record_simple_execute
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: 0.9.1
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: 0.9.1
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: aws-sdk-sns
29
15
  requirement: !ruby/object:Gem::Requirement