gp-ruby-client 0.1.1 → 0.2.0

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
  SHA1:
3
- metadata.gz: 561123effe59497e101e045b0a9357f86778d9a3
4
- data.tar.gz: a3f8bccc0cdcd129a2f0887b5c3b2736d668b2c8
3
+ metadata.gz: 6c015def523f8f5b042d248552563b6d747a3abe
4
+ data.tar.gz: e76b774ec48bfa43d0192f56c1e523319004aedb
5
5
  SHA512:
6
- metadata.gz: 69db20dfef746f04106c603acc78853b9a6e02020cbeb310cd8499052d4082753279409c214d7b3290bedda1b4c1db47fd4ea0031c4c198a9759b173ae717f03
7
- data.tar.gz: 9d7222d165f6131b8d50db6df5a74da09157c31f2f953727a0018e0ca442398a5cfe3328999fcf8c2924b6a8507ccebaa184291b7add4f2da7be71d4aeb6e5bd
6
+ metadata.gz: 472bd77b6a4e72d45e426eb39c0ce5d75144c2cdd2decb70a562b87e1a4be5aa7c7498a3954a88af7623fcbaefac039b17ab6dc21b9632566f71ccaffcc7606a
7
+ data.tar.gz: 6f29eb94f4b2790fcd0c77381a2f859dd73e2a674731a53f16f3baeb8cc268c78cb14b863cbe374ce66fb6ce2570b983fd0a4f919dc9588458f720ea6483245b
@@ -44,8 +44,8 @@ module GP
44
44
  @@just_started = true
45
45
  @@use_service = true
46
46
 
47
- def initialize(bundle_id)
48
- @@bundle_id = bundle_id
47
+ def initialize(bundle_id, srvc_account=ServiceAccount.new)
48
+ @@bundle_id = bundle_id
49
49
 
50
50
  if @@use_service && (Time.now - @@cache_control.get_last_accessed_time >= @@cache_control.get_ttl || @@just_started)
51
51
  @@just_started = false
@@ -54,7 +54,7 @@ module GP
54
54
  backend = {}
55
55
  I18n.backend = I18n::Backend::Chain.new(I18n::Backend::KeyValue.new(backend), I18n.backend)
56
56
 
57
- @@service_account = ServiceAccount.new
57
+ @@service_account = srvc_account
58
58
  if @@service_account.nil?
59
59
  raise "No valid service account"
60
60
  end
@@ -91,14 +91,17 @@ class ServiceAccount
91
91
 
92
92
  def initialize(url_string = "", user_id = "", pwd = "", instance_id = "", api_key="", credsFilePath = "")
93
93
 
94
- if !url_string.empty? && !user_id.empty? && !pwd.empty? && !instance_id.empty?
94
+ if !url_string.nil? && !url_string.empty? &&
95
+ !user_id.nil? && !user_id.empty? &&
96
+ !pwd.nil? && !pwd.empty? &&
97
+ !instance_id.nil? && !instance_id.empty?
95
98
  @url_string = url_string
96
99
  @user_id = user_id
97
100
  @pwd = pwd
98
101
  @instance_id = instance_id
99
102
  @iam_enabled = false
100
103
 
101
- elsif !url_string.empty? && !instance_id.empty? && !api_key.empty?
104
+ elsif !url_string.nil? && !url_string.empty? && !instance_id.nil? && !instance_id.empty? && !api_key.nil? && !api_key.empty?
102
105
  @url_string = url_string
103
106
  @instance_id = instance_id
104
107
  @api_key = api_key
@@ -110,14 +113,18 @@ class ServiceAccount
110
113
  account = get_service_account_via_vcap_service
111
114
  end
112
115
  if account.nil? && !credsFilePath.empty?
113
- credsFile = File.open credsFilePath
114
- creds = JSON.parse(credsFile)
115
- if !creds.nil
116
- if creds.has_key?("credentials")
117
- creds=creds["credentials"]
118
- end
119
- account = extractCredsFromJson(creds)
116
+ File.open(credsFilePath) do |credsFile|
117
+ creds = JSON.parse(credsFile.read)
118
+ if !creds.nil?
119
+ if creds.has_key?("credentials")
120
+ creds=creds["credentials"]
120
121
  end
122
+ account = extractCredsFromJson(creds)
123
+ if account.nil?
124
+ raise "Couldn't create a service account from file"
125
+ end
126
+ end
127
+ end
121
128
  end
122
129
  if account.nil?
123
130
  raise "Couldn't create a service account"
@@ -196,7 +203,7 @@ private
196
203
  return
197
204
  end
198
205
 
199
- iam_enabled=api_key.nil?false:true
206
+ iam_enabled=api_key.nil??false:true
200
207
 
201
208
  return [url_string, user_id, pwd, instance_id, api_key, iam_enabled]
202
209
  end
@@ -213,7 +220,7 @@ private
213
220
 
214
221
  app_name = ""
215
222
  json_vcap_services.each do |key, value|
216
- if (key =~ APP_NAME_REGEX or key.equals?(APP_NAME))
223
+ if (key =~ APP_NAME_REGEX or APP_NAME.eql? key)
217
224
  app_name = key
218
225
  break
219
226
  end
@@ -239,7 +246,7 @@ private
239
246
  if (user_id.nil? || pwd.nil?) && api_key.nil?
240
247
  return
241
248
  end
242
- iam_enabled=api_key.nil?false:true
249
+ iam_enabled=api_key.nil??false:true
243
250
  return [url, user_id, pwd, instance_id, api_key, iam_enabled]
244
251
  end
245
252
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gp-ruby-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Visaahan Anandarajah
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-09 00:00:00.000000000 Z
11
+ date: 2019-05-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Ruby SDK for Globalization Pipeline on IBM Cloud
14
14
  email: icuintl@us.ibm.com
@@ -24,7 +24,9 @@ files:
24
24
  homepage: https://github.com/IBM-Cloud/gp-ruby-client
25
25
  licenses:
26
26
  - Apache-2.0
27
- metadata: {}
27
+ metadata:
28
+ documentation_uri: https://github.com/IBM-Cloud/gp-ruby-client
29
+ source_code_uri: https://github.com/IBM-Cloud/gp-ruby-client
28
30
  post_install_message:
29
31
  rdoc_options: []
30
32
  require_paths: