Sha256: dbc85721a3c8684fabdbb17286a11c1a21d8fbd494c4d730e331260a920a0b49

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

require 'oauth2'
require 'hashie'

module Rapidash
  module OAuthClient

    attr_accessor :secret, :uid, :access_token, :site

    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 = {})
      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.2 lib/rapidash/oauth_client.rb