@@ -15,45 +15,13 @@ require 'faraday/utils'
15
15
require 'webrick'
16
16
require 'google/api_client/version'
17
17
require 'google/api_client'
18
+ require 'google/api_client/auth/installed_app'
18
19
19
20
ARGV . unshift ( '--help' ) if ARGV . empty?
20
21
21
22
module Google
22
23
class APIClient
23
24
class CLI
24
- # Used for oauth login
25
- class OAuthVerifierServlet < WEBrick ::HTTPServlet ::AbstractServlet
26
- attr_reader :verifier
27
-
28
- def do_GET ( request , response )
29
- $verifier ||= Addressable ::URI . unencode_component (
30
- request . request_uri . to_s [ /\? .*oauth_verifier=([^&$]+)(&|$)/ , 1 ] ||
31
- request . request_uri . to_s [ /\? .*code=([^&$]+)(&|$)/ , 1 ]
32
- )
33
- response . status = WEBrick ::HTTPStatus ::RC_ACCEPTED
34
- # This javascript will auto-close the tab after the
35
- # verifier is obtained.
36
- response . body = <<-HTML
37
- < html >
38
- < head >
39
- < script >
40
- function closeWindow ( ) {
41
- window . open ( '' , '_self' , '' ) ;
42
- window . close ( ) ;
43
- }
44
- setTimeout ( closeWindow , 10 ) ;
45
- </ script >
46
- </ head >
47
- < body >
48
- You may close this window.
49
- </ body >
50
- </ html >
51
- HTML
52
- # Eww, hack!
53
- server = self . instance_variable_get ( '@server' )
54
- server . stop if server
55
- end
56
- end
57
25
58
26
# Initialize with default parameter values
59
27
def initialize ( argv )
164
132
165
133
opts . separator (
166
134
"\n Available commands:\n " +
167
- " oauth-1-login Log a user into an API with OAuth 1.0a\n " +
168
- " oauth-2-login Log a user into an API with OAuth 2.0 d10\n " +
135
+ " oauth-2-login Log a user into an API with OAuth 2.0\n " +
169
136
" list List the methods available for an API\n " +
170
137
" execute Execute a method on the API\n " +
171
138
" irb Start an interactive client session"
184
151
end
185
152
186
153
def client
187
- require 'signet/oauth_1/client'
188
154
require 'yaml'
189
- require 'irb'
190
155
config_file = File . expand_path ( '~/.google-api.yaml' )
191
156
authorization = nil
192
157
if File . exist? ( config_file )
@@ -198,19 +163,14 @@ HTML
198
163
authorization = config [ "mechanism" ] . to_sym
199
164
end
200
165
201
- client = Google ::APIClient . new ( :authorization => authorization )
166
+ client = Google ::APIClient . new (
167
+ :application_name => 'Ruby CLI' ,
168
+ :application_version => Google ::APIClient ::VERSION ::STRING ,
169
+ :authorization => authorization )
202
170
203
171
case authorization
204
172
when :oauth_1
205
- if client . authorization &&
206
- !client . authorization . kind_of? ( Signet ::OAuth1 ::Client )
207
- STDERR . puts (
208
- "Unexpected authorization mechanism: " +
209
- "#{ client . authorization . class } "
210
- )
211
- exit ( 1 )
212
- end
213
- config = open ( config_file , 'r' ) { |file | YAML . load ( file . read ) }
173
+ STDERR . puts ( 'OAuth 1 is deprecated. Please reauthorize with OAuth 2.' )
214
174
client . authorization . client_credential_key =
215
175
config [ "client_credential_key" ]
216
176
client . authorization . client_credential_secret =
@@ -220,15 +180,6 @@ HTML
220
180
client . authorization . token_credential_secret =
221
181
config [ "token_credential_secret" ]
222
182
when :oauth_2
223
- if client . authorization &&
224
- !client . authorization . kind_of? ( Signet ::OAuth2 ::Client )
225
- STDERR . puts (
226
- "Unexpected authorization mechanism: " +
227
- "#{ client . authorization . class } "
228
- )
229
- exit ( 1 )
230
- end
231
- config = open ( config_file , 'r' ) { |file | YAML . load ( file . read ) }
232
183
client . authorization . scope = options [ :scope ]
233
184
client . authorization . client_id = config [ "client_id" ]
234
185
client . authorization . client_secret = config [ "client_secret" ]
@@ -268,84 +219,14 @@ HTML
268
219
end
269
220
270
221
COMMANDS = [
271
- :oauth_1_login ,
272
222
:oauth_2_login ,
273
223
:list ,
274
224
:execute ,
275
225
:irb ,
276
- :fuzz
277
226
]
278
227
279
- def oauth_1_login
280
- require 'signet/oauth_1/client'
281
- require 'launchy'
282
- require 'yaml'
283
- if options [ :client_credential_key ] &&
284
- options [ :client_credential_secret ]
285
- config = {
286
- "mechanism" => "oauth_1" ,
287
- "scope" => options [ :scope ] ,
288
- "client_credential_key" => options [ :client_credential_key ] ,
289
- "client_credential_secret" => options [ :client_credential_secret ] ,
290
- "token_credential_key" => nil ,
291
- "token_credential_secret" => nil
292
- }
293
- config_file = File . expand_path ( '~/.google-api.yaml' )
294
- open ( config_file , 'w' ) { |file | file . write ( YAML . dump ( config ) ) }
295
- exit ( 0 )
296
- else
297
- $verifier = nil
298
- server = WEBrick ::HTTPServer . new (
299
- :Port => OAUTH_SERVER_PORT ,
300
- :Logger => WEBrick ::Log . new ,
301
- :AccessLog => WEBrick ::Log . new
302
- )
303
- server . logger . level = 0
304
- trap ( "INT" ) { server . shutdown }
305
-
306
- server . mount ( "/" , OAuthVerifierServlet )
307
-
308
- oauth_client = Signet ::OAuth1 ::Client . new (
309
- :temporary_credential_uri =>
310
- 'https://www.google.com/accounts/OAuthGetRequestToken' ,
311
- :authorization_uri =>
312
- 'https://www.google.com/accounts/OAuthAuthorizeToken' ,
313
- :token_credential_uri =>
314
- 'https://www.google.com/accounts/OAuthGetAccessToken' ,
315
- :client_credential_key => 'anonymous' ,
316
- :client_credential_secret => 'anonymous' ,
317
- :callback => "http://localhost:#{ OAUTH_SERVER_PORT } /"
318
- )
319
- oauth_client . fetch_temporary_credential! ( :additional_parameters => {
320
- :scope => options [ :scope ] ,
321
- :xoauth_displayname => 'Google API Client'
322
- } )
323
-
324
- # Launch browser
325
- Launchy ::Browser . run ( oauth_client . authorization_uri . to_s )
326
-
327
- server . start
328
- oauth_client . fetch_token_credential! ( :verifier => $verifier)
329
- config = {
330
- "scope" => options [ :scope ] ,
331
- "client_credential_key" =>
332
- oauth_client . client_credential_key ,
333
- "client_credential_secret" =>
334
- oauth_client . client_credential_secret ,
335
- "token_credential_key" =>
336
- oauth_client . token_credential_key ,
337
- "token_credential_secret" =>
338
- oauth_client . token_credential_secret
339
- }
340
- config_file = File . expand_path ( '~/.google-api.yaml' )
341
- open ( config_file , 'w' ) { |file | file . write ( YAML . dump ( config ) ) }
342
- exit ( 0 )
343
- end
344
- end
345
-
346
228
def oauth_2_login
347
229
require 'signet/oauth_2/client'
348
- require 'launchy'
349
230
require 'yaml'
350
231
if !options [ :client_credential_key ] ||
351
232
!options [ :client_credential_secret ]
@@ -365,45 +246,26 @@ HTML
365
246
open ( config_file , 'w' ) { |file | file . write ( YAML . dump ( config ) ) }
366
247
exit ( 0 )
367
248
else
368
- $verifier = nil
369
- logger = WEBrick ::Log . new
370
- logger . level = 0
371
- server = WEBrick ::HTTPServer . new (
372
- :Port => OAUTH_SERVER_PORT ,
373
- :Logger => logger ,
374
- :AccessLog => logger
375
- )
376
- trap ( "INT" ) { server . shutdown }
377
-
378
- server . mount ( "/" , OAuthVerifierServlet )
379
-
380
- oauth_client = Signet ::OAuth2 ::Client . new (
381
- :authorization_uri =>
382
- 'https://www.google.com/accounts/o8/oauth2/authorization' ,
383
- :token_credential_uri =>
384
- 'https://www.google.com/accounts/o8/oauth2/token' ,
249
+ flow = Google ::APIClient ::InstalledAppFlow . new (
250
+ :port => OAUTH_SERVER_PORT ,
385
251
:client_id => options [ :client_credential_key ] ,
386
252
:client_secret => options [ :client_credential_secret ] ,
387
- :redirect_uri => "http://localhost:#{ OAUTH_SERVER_PORT } /" ,
388
253
:scope => options [ :scope ]
389
254
)
390
-
391
- # Launch browser
392
- Launchy . open ( oauth_client . authorization_uri . to_s )
393
-
394
- server . start
395
- oauth_client . code = $verifier
396
- oauth_client . fetch_access_token!
397
- config = {
398
- "mechanism" => "oauth_2" ,
399
- "scope" => options [ :scope ] ,
400
- "client_id" => oauth_client . client_id ,
401
- "client_secret" => oauth_client . client_secret ,
402
- "access_token" => oauth_client . access_token ,
403
- "refresh_token" => oauth_client . refresh_token
404
- }
405
- config_file = File . expand_path ( '~/.google-api.yaml' )
406
- open ( config_file , 'w' ) { |file | file . write ( YAML . dump ( config ) ) }
255
+
256
+ oauth_client = flow . authorize
257
+ if oauth_client
258
+ config = {
259
+ "mechanism" => "oauth_2" ,
260
+ "scope" => options [ :scope ] ,
261
+ "client_id" => oauth_client . client_id ,
262
+ "client_secret" => oauth_client . client_secret ,
263
+ "access_token" => oauth_client . access_token ,
264
+ "refresh_token" => oauth_client . refresh_token
265
+ }
266
+ config_file = File . expand_path ( '~/.google-api.yaml' )
267
+ open ( config_file , 'w' ) { |file | file . write ( YAML . dump ( config ) ) }
268
+ end
407
269
exit ( 0 )
408
270
end
409
271
end
414
276
STDERR . puts ( 'No API name supplied.' )
415
277
exit ( 1 )
416
278
end
417
- client = Google ::APIClient . new ( :authorization => nil )
279
+ # client = Google::APIClient.new(:authorization => nil)
418
280
if options [ :discovery_uri ]
419
281
if options [ :api ] && options [ :version ]
420
282
client . register_discovery_uri (
@@ -517,16 +379,6 @@ HTML
517
379
IRB . start ( __FILE__ )
518
380
end
519
381
520
- def fuzz
521
- STDERR . puts ( 'API fuzzing not yet supported.' )
522
- if self . rpcname
523
- # Fuzz just one method
524
- else
525
- # Fuzz the entire API
526
- end
527
- exit ( 1 )
528
- end
529
-
530
382
def help
531
383
puts self . parser
532
384
exit ( 0 )
0 commit comments