- Notifications
You must be signed in to change notification settings - Fork 878
/
Copy pathbase_cli.rb
95 lines (80 loc) · 3.13 KB
/
base_cli.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require'googleauth'
require'googleauth/stores/file_token_store'
require'fileutils'
require'thor'
require'os'
# Base command line module for samples. Provides authorization support,
# either using application default credentials or user authorization
# depending on the use case.
classBaseCli < Thor
includeThor::Actions
OOB_URI='urn:ietf:wg:oauth:2.0:oob'
class_option:user,:type=>:string
class_option:api_key,:type=>:string
no_commandsdo
# Returns the path to the client_secrets.json file.
defclient_secrets_path
returnENV['GOOGLE_CLIENT_SECRETS']ifENV.has_key?('GOOGLE_CLIENT_SECRETS')
returnwell_known_path_for('client_secrets.json')
end
# Returns the path to the token store.
deftoken_store_path
returnENV['GOOGLE_CREDENTIAL_STORE']ifENV.has_key?('GOOGLE_CREDENTIAL_STORE')
returnwell_known_path_for('credentials.yaml')
end
# Builds a path to a file in $HOME/.config/google (or %APPDATA%/google,
# on Windows)
defwell_known_path_for(file)
ifOS.windows?
dir=ENV.fetch('HOME'){ENV['APPDATA']}
File.join(dir,'google',file)
else
File.join(ENV['HOME'],'.config','google',file)
end
end
# Returns application credentials for the given scope.
defapplication_credentials_for(scope)
Google::Auth.get_application_default(scope)
end
# Returns user credentials for the given scope. Requests authorization
# if required.
defuser_credentials_for(scope)
FileUtils.mkdir_p(File.dirname(token_store_path))
ifENV['GOOGLE_CLIENT_ID']
client_id=Google::Auth::ClientId.new(ENV['GOOGLE_CLIENT_ID'],ENV['GOOGLE_CLIENT_SECRET'])
else
client_id=Google::Auth::ClientId.from_file(client_secrets_path)
end
token_store=Google::Auth::Stores::FileTokenStore.new(:file=>token_store_path)
authorizer=Google::Auth::UserAuthorizer.new(client_id,scope,token_store)
user_id=options[:user] || 'default'
credentials=authorizer.get_credentials(user_id)
ifcredentials.nil?
url=authorizer.get_authorization_url(base_url: OOB_URI)
say"Open the following URL in your browser and authorize the application."
sayurl
code=ask"Enter the authorization code:"
credentials=authorizer.get_and_store_credentials_from_code(
user_id: user_id,code: code,base_url: OOB_URI)
end
credentials
end
# Gets the API key of the client
defapi_key
ENV['GOOGLE_API_KEY'] || options[:api_key]
end
end
end