Module: OmniAI::Google::Credentials
- Defined in:
- lib/omniai/google/credentials.rb
Overview
Constant Summary collapse
- SCOPE =
%w[https://www.googleapis.com/auth/cloud-platform].join(",")
Class Method Summary collapse
- .detect ⇒ Google::Auth::ServiceAccountCredentials?
- .parse(value) ⇒ Google::Auth::ServiceAccountCredentials
Class Method Details
.detect ⇒ Google::Auth::ServiceAccountCredentials?
13 14 15 16 17 18 |
# File 'lib/omniai/google/credentials.rb', line 13 def self.detect case when ENV.key?("GOOGLE_CREDENTIALS_PATH") then parse(Pathname.new(ENV.fetch("GOOGLE_CREDENTIALS_PATH"))) when ENV.key?("GOOGLE_CREDENTIALS_JSON") then parse(StringIO.new(ENV.fetch("GOOGLE_CREDENTIALS_JSON"))) end end |
.parse(value) ⇒ Google::Auth::ServiceAccountCredentials
22 23 24 25 26 27 28 29 |
# File 'lib/omniai/google/credentials.rb', line 22 def self.parse(value) case value when ::Google::Auth::ServiceAccountCredentials then value when IO, StringIO then ::Google::Auth::ServiceAccountCredentials.make_creds(json_key_io: value, scope: SCOPE) when Pathname then parse(File.open(value)) when String then parse(StringIO.new(value)) end end |