Class: Google::Apis::Core::BaseService
- Inherits:
-
Object
- Object
- Google::Apis::Core::BaseService
- Includes:
- Logging
- Defined in:
- lib/google/apis/core/base_service.rb
Overview
Base service for all APIs. Not to be used directly.
Instance Attribute Summary collapse
-
#authorization ⇒ Signet::OAuth2::Client
OAuth2 credentials.
-
#base_path ⇒ Addressable::URI
Additional path prefix for all API methods.
-
#batch_path ⇒ Addressable::URI
Alternate path prefix for all batch methods.
-
#client ⇒ HTTPClient
Get the current HTTP client.
-
#client_options ⇒ Google::Apis::ClientOptions
General settings.
-
#request_options ⇒ Google::Apis::RequestOptions
Default options for all requests.
-
#root_url ⇒ Addressable::URI
Root URL (host/port) for the API.
-
#upload_path ⇒ Addressable::URI
Alternate path prefix for media uploads.
Instance Method Summary collapse
-
#batch(options = nil) {|self| ... }
Perform a batch request.
-
#batch_upload(options = nil) {|self| ... }
Perform a batch upload request.
-
#fetch_all(max: nil, items: :items, cache: true, response_page_token: :next_page_token) {|token, service| ... } ⇒ Enumerble
Executes a given query with paging, automatically retrieving additional pages as necessary.
-
#http(method, url, params: nil, body: nil, download_dest: nil, options: nil) {|result, err| ... } ⇒ String
Simple escape hatch for making API requests directly to a given URL.
-
#initialize(root_url, base_path) ⇒ BaseService
constructor
private
A new instance of BaseService.
Methods included from Logging
Constructor Details
#initialize(root_url, base_path) ⇒ BaseService
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of BaseService.
128 129 130 131 132 133 134 135 |
# File 'lib/google/apis/core/base_service.rb', line 128 def initialize(root_url, base_path) self.root_url = root_url self.base_path = base_path self.upload_path = "upload/#{base_path}" self.batch_path = 'batch' self. = Google::Apis::ClientOptions.default.dup self. = Google::Apis::RequestOptions.default.dup end |
Instance Attribute Details
#authorization ⇒ Signet::OAuth2::Client
Returns OAuth2 credentials.
140 141 142 |
# File 'lib/google/apis/core/base_service.rb', line 140 def () . = end |
#base_path ⇒ Addressable::URI
Additional path prefix for all API methods
101 102 103 |
# File 'lib/google/apis/core/base_service.rb', line 101 def base_path @base_path end |
#batch_path ⇒ Addressable::URI
Alternate path prefix for all batch methods
109 110 111 |
# File 'lib/google/apis/core/base_service.rb', line 109 def batch_path @batch_path end |
#client ⇒ HTTPClient
Get the current HTTP client
113 114 115 |
# File 'lib/google/apis/core/base_service.rb', line 113 def client @client end |
#client_options ⇒ Google::Apis::ClientOptions
General settings
117 118 119 |
# File 'lib/google/apis/core/base_service.rb', line 117 def @client_options end |
#request_options ⇒ Google::Apis::RequestOptions
Default options for all requests
121 122 123 |
# File 'lib/google/apis/core/base_service.rb', line 121 def @request_options end |
#root_url ⇒ Addressable::URI
Root URL (host/port) for the API
97 98 99 |
# File 'lib/google/apis/core/base_service.rb', line 97 def root_url @root_url end |
#upload_path ⇒ Addressable::URI
Alternate path prefix for media uploads
105 106 107 |
# File 'lib/google/apis/core/base_service.rb', line 105 def upload_path @upload_path end |
Instance Method Details
#batch(options = nil) {|self| ... }
This method returns an undefined value.
Perform a batch request. Calls made within the block are sent in a single network request to the server.
168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/google/apis/core/base_service.rb', line 168 def batch( = nil) batch_command = BatchCommand.new(:post, Addressable::URI.parse(root_url + batch_path)) batch_command. = .merge() apply_command_defaults(batch_command) begin start_batch(batch_command) yield self ensure end_batch end batch_command.execute(client) end |
#batch_upload(options = nil) {|self| ... }
This method returns an undefined value.
Perform a batch upload request. Calls made within the block are sent in a single network request to the server. Batch uploads are useful for uploading multiple small files. For larger files, use single requests which use a resumable upload protocol.
200 201 202 203 204 205 206 207 208 209 210 211 |
# File 'lib/google/apis/core/base_service.rb', line 200 def batch_upload( = nil) batch_command = BatchUploadCommand.new(:put, Addressable::URI.parse(root_url + upload_path)) batch_command. = .merge() apply_command_defaults(batch_command) begin start_batch(batch_command) yield self ensure end_batch end batch_command.execute(client) end |
#fetch_all(max: nil, items: :items, cache: true, response_page_token: :next_page_token) {|token, service| ... } ⇒ Enumerble
Executes a given query with paging, automatically retrieving additional pages as necessary. Requires a block that returns the result set of a page. The current page token is supplied as an argument to the block.
Note: The returned enumerable also contains a last_result
field
containing the full result of the last query executed.
281 282 283 284 |
# File 'lib/google/apis/core/base_service.rb', line 281 def fetch_all(max: nil, items: :items, cache: true, response_page_token: :next_page_token, &block) fail "fetch_all may not be used inside a batch" if batch? return PagedResults.new(self, max: max, items: items, cache: cache, response_page_token: response_page_token, &block) end |
#http(method, url, params: nil, body: nil, download_dest: nil, options: nil) {|result, err| ... } ⇒ String
Simple escape hatch for making API requests directly to a given URL. This is not intended to be used as a generic HTTP client and should be used only in cases where no service method exists (e.g. fetching an export link for a Google Drive file.)
243 244 245 246 247 248 249 250 251 252 253 |
# File 'lib/google/apis/core/base_service.rb', line 243 def http(method, url, params: nil, body: nil, download_dest: nil, options: nil, &block) if download_dest command = DownloadCommand.new(method, url, body: body) else command = HttpCommand.new(method, url, body: body) end command. = .merge() apply_command_defaults(command) command.query.merge(Hash(params)) execute_or_queue_command(command, &block) end |