Class: Morpheus::AuthInterface

Inherits:
APIClient
  • Object
show all
Defined in:
lib/morpheus/api/auth_interface.rb

Instance Method Summary collapse

Instance Method Details

#authorization_required?Boolean

no Authorization header is required

Returns:

  • (Boolean)


6
7
8
# File 'lib/morpheus/api/auth_interface.rb', line 6

def authorization_required?
  false
end

#login(username, password, use_client_id = nil) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/morpheus/api/auth_interface.rb', line 10

def (username, password, use_client_id=nil)
  if use_client_id
    self.client_id = use_client_id
  end
  @access_token, @refresh_token, @expires_at = nil, nil, nil
  url = "#{@base_url}/oauth/token"
  params = {grant_type: 'password', scope:'write', client_id: self.client_id, username: username}
  payload = {password: password}
  headers = { 'Content-Type' => 'application/x-www-form-urlencoded' }
  opts = {method: :post, url: url, headers: headers, params: params, payload: payload, timeout: 5}
  response = execute(opts)
  return response if @dry_run
  @access_token = response['access_token']
  @refresh_token = response['refresh_token']
  if response['expires_in'] != nil
    @expires_at = Time.now + response['expires_in']
  end
  return response
end

#logoutObject



51
52
53
54
55
56
57
# File 'lib/morpheus/api/auth_interface.rb', line 51

def logout()
  # super.logout()
  if @access_token
    # todo: expire the token
  end
  raise "#{self}.logout() is not yet implemented"
end

#use_refresh_token(refresh_token, use_client_id = nil) ⇒ Object

this regenerates the access_token and refresh_token



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/morpheus/api/auth_interface.rb', line 31

def use_refresh_token(refresh_token, use_client_id=nil)
  if use_client_id
    self.client_id = use_client_id
  end
  @access_token = nil
  url = "#{@base_url}/oauth/token"
  params = {grant_type: 'refresh_token', scope:'write', client_id: self.client_id}
  payload = {refresh_token: refresh_token}
  headers = { 'Content-Type' => 'application/x-www-form-urlencoded' }
  opts = {method: :post, url: url, headers: headers, params: params, payload: payload, timeout: 5}
  response = execute(opts)
  return response if @dry_run
  @access_token = response['access_token']
  @refresh_token = response['refresh_token']
  if response['expires_in'] != nil
    @expires_at = Time.now + response['expires_in']
  end
  return response
end