class MyJohnDeere::AccessToken

Attributes

oauth_access_token[RW]

Public Class Methods

get_request_token() click to toggle source

Use this if you need to get the verifier code. You'll need to use this along with the request_token.authorize_url to have the user sign in and provide you with a verifier code. Makes a request to get the request_token.

# File lib/myjohndeere/access_token.rb, line 18
def self.get_request_token()
  consumer = self.oauth_consumer(
    authorize_url: MyJohnDeere::AUTHORIZE_URL,
    http_method: :get
  )
  return consumer.get_request_token({})
end
new(options = {}) click to toggle source
# File lib/myjohndeere/access_token.rb, line 26
def initialize(options = {})
  request_token_options = [:request_token_token, :request_token_secret, :verifier_code]
  oauth_token_options = [:oauth_access_token_token, :oauth_access_token_secret]
  oauth_consumer = self.class.oauth_consumer(debug_output: options[:debug_output])
  if request_token_options.all? { |i| options.key?(i) } then
    request_token = OAuth::RequestToken.from_hash(oauth_consumer, {
      oauth_token: options[:request_token_token],
      oauth_token_secret: options[:request_token_secret]
    })
    self.oauth_access_token = request_token.get_access_token(oauth_verifier: options[:verifier_code])
  elsif oauth_token_options.all? { |i| options.key?(i) } then
    self.oauth_access_token = OAuth::AccessToken.from_hash(
      oauth_consumer, 
      {
        oauth_token: options[:oauth_access_token_token],
        oauth_token_secret: options[:oauth_access_token_secret],
      }
    )
  else
    raise ArgumentError.new("You must specify either request token options [#{request_token_options.join(',')}] or [#{oauth_token_options.join(',')}]")
  end
end
oauth_consumer(options = {}) click to toggle source
# File lib/myjohndeere/access_token.rb, line 5
def self.oauth_consumer(options = {})
  OAuth::Consumer.new(
    MyJohnDeere.configuration.app_id, 
    MyJohnDeere.configuration.shared_secret,
    options.merge(
      site: MyJohnDeere.configuration.endpoint,
      header: {Accept: MyJohnDeere::JSON_CONTENT_HEADER_VALUE}
      ))
end

Public Instance Methods

execute_request(method, path, options = {}) click to toggle source
# File lib/myjohndeere/access_token.rb, line 57
def execute_request(method, path, options = {})
  path, headers, body = Util.build_path_headers_and_body(method, path,
    headers: options[:headers],
    body: options[:body],
    etag: options[:etag])
  response =  nil
  MyJohnDeere.logger.debug("Sending request with body: #{body}\n headers: #{headers}")
  if REQUEST_METHODS_TO_PUT_PARAMS_IN_URL.include?(method)
    response = self.oauth_access_token.send(method, path, headers)
  else
    # permit the body through since it'll be in the
    response = self.oauth_access_token.send(method, path, body, headers)
  end
  MyJohnDeere.logger.info("JohnDeere token response: #{response.body}")
  Util.handle_response_error_codes(response)
  return Response.new(response)
end
secret() click to toggle source
# File lib/myjohndeere/access_token.rb, line 53
def secret
  return oauth_access_token.nil? ? nil : oauth_access_token.secret
end
token() click to toggle source
# File lib/myjohndeere/access_token.rb, line 49
def token
  return oauth_access_token.nil? ? nil : oauth_access_token.token
end