Sha256: 282ad080b62d761c4d778330761e4ac8c2e1c97db5b3f4b97983501e299ad2c0
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
require 'oauth2' require 'hashie' module Rapidash module OAuthClient attr_accessor :secret, :uid, :access_token, :site, :extension def initialize(options) [:uid, :secret, :site].each do |key| if options[key] self.send("#{key.to_s}=".to_sym, options[key]) else raise ConfigurationError.new "Missing #{key} value" end end self.access_token = options[:access_token] if options[:access_token] end def request(verb, url, options = {}) if extension url = "#{url}.#{(extension)}" elsif self.class.respond_to?(:url_extension) && self.class.url_extension url = "#{url}.#{(self.class.url_extension)}" end response = oauth_access_token.send(verb.to_sym, "#{site}/#{url}", options) body = JSON.parse(response.body) if body.kind_of?(Hash) return Hashie::Mash.new(body) elsif body.kind_of?(Array) output = [] body.each do |el| output << Hashie::Mash.new(el) end return output end end def access_token_from_code(code, url) token = client.auth_code.get_token(code, :redirect_uri => url) self.access_token = token.token end private def client @oauth_client ||= ::OAuth2::Client.new(uid, secret, :site => site) end def oauth_access_token @oauth_access_token ||= ::OAuth2::AccessToken.new(client, access_token) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rapidash-0.0.5 | lib/rapidash/oauth_client.rb |