Sha256: 3a00c7e053ca642014da921abd45c23e27e2513c96ba6af07188de53d726e3af
Contents?: true
Size: 1.28 KB
Versions: 2
Compression:
Stored size: 1.28 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 = {}) url = "#{url}.#{extension}" if extension 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rapidash-0.0.4 | lib/rapidash/oauth_client.rb |
rapidash-0.0.3 | lib/rapidash/oauth_client.rb |