Class: Morpheus::AuthInterface

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

Constant Summary

Constants inherited from APIClient

Morpheus::APIClient::CLIENT_ID

Instance Attribute Summary

Attributes inherited from APIClient

#client_id

Instance Method Summary collapse

Methods inherited from APIClient

#account_groups, #accounts, #activity, #appliance_settings, #approvals, #apps, #archive_buckets, #archive_files, #auth, #backup_jobs, #backup_settings, #backups, #billing, #blueprints, #budgets, #catalog, #catalog_item_types, #certificate_types, #certificates, #cloud_datastores, #cloud_folders, #cloud_policies, #cloud_resource_pools, #clouds, #clusters, #common_interface_options, #containers, #cypher, #dashboard, #datastores, #default_content_type, #default_timeout, #deploy, #deployments, #doc, #dry, #dry_run, #environments, #execute, #execute_schedules, #execution_request, #file_copy_request, #forgot, #group_policies, #groups, #guidance, #health, #image_builder, #initialize, #inspect, #instance_types, #instances, #integration_types, #integrations, #invoice_line_items, #invoices, #jobs, #key_pairs, #library_cluster_layouts, #library_container_scripts, #library_container_templates, #library_container_types, #library_container_upgrades, #library_instance_types, #library_layouts, #library_spec_template_types, #library_spec_templates, #license, #load_balancers, #log_settings, #logged_in?, #logs, #monitoring, #network_domain_records, #network_domains, #network_groups, #network_pool_ips, #network_pool_servers, #network_pools, #network_proxies, #network_routers, #network_security_servers, #network_services, #network_types, #networks, #old_cypher, #option_type_lists, #option_types, #options, #packages, #ping, #policies, #power_schedules, #price_sets, #prices, #processes, #projects, #provision_types, #provisioning_license_types, #provisioning_licenses, #provisioning_settings, #reports, #roles, #search, #security_group_rules, #security_groups, #server_types, #servers, #service_plans, #set_ssl_verification_enabled, #setopts, #setup, #ssl_verification_enabled?, #storage_providers, #subnet_types, #subnets, #task_sets, #tasks, #to_s, #url, #usage, #user_groups, #user_settings, #user_sources, #users, #vdi, #vdi_allocations, #vdi_apps, #vdi_gateways, #vdi_pools, #virtual_images, #whitelabel_settings, #whoami, #wiki, #withopts

Constructor Details

This class inherits a constructor from Morpheus::APIClient

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