Module: Fog::Google::Shared
- Included in:
- Compute::Google::Mock, Compute::Google::Real, DNS::Google::Mock, DNS::Google::Real, Monitoring::Mock, Monitoring::Real, Pubsub::Mock, Pubsub::Real, Fog::Google::SQL::Mock, Fog::Google::SQL::Real, Storage::GoogleJSON::Mock, Storage::GoogleJSON::Real
- Defined in:
- lib/fog/google/shared.rb
Instance Attribute Summary collapse
-
#api_url ⇒ Object
readonly
Returns the value of attribute api_url.
-
#api_version ⇒ Object
readonly
Returns the value of attribute api_version.
-
#project ⇒ Object
readonly
Returns the value of attribute project.
Instance Method Summary collapse
-
#apply_client_options(service, options = {}) ⇒ void
Applies given options to the client instance.
-
#build_excon_response(body, status = 200) ⇒ Excon::Response
Builds an Excon response.
- #initialize_auth(options) ⇒ Object
-
#initialize_google_client(options) ⇒ Google::APIClient
Initializes the Google API Client.
-
#request(api_method, parameters, body_object = nil, media = nil) ⇒ Excon::Response
Executes a request and wraps it in a result object.
-
#shared_initialize(project, api_version, base_url) ⇒ void
Initializes shared attributes.
Instance Attribute Details
#api_url ⇒ Object (readonly)
Returns the value of attribute api_url.
6 7 8 |
# File 'lib/fog/google/shared.rb', line 6 def api_url @api_url end |
#api_version ⇒ Object (readonly)
Returns the value of attribute api_version.
6 7 8 |
# File 'lib/fog/google/shared.rb', line 6 def api_version @api_version end |
#project ⇒ Object (readonly)
Returns the value of attribute project.
6 7 8 |
# File 'lib/fog/google/shared.rb', line 6 def project @project end |
Instance Method Details
#apply_client_options(service, options = {}) ⇒ void
This method returns an undefined value.
Applies given options to the client instance
93 94 95 96 97 98 99 |
# File 'lib/fog/google/shared.rb', line 93 def (service, = {}) = [:google_client_options] return if .nil? || .empty? (service..members & .keys).each do |option| service.[option] = [option] end end |
#build_excon_response(body, status = 200) ⇒ Excon::Response
Builds an Excon response
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/fog/google/shared.rb', line 130 def build_excon_response(body, status = 200) response = Excon::Response.new(:body => body, :status => status) if body && body.key?("error") msg = "Google Cloud did not return an error message" if body["error"].is_a?(Hash) response.status = body["error"]["code"] if body["error"].key?("errors") msg = body["error"]["errors"].map { |error| error["message"] }.join(", ") elsif body["error"].key?("message") msg = body["error"]["message"] end elsif body["error"].is_a?(Array) msg = body["error"].map { |error| error["code"] }.join(", ") end case response.status when 404 raise Fog::Errors::NotFound.new(msg) else raise Fog::Errors::Error.new(msg) end end response end |
#initialize_auth(options) ⇒ Object
75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/fog/google/shared.rb', line 75 def initialize_auth() if [:google_json_key_location] || [:google_json_key_string] process_key_auth() elsif [:google_auth] [:google_auth] elsif [:google_application_default] process_application_default_auth() else process_fallback_auth() end end |
#initialize_google_client(options) ⇒ Google::APIClient
Initializes the Google API Client
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 |
# File 'lib/fog/google/shared.rb', line 38 def initialize_google_client() # NOTE: loaded here to avoid requiring this as a core Fog dependency begin # TODO: google-api-client is in gemspec now, re-assess if this initialization logic is still needed require "google/apis/monitoring_#{Fog::Google::Monitoring::GOOGLE_MONITORING_API_VERSION}" require "google/apis/compute_#{Fog::Compute::Google::GOOGLE_COMPUTE_API_VERSION}" require "google/apis/dns_#{Fog::DNS::Google::GOOGLE_DNS_API_VERSION}" require "google/apis/pubsub_#{Fog::Google::Pubsub::GOOGLE_PUBSUB_API_VERSION}" require "google/apis/sqladmin_#{Fog::Google::SQL::GOOGLE_SQL_API_VERSION}" require "google/apis/storage_#{Fog::Storage::GoogleJSON::GOOGLE_STORAGE_JSON_API_VERSION}" require "google/apis/iamcredentials_#{Fog::Storage::GoogleJSON::GOOGLE_STORAGE_JSON_IAM_API_VERSION}" require "googleauth" rescue LoadError => error Fog::Errors::Error.new("Please install the google-api-client (>= 0.9) gem before using this provider") raise error end () application_name = "fog" unless [:app_name].nil? application_name = "#{[:app_name]}/#{[:app_version] || '0.0.0'} fog" end ::Google::Apis::ClientOptions.default.application_name = application_name ::Google::Apis::ClientOptions.default.application_version = Fog::Google::VERSION if ENV["DEBUG"] ::Google::Apis.logger = ::Logger.new(::STDERR) ::Google::Apis.logger.level = ::Logger::DEBUG end initialize_auth().tap do |auth| ::Google::Apis::RequestOptions.default. = auth end end |
#request(api_method, parameters, body_object = nil, media = nil) ⇒ Excon::Response
Executes a request and wraps it in a result object
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/fog/google/shared.rb', line 108 def request(api_method, parameters, body_object = nil, media = nil) client_parms = { :api_method => api_method, :parameters => parameters } # The Google API complains when given null values for enums, so just don't pass it any null fields # XXX It may still balk if we have a nested object, e.g.: # {:a_field => "string", :a_nested_field => { :an_empty_nested_field => nil } } client_parms[:body_object] = body_object.reject { |_k, v| v.nil? } if body_object client_parms[:media] = media if media result = @client.execute(client_parms) build_excon_response(result.body.nil? || result.body.empty? ? nil : Fog::JSON.decode(result.body), result.status) end |
#shared_initialize(project, api_version, base_url) ⇒ void
This method returns an undefined value.
Initializes shared attributes
15 16 17 18 19 20 21 22 |
# File 'lib/fog/google/shared.rb', line 15 def shared_initialize(project, api_version, base_url) @project = project @api_version = api_version @api_url = base_url + api_version + "/projects/" # google-cloud-env allows us to figure out which GCP runtime we're running in and query metadata # e.g. whether we're running in GCE/GKE/AppEngine or what region the instance is running in @google_cloud_env = ::Google::Cloud::Env.get end |