Sha256: d85735c7b9bba92dca76c0ce807fa9580960d2d81315cc8decad795ada86a485

Contents?: true

Size: 1.59 KB

Versions: 194

Compression:

Stored size: 1.59 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
    #
    # @deprecated Use google-auth-library-ruby instead
    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 [Hash] credentials_hash
      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

194 entries across 194 versions & 4 rubygems

Version Path
google-api-client-0.30.9 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.30.8 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.30.7 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.30.6 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.30.5 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.30.4 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.30.3 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.30.2 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.30.1 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.30.0 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.29.2 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.29.1 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.29.0 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.28.7 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.28.6 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.28.5 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.28.4 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.28.3 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.28.2 lib/google/api_client/auth/storages/file_store.rb
google-api-client-0.28.1 lib/google/api_client/auth/storages/file_store.rb