1 # Copyright 2013 Google Inc.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
15 require 'signet/oauth_2/client'
16 require_relative 'storage'
17 require_relative 'storages/file_store'
23 # Represents cached OAuth 2 tokens stored on local disk in a
24 # JSON serialized file. Meant to resemble the serialized format
25 # http://google-api-python-client.googlecode.com/hg/docs/epy/oauth2client.file.Storage-class.html
28 # Use {Google::APIClient::Storage} and {Google::APIClient::FileStore} instead
32 attr_accessor :storage,
37 store = Google::APIClient::FileStore.new(@path)
38 @storage = Google::APIClient::Storage.new(store)
51 # Write the credentials to the specified file.
53 # @param [Signet::OAuth2::Client] authorization
54 # Optional authorization instance. If not provided, the authorization
55 # already associated with this instance will be written.
56 def write_credentials(auth=nil)
57 self.authorization = auth unless auth.nil?
58 storage.write_credentials(self.authorization)