Sha256: 5f56591b0620cf4d8a6923377bab44acca17f59306787d65484a2008a069bda2
Contents?: true
Size: 1.84 KB
Versions: 1
Compression:
Stored size: 1.84 KB
Contents
module MangoPay module AuthorizationToken class Manager class << self def storage @@storage ||= StaticStorage.new end def storage= (storage) @@storage = storage end def get_token token = storage.get if token.nil? || token['timestamp'].nil? || token['timestamp'] <= Time.now token = MangoPay.request(:post, '/api/oauth/token', {}, {}, {}, Proc.new do |req| cfg = MangoPay.configuration req.basic_auth cfg.client_id, cfg.client_passphrase req.body = 'grant_type=client_credentials' end) token['timestamp'] = Time.now + token['expires_in'].to_i storage.store token end token end end end class StaticStorage def get @@token ||= nil end def store(token) @@token = token end end class FileStorage require 'yaml' @temp_dir def initialize(temp_dir = nil) @temp_dir = temp_dir || MangoPay.configuration.temp_dir if !@temp_dir raise "Path to temporary folder is not defined" end end def get begin f = File.open(file_path, File::RDONLY) f.flock(File::LOCK_SH) txt = f.read f.close YAML.load(txt) || nil rescue Errno::ENOENT nil end end def store(token) File.open(file_path, File::RDWR|File::CREAT, 0644) do |f| f.flock(File::LOCK_EX) f.truncate(0) f.rewind f.puts(YAML.dump(token)) end end def file_path File.join(@temp_dir, "MangoPay.AuthorizationToken.FileStore.tmp") end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mangopay-3.0.10 | lib/mangopay/authorization_token.rb |