uc3-dmp-cognito 0.0.4 → 0.0.6

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: 6bb0fb76241b9ffb1134b96274f3dde699c70ceac29bbc4a7216727635c62c9f
4
- data.tar.gz: b6325d8c3aff12cbbb0e6a46617fe8572457f45af3a64dcc56ad6616fc3769c7
3
+ metadata.gz: 2a0f0a88d3609e7f110d0fd61bc4e40f40249f434bcd6744bb8b035e29e2c689
4
+ data.tar.gz: f020b461f3cfc76732a472819850b43ff2987c7b14bc4308c5c992d30a2f27e9
5
5
  SHA512:
6
- metadata.gz: 71f399677c43f090bb91c8dd3012eb58455e24a22c64d54ce445810e9e8becc0c8b206fdd1ce45926c646acc934501e412607ccf71f89b9c92c66b3bddf65eaa
7
- data.tar.gz: c5f1b48df773c58b630f1b0b2aa30bc09dd65e2e52c300e801f5390f71db347fc3a7239db8d28cca8e3294e596ef2d241cc003de4f9a61ae1a51b2a5ad8cc2f4
6
+ metadata.gz: fa1427c6c31afcd0416e7fe1fef90d764a66c843e420f620086c480b05c19c1a9f51547537492e2abc28817a15f7462b700094c3308a005e71fa86dd62214abb
7
+ data.tar.gz: '0867424c8e0197afd500e98c11f0782c93847a29e5f0b96f13ab53a2f77aefb778f03c01d0c545f9d77c204aaa6bf834b6cc197da9943a4a1a2b69b8eeb5231c'
@@ -11,19 +11,14 @@ module Uc3DmpCognito
11
11
  class << self
12
12
  # Fetch the name of the client from the client id provided.
13
13
  # DMP Provenance names match the Cognito client names
14
- def get_client_name(client_id:, debug: false)
15
-
16
- puts '----------------------------------'
17
- puts "GEM ENV:"
18
- puts ENV.inspect
19
- puts ENV['COGNITO_USER_POOL_ID']
20
- puts '----------------------------------'
21
-
14
+ def get_client_name(client_id:, logger: nil)
22
15
  user_pool_id = ENV.fetch('COGNITO_USER_POOL_ID', nil)
23
16
  raise ClientError, MSG_MISSING_POOL if user_pool_id.nil?
24
17
 
25
18
  client = Aws::CognitoIdentityProvider::Client.new(region: ENV.fetch('AWS_REGION', nil))
26
19
  resp = client.describe_user_pool_client({ user_pool_id: user_pool_id, client_id: client_id })
20
+ msg = "Searching for Client ID: #{client_id} in Cognito User Pool: #{user_pool_id} - found"
21
+ logger.debug(message: "#{msg} '#{resp&.user_pool_client&.client_name&.downcase}'") if logger.respond_to?(:debug)
27
22
  resp&.user_pool_client&.client_name&.downcase
28
23
  rescue Aws::Errors::ServiceError => e
29
24
  raise ClientError, format(MSG_COGNITO_ERROR, msg: e.message, trace: e.backtrace)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uc3DmpCognito
4
- VERSION = '0.0.4'
4
+ VERSION = '0.0.6'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uc3-dmp-cognito
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.6
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-06-26 00:00:00.000000000 Z
11
+ date: 2023-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json