Sha256: ed8a95f1f4910cd60a4b1c6a81576e3facc8a6688c48f0a0aa7570bd0e63ced0

Contents?: true

Size: 1.69 KB

Versions: 18

Compression:

Stored size: 1.69 KB

Contents

# Copyright 2013 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'json'

module Google
  class APIClient
    ##
    # Represents cached OAuth 2 tokens stored on local disk in a
    # JSON serialized file. Meant to resemble the serialized format
    # http://google-api-python-client.googlecode.com/hg/docs/epy/oauth2client.file.Storage-class.html
    #
    class FileStore

      attr_accessor :path

      ##
      # Initializes the FileStorage object.
      #
      # @param [String] path
      #    Path to the credentials file.
      def initialize(path)
        @path= path
      end

      ##
      # Attempt to read in credentials from the specified file.
      def load_credentials
        open(path, 'r') { |f| JSON.parse(f.read) }
      rescue
        nil
      end

      ##
      # Write the credentials to the specified file.
      #
      # @param [Signet::OAuth2::Client] authorization
      #    Optional authorization instance. If not provided, the authorization
      #    already associated with this instance will be written.
      def write_credentials(credentials_hash)
        open(self.path, 'w+') do |f|
          f.write(credentials_hash.to_json)
        end
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 3 rubygems

Version Path
arvados-google-api-client-0.8.7.9 lib/google/api_client/auth/storages/file_store.rb
arvados-google-api-client-0.8.7.8 lib/google/api_client/auth/storages/file_store.rb
arvados-google-api-client-0.8.7.7 lib/google/api_client/auth/storages/file_store.rb
arvados-google-api-client-0.8.7.6 lib/google/api_client/auth/storages/file_store.rb
arvados-google-api-client-0.8.7.5 lib/google/api_client/auth/storages/file_store.rb
arvados-google-api-client-0.8.7.4 lib/google/api_client/auth/storages/file_store.rb
arvados-google-api-client-0.8.7.3 lib/google/api_client/auth/storages/file_store.rb
arvados-google-api-client-0.8.7.2 lib/google/api_client/auth/storages/file_store.rb
cure-google-api-client-0.8.7.1 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.8.7 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.8.6 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.8.5 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.8.4 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.8.3 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.8.2 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.8.1.1 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.8.1 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.8.0 lib/google/api_client/auth/storages/file_store.rb