Class: Aspera::Cli::Plugins::Orchestrator

Inherits:
BasicAuth show all
Defined in:
lib/aspera/cli/plugins/orchestrator.rb

Constant Summary collapse

ACTIONS =
i[health info workflow plugins processes].freeze

Constants inherited from Base

Base::ALL_OPS, Base::GLOBAL_OPS, Base::INSTANCE_OPS, Base::MAX_ITEMS, Base::MAX_PAGES, Base::REGEX_LOOKUP_ID_BY_FIELD

Instance Attribute Summary

Attributes inherited from Base

#context

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BasicAuth

#basic_auth_api, #basic_auth_params, declare_options

Methods inherited from Base

#add_manual_header, #config, declare_options, #do_bulk_operation, #entity_execute, #formatter, #instance_identifier, #list_entities_limit_offset_total_count, #lookup_entity_by_field, #options, #persistency, #query_read_delete, #transfer, #value_create_modify

Constructor Details

#initialize(**_) ⇒ Orchestrator

Returns a new instance of Orchestrator.



56
57
58
59
60
61
62
63
64
# File 'lib/aspera/cli/plugins/orchestrator.rb', line 56

def initialize(**_)
  super
  @api_orch = nil
  options.declare(:result, "Specify result value as: 'work_step:parameter'")
  options.declare(:synchronous, 'Wait for completion', values: :bool, default: :no)
  options.declare(:ret_style, 'How return type is requested in api', values: i[header arg ext], default: :arg)
  options.declare(:auth_style, 'Authentication type', values: i[arg_pass head_basic apikey], default: :head_basic)
  options.parse_options!
end

Class Method Details

.detect(address_or_url) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/aspera/cli/plugins/orchestrator.rb', line 18

def detect(address_or_url)
  address_or_url = "https://#{address_or_url}" unless address_or_url.match?(%r{^[a-z]{1,6}://})
  urls = [address_or_url]
  urls.push("#{address_or_url}#{STANDARD_PATH}") unless address_or_url.end_with?(STANDARD_PATH)
  error = nil
  urls.each do |base_url|
    next unless base_url.match?('https?://')
    api = Rest.new(base_url: base_url)
    result = api.call(operation: 'GET', subpath: TEST_ENDPOINT, headers: {'Accept' => Rest::MIME_JSON}, query: {format: :json})
    next unless result[:data]['remote_orchestrator_info']
    url = result[:http].uri.to_s
    return {
      version: result[:data]['remote_orchestrator_info']['orchestrator-version'],
      url:     url[0..url.index(TEST_ENDPOINT) - 2]
    }
  rescue StandardError => e
    error = e
    Log.log.debug{"detect error: #{e}"}
  end
  raise error if error
  return
end

Instance Method Details

#execute_actionObject



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/aspera/cli/plugins/orchestrator.rb', line 99

def execute_action
  auth_params =
    case options.get_option(:auth_style, mandatory: true)
    when :arg_pass
      {
        type:      :url,
        url_query: {
          'login'    => options.get_option(:username, mandatory: true),
          'password' => options.get_option(:password, mandatory: true)
        }
      }
    when :head_basic
      {
        type:     :basic,
        username: options.get_option(:username, mandatory: true),
        password: options.get_option(:password, mandatory: true)
      }
    when :apikey
      Aspera.error_not_implemented
    end

  @api_orch = Rest.new(
    base_url: options.get_option(:url, mandatory: true),
    auth: auth_params
  )

  command1 = options.get_next_command(ACTIONS)
  case command1
  when :health
    nagios = Nagios.new
    begin
      info = call_ao('remote_node_ping', format: 'xml', xml_arrays: false)
      nagios.add_ok('api', 'accessible')
      nagios.check_product_version('api', 'orchestrator', info['orchestrator-version'])
    rescue StandardError => e
      nagios.add_critical('node api', e.to_s)
    end
    return nagios.result
  when :info
    result = call_ao('remote_node_ping', format: 'xml', xml_arrays: false)
    return Main.result_single_object(result)
  when :processes
    # TODO: Bug ? API has only XML format
    result = call_ao('processes_status', format: 'xml')
    return Main.result_object_list(result['process'])
  when :plugins
    # TODO: Bug ? only json format on url
    result = call_ao('plugin_version')
    return Main.result_object_list(result['Plugin'])
  when :workflow
    command = options.get_next_command(i[list status inputs details start export])
    case command
    when :status
      wf_id = instance_identifier
      result = call_ao(wf_id.eql?(SpecialValues::ALL) ? 'workflows_status' : "workflows_status/#{wf_id}")
      return Main.result_object_list(result['workflows']['workflow'])
    when :list
      result = call_ao('workflows_list/0')
      return Main.result_object_list(result['workflows']['workflow'], fields: %w[id portable_id name published_status published_revision_id latest_revision_id last_modification])
    when :details
      result = call_ao("workflow_details/#{instance_identifier}")
      return Main.result_object_list(result['workflows']['workflow']['statuses'])
    when :inputs
      result = call_ao("workflow_inputs_spec/#{instance_identifier}")
      return Main.result_single_object(result['workflow_inputs_spec'])
    when :export
      result = call_ao("export_workflow/#{instance_identifier}", format: nil, http: true)
      return Main.result_text(result.body)
    when :start
      result = {
        type: :single_object,
        data: nil
      }
      call_params = {format: :json}
      wf_id = instance_identifier
      # get external parameters if any
      options.get_next_argument('external_parameters', mandatory: false, validation: Hash, default: {}).each do |name, value|
        call_params["external_parameters[#{name}]"] = value
      end
      # synchronous call ?
      call_params['synchronous'] = true if options.get_option(:synchronous, mandatory: true)
      # expected result for synchro call ?
      result_location = options.get_option(:result)
      unless result_location.nil?
        result[:type] = :status
        fields = result_location.split(':')
        raise Cli::BadArgument, "Expects: work_step:result_name : #{result_location}" if fields.length != 2
        call_params['explicit_output_step'] = fields[0]
        call_params['explicit_output_variable'] = fields[1]
        # implicitly, call is synchronous
        call_params['synchronous'] = true
      end
      result[:type] = :text if call_params['synchronous']
      result[:data] = call_ao("initiate/#{wf_id}", args: call_params)
      return result
    end
  else Aspera.error_unexpected_value(command)
  end
end

#wizard(wizard, app_url) ⇒ Hash

Returns :preset_value, :test_args.

Parameters:

  • wizard (Wizard)

    The wizard object

  • app_url (Wizard)

    The wizard object

Returns:

  • (Hash)

    :preset_value, :test_args



45
46
47
48
49
50
51
52
53
54
# File 'lib/aspera/cli/plugins/orchestrator.rb', line 45

def wizard(wizard, app_url)
  return {
    preset_value: {
      url:      app_url,
      username: options.get_option(:username, mandatory: true),
      password: options.get_option(:password, mandatory: true)
    },
    test_args:    'workflow list'
  }
end