Class: Morpheus::Cli::Workflows

Inherits:
Object
  • Object
show all
Includes:
CliCommand
Defined in:
lib/morpheus/cli/workflows.rb

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from CliCommand

#build_common_options, #build_option_type_options, #command_name, #default_refresh_interval, #default_subcommand, #establish_remote_appliance_connection, #full_command_usage, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_id_list, #parse_list_options, #parse_list_subtitles, #print, #print_error, #puts, #puts_error, #raise_command_error, #render_with_format, #run_command_for_each_arg, #subcommand_aliases, #subcommand_usage, #subcommands, #usage, #verify_access_token!

Instance Method Details

#_get(id, options) ⇒ Object



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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# File 'lib/morpheus/cli/workflows.rb', line 166

def _get(id, options)
  workflow_name = id
  begin
    @task_sets_interface.setopts(options)
    if options[:dry_run]
      if workflow_name.to_s =~ /\A\d{1,}\Z/
        print_dry_run @task_sets_interface.dry.get(workflow_name.to_i)
      else
        print_dry_run @task_sets_interface.dry.get({name: workflow_name})
      end
      return
    end
    workflow = find_workflow_by_name_or_id(workflow_name)
    exit 1 if workflow.nil?
    # refetch it..
    json_response = {'taskSet' => workflow}
    unless workflow_name.to_s =~ /\A\d{1,}\Z/
      json_response = @task_sets_interface.get(workflow['id'])
    end
    workflow = json_response['taskSet']
    if options[:json]
      puts as_json(json_response, options, "taskSet")
      return 0
    elsif options[:yaml]
      puts as_yaml(json_response, options, "taskSet")
      return 0
    elsif options[:csv]
      puts records_as_csv([json_response['taskSet']], options)
      return 0
    else
      # tasks = []
      # (workflow['tasks'] || []).each do |task_name|
      #   tasks << find_task_by_name_or_id(task_name)['id']
      # end
      tasks = workflow['taskSetTasks'].sort { |x,y| x['taskOrder'].to_i <=> y['taskOrder'].to_i }
      print_h1 "Workflow Details"

      print cyan
      description_cols = {
        "ID" => 'id',
        "Name" => 'name',
        "Description" => 'description',
        "Created" => lambda {|it| format_local_dt(it['dateCreated']) },
        "Updated" => lambda {|it| format_local_dt(it['lastUpdated']) }
      }
      print_description_list(description_cols, workflow)

      #task_names = tasks.collect {|it| it['name'] }
      print_h2 "Workflow Tasks"
      if tasks.empty?
        print yellow,"No tasks in this workflow.",reset,"\n"
      else
        print cyan
        # tasks.each_with_index do |taskSetTask, index|
        #   puts "#{(index+1).to_s.rjust(3, ' ')}. #{taskSetTask['task']['name']}"
        # end
        task_set_task_columns = [
          # this is the ID needed for the config options, by name would be nicer
          {"ID" => lambda {|it| it['id'] } }, 
          {"TASK ID" => lambda {|it| it['task']['id'] } },
          {"NAME" => lambda {|it| it['task']['name'] } },
          {"TYPE" => lambda {|it| it['task']['taskType'] ? it['task']['taskType']['name'] : '' } },
          {"PHASE" => lambda {|it| it['taskPhase'] } }, # not returned yet?
        ]
        print cyan
        puts as_pretty_table(tasks, task_set_task_columns)
      end
      print reset
    end
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end

#add(args) ⇒ Object



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
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
# File 'lib/morpheus/cli/workflows.rb', line 77

def add(args)
  options = {}
  params = {}
  task_arg_list = nil
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name] --tasks taskId:phase,taskId2:phase,taskId3:phase")
    opts.on("--name NAME", String, "Name for workflow") do |val|
      params['name'] = val
    end
    opts.on("--tasks x,y,z", Array, "List of tasks to run in order, in the format <Task ID>:<Task Phase> Task Phase is optional, the default is 'provision'.") do |list|
      task_arg_list = []
      list.each do |it|
        task_id, task_phase = it.split(":")
        task_arg_list << {task_id: task_id.to_s.strip, task_phase: task_phase.to_s.strip}
      end
    end
    build_common_options(opts, options, [:options, :payload, :json, :dry_run, :quiet, :remote])
  end
  optparse.parse!(args)

  connect(options)
  begin
    payload = nil
    if options[:payload]
      payload = options[:payload]
    else
      if args[0] && !params['name']
        params['name'] = args[0]
      end
      if (!params['name'] || task_arg_list.nil?)
        puts optparse
        return 1
      end
      tasks = []
      if task_arg_list
        task_arg_list.each do |task_arg|
          found_task = find_task_by_name_or_id(task_arg[:task_id])
          return 1 if found_task.nil?
          row = {'taskId' => found_task['id']}
          if !task_arg[:task_phase].to_s.strip.empty?
            row['taskPhase'] = task_arg[:task_phase]
          end
          tasks << row
        end
      end
      payload = {'taskSet' => {}}
      params.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
      payload['taskSet'].deep_merge!(params)
      if !tasks.empty?
        payload['taskSet']['tasks'] = tasks
      end
    end
    @task_sets_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @task_sets_interface.dry.create(payload)
      return
    end
    json_response = @task_sets_interface.create(payload)
    if options[:json]
      print JSON.pretty_generate(json_response)
    else
      workflow = json_response['taskSet']
      print "\n", cyan, "Workflow #{workflow['name']} created successfully", reset, "\n\n"
      get([workflow['id']])
    end
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end

#connect(opts) ⇒ Object

def initialize()

@appliance_name, @appliance_url = Morpheus::Cli::Remote.active_appliance

end



16
17
18
19
20
# File 'lib/morpheus/cli/workflows.rb', line 16

def connect(opts)
  @api_client = establish_remote_appliance_connection(opts)
  @tasks_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).tasks
  @task_sets_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).task_sets
end

#get(args) ⇒ Object



148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# File 'lib/morpheus/cli/workflows.rb', line 148

def get(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[workflow]")
    build_common_options(opts, options, [:json, :yaml, :csv, :fields, :dry_run, :remote])
  end
  optparse.parse!(args)
  if args.count < 1
    puts optparse
    return 1
  end
  connect(options)
  id_list = parse_id_list(args)
  return run_command_for_each_arg(id_list) do |arg|
    _get(arg, options)
  end
end

#handle(args) ⇒ Object



23
24
25
# File 'lib/morpheus/cli/workflows.rb', line 23

def handle(args)
  handle_subcommand(args)
end

#list(args) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/morpheus/cli/workflows.rb', line 28

def list(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage()
    build_common_options(opts, options, [:list, :query, :json, :yaml, :csv, :fields, :dry_run, :remote])
  end
  optparse.parse!(args)
  connect(options)
  begin
    params = {}
    params.merge!(parse_list_options(options))
    @task_sets_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @task_sets_interface.dry.get(params)
      return
    end
    json_response = @task_sets_interface.get(params)
    task_sets = json_response['taskSets']
    # print result and return output
    if options[:json]
      puts as_json(json_response, options, "taskSets")
      return 0
    elsif options[:csv]
      puts records_as_csv(json_response['taskSets'], options)
      return 0
    elsif options[:yaml]
      puts as_yaml(json_response, options, "taskSets")
      return 0
    else
      task_sets = json_response['taskSets']
      title = "Morpheus Workflows"
      subtitles = []
      subtitles += parse_list_subtitles(options)
      print_h1 title, subtitles
      if task_sets.empty?
        print cyan,"No workflows found.",reset,"\n"
      else
        print cyan
        print_workflows_table(task_sets)
        print_results_pagination(json_response)
      end
      print reset,"\n"
    end
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end

#remove(args) ⇒ Object



310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
# File 'lib/morpheus/cli/workflows.rb', line 310

def remove(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = "Usage: morpheus workflows remove [name]"
    build_common_options(opts, options, [:auto_confirm, :json, :dry_run, :quiet, :remote])
  end
  optparse.parse!(args)
  if args.count < 1
    puts optparse
    exit 1
  end
  workflow_name = args[0]
  connect(options)
  begin
    workflow = find_workflow_by_name_or_id(workflow_name)
    exit 1 if workflow.nil?
    unless options[:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the workflow #{workflow['name']}?")
      exit 1
    end
    @task_sets_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @task_sets_interface.dry.destroy(workflow['id'])
      return
    end
    json_response = @task_sets_interface.destroy(workflow['id'])
    if options[:json]
      print JSON.pretty_generate(json_response)
    elsif !options[:quiet]
      print "\n", cyan, "Workflow #{workflow['name']} removed", reset, "\n\n"
    end
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end

#update(args) ⇒ Object



241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
# File 'lib/morpheus/cli/workflows.rb', line 241

def update(args)
  options = {}
  params = {}
  task_arg_list = nil
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name] --tasks taskId:phase,taskId2:phase,taskId3:phase")
    opts.on("--tasks x,y,z", Array, "New list of tasks to run in the format <Task ID>:<Phase>. Phase is optional, the default is 'provision'.") do |list|
      task_arg_list = []
      list.each do |it|
        task_id, task_phase = it.split(":")
        task_arg_list << {task_id: task_id.to_s.strip, task_phase: task_phase.to_s.strip}
      end
    end
    opts.on("--name NAME", String, "New name for workflow") do |val|
      params['name'] = val
    end
    build_common_options(opts, options, [:options, :payload, :json, :dry_run, :quiet, :remote])
  end
  optparse.parse!(args)
  if args.count < 1
    puts optparse
    exit 1
  end
  workflow_name = args[0]
  connect(options)
  begin
    workflow = find_workflow_by_name_or_id(workflow_name)
    return 1 if workflow.nil?
    payload = nil
    if options[:payload]
      payload = options[:payload]
    else
      tasks = []
      if task_arg_list
        task_arg_list.each do |task_arg|
          found_task = find_task_by_name_or_id(task_arg[:task_id])
          return 1 if found_task.nil?
          row = {'taskId' => found_task['id']}
          if !task_arg[:task_phase].to_s.strip.empty?
            row['taskPhase'] = task_arg[:task_phase]
          end
          tasks << row
        end
      end
      payload = {'taskSet' => {}}
      params.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
      payload['taskSet'].deep_merge!(params)
      if !tasks.empty?
        payload['taskSet']['tasks'] = tasks
      end
    end
    @task_sets_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @task_sets_interface.dry.update(workflow['id'], payload)
      return
    end
    json_response = @task_sets_interface.update(workflow['id'], payload)
    if options[:json]
      print JSON.pretty_generate(json_response)
    elsif !options[:quiet]
      print "\n", cyan, "Workflow #{json_response['taskSet']['name']} updated successfully", reset, "\n\n"
      get([workflow['id']])
    end
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end