module Restforce::Concerns::Authentication

def authenticate!

Public: Force an authentication
def authenticate!
  unless authentication_middleware
    raise AuthenticationError, 'No authentication middleware present'
  end
  middleware = authentication_middleware.new nil, self, options
  middleware.authenticate!
end

def authentication_middleware

Internal: Determines what middleware will be used based on the options provided
def authentication_middleware
  if username_password?
    Restforce::Middleware::Authentication::Password
  elsif oauth_refresh?
    Restforce::Middleware::Authentication::Token
  elsif jwt?
    Restforce::Middleware::Authentication::JWTBearer
  elsif client_credential?
    Restforce::Middleware::Authentication::ClientCredential
  end
end

def client_credential?

authentication.
Internal: Returns true if client credential flow should be used for
def client_credential?
  options[:client_id] && options[:client_secret]
end

def jwt?

authentication.
Internal: Returns true if jwt bearer token flow should be used for
def jwt?
  options[:jwt_key] &&
    options[:username] &&
    options[:client_id]
end

def oauth_refresh?

authentication.
Internal: Returns true if oauth token refresh flow should be used for
def oauth_refresh?
  options[:refresh_token] &&
    options[:client_id] &&
    options[:client_secret]
end

def username_password?

authentication.
Internal: Returns true if username/password (autonomous) flow should be used for
def username_password?
  options[:username] &&
    options[:password] &&
    options[:client_id] &&
    options[:client_secret]
end