module PaylocityWebService::Authentication

Public Instance Methods

access_token() click to toggle source
# File lib/paylocity_web_service/authentication.rb, line 7
def access_token
  token = PaylocityWebService::Cache.read(access_token_cache_key)

  if token.nil?
    refresh_token
  else
    token
  end
end
access_token_cache_key() click to toggle source
# File lib/paylocity_web_service/authentication.rb, line 36
def access_token_cache_key
  'access_token_cache_key'
end
basic_auth_token() click to toggle source
# File lib/paylocity_web_service/authentication.rb, line 40
def basic_auth_token
  secret_value = if client_secret.is_a?(Proc)
                   client_secret.call
                 else
                   client_secret
                 end
  Base64.strict_encode64("#{ client_id }:#{ secret_value }")
end
refresh_token() click to toggle source
# File lib/paylocity_web_service/authentication.rb, line 17
def refresh_token
  resp = Faraday.post(endpoint + '/IdentityServer/connect/token') do |req|
    req.body = {
      grant_type: 'client_credentials',
      scope:      'WebLinkAPI'
    }
    req.headers = {
      'Content-Type':   'application/x-www-form-urlencoded',
      'Authorization':  "Basic #{ basic_auth_token }"
    }
  end


  body = JSON.parse(resp.body)
  token, expires_in = body['access_token'], body['expires_in']
  PaylocityWebService::Cache.write(access_token_cache_key, token, expires_in)
  token
end