Sha256: d16c73d97df0d162c129f991d1626799aff4112fd96b64446ef9d7c1fd4a1b65
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 KB
Contents
module CloudAlly # Defines HTTP request methods module Authentication # Authorize to the CloudAlly portal and return access_token def auth(options = {}) params = access_token_params.merge(options) response = post("/auth", params) # return access_token process_token(response.body) end alias login auth # Return an access token from authorization def auth_refresh(token) params = { refreshToken: token } response = post("/auth/refresh", params) # return access_token process_token(response.body) end # Authorize to the partner portal and return access_token def auth_partner(options = {}) params = access_token_params.merge(options) response = post("/auth/partner", params) # return access_token process_token(response.body) end alias partner_login auth_partner private def access_token_params { email: username, password: password } end def process_token(response) at = nil CloudAlly.configure do |config| at = config.access_token = response["accessToken"] config.token_type = response["tokenType"] config.refresh_token = response["refreshToken"] config.token_expires = response["expiresIn"] end raise StandardError.new 'Could not find valid accessToken; response ' + response.to_s if at == '' || at.nil? at end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cloudally-0.1.1 | lib/cloudally/authentication.rb |