Sha256: 0554055f740844991b5a001695ddf20c3bc19c280695111968566f8bf60823d6
Contents?: true
Size: 1.42 KB
Versions: 5
Compression:
Stored size: 1.42 KB
Contents
require 'yao/client' module Yao class Token def self.issue(cli, auth_info) t = new(auth_info) t.reflesh(cli) t end def initialize(auth_info, token_data=nil) @auth_info = auth_info @endpoints = {} end attr_accessor :auth_info, :token, :issued_at, :expire_at, :endpoints alias expires expire_at alias to_s token def register(token_data) @token = token_data["id"] @issued_at = Time.parse(token_data["issued_at"]).localtime @expire_at = Time.parse(token_data["expires"]).localtime end def expired? return true unless self.expire_at Time.now >= self.expire_at end def reflesh(cli) @endpoints.clear res = cli.post('/v2.0/tokens') do |req| req.body = auth_info.to_json req.headers['Content-Type'] = 'application/json' end body = res.body["access"] register(body["token"]) register_endpoints(body["serviceCatalog"]) self end def register_endpoints(_endpoints) return unless _endpoints _endpoints.each do |endpoint_data| key = endpoint_data["type"] value = if d = endpoint_data["endpoints"].first d["publicURL"] else nil end if value @endpoints[key] = value end end Yao.default_client.register_endpoints(@endpoints, token: self) end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
yao-0.0.6 | lib/yao/token.rb |
yao-0.0.5 | lib/yao/token.rb |
yao-0.0.4 | lib/yao/token.rb |
yao-0.0.3 | lib/yao/token.rb |
yao-0.0.2 | lib/yao/token.rb |