Module: OmniAI::Google::Credentials

Defined in:
lib/omniai/google/credentials.rb

Overview

Examples:

OmniAI::Google::Credentials.parse(Google::Auth::ServiceAccountCredentials.make_creds(...))
OmniAI::Google::Credentials.parse(File.open("./credentials.json"))
OmniAI::Google::Credentials.parse("./credentials.json")

Constant Summary collapse

SCOPE =
%w[https://www.googleapis.com/auth/cloud-platform].join(",")

Class Method Summary collapse

Class Method Details

.detectGoogle::Auth::ServiceAccountCredentials?

Returns:

  • (Google::Auth::ServiceAccountCredentials, nil)


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

Parameters:

  • value (Google::Auth::ServiceAccountCredentials, IO, Pathname, String nil)

Returns:

  • (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