Class: Morpheus::Cli::Tasks
- Inherits:
-
Object
- Object
- Morpheus::Cli::Tasks
- Includes:
- CliCommand, JobsHelper
- Defined in:
- lib/morpheus/cli/commands/tasks.rb
Instance Attribute Summary
Attributes included from CliCommand
Instance Method Summary collapse
- #_get(id, options) ⇒ Object
- #add(args) ⇒ Object
- #connect(opts) ⇒ Object
- #execute(args) ⇒ Object
- #get(args) ⇒ Object
- #get_task_type(args) ⇒ Object
- #handle(args) ⇒ Object
- #list(args) ⇒ Object
- #list_task_types(args) ⇒ Object
- #remove(args) ⇒ Object
- #update(args) ⇒ Object
Methods included from JobsHelper
#api_client, #format_job_status, #get_available_contexts_for_task, #get_available_contexts_for_workflow, #get_process_event_data, included, #jobs_interface, #print_job_execution, #print_job_executions, #print_process_events, #wait_for_job_execution
Methods included from CliCommand
#add_query_parameter, #apply_options, #build_common_options, #build_get_options, #build_list_options, #build_option_type_options, #build_standard_add_many_options, #build_standard_add_options, #build_standard_api_options, #build_standard_delete_options, #build_standard_get_options, #build_standard_list_options, #build_standard_post_options, #build_standard_put_options, #build_standard_remove_options, #build_standard_update_options, #command_description, #command_name, #confirm, #confirm!, #default_refresh_interval, #default_sigdig, #default_subcommand, #establish_remote_appliance_connection, #execute_api, #execute_api_payload, #execute_api_request, #find_all, #find_all_json, #find_by_id, #find_by_name, #find_by_name_or_id, #find_record, #find_record_json, #full_command_usage, #get_interface, #get_list_key, #get_object_key, #get_subcommand_description, #handle_each_payload, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_array, #parse_bytes_param, #parse_get_options!, #parse_id_list, #parse_labels, #parse_list_options, #parse_list_options!, #parse_list_subtitles, #parse_options, #parse_parameter_as_resource_id!, #parse_passed_options, #parse_payload, #parse_query_options, #print, #print_error, #println, #prog_name, #puts, #puts_error, #raise_args_error, #raise_command_error, #render_response, #run_command_for_each_arg, #subcommand_aliases, #subcommand_description, #subcommand_usage, #subcommands, #usage, #validate_outfile, #verify_args!, #visible_subcommands
Instance Method Details
#_get(id, options) ⇒ Object
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 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 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 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
# File 'lib/morpheus/cli/commands/tasks.rb', line 97 def _get(id, ) task_name = id begin @tasks_interface.setopts() if [:dry_run] if task_name.to_s =~ /\A\d{1,}\Z/ print_dry_run @tasks_interface.dry.get(task_name.to_i) else print_dry_run @tasks_interface.dry.get({name: task_name}) end return end task = find_task_by_name_or_id(task_name) exit 1 if task.nil? # refetch it json_response = {'task' => task} unless task_name.to_s =~ /\A\d{1,}\Z/ json_response = @tasks_interface.get(task['id']) end if [:json] puts as_json(json_response, , "task") return 0 elsif [:yaml] puts as_yaml(json_response, , "task") return 0 elsif [:csv] puts records_as_csv([json_response['task']], ) return 0 else # load task type to know which options to display task_type = task['taskType'] ? find_task_type_by_name(task['taskType']['name']) : nil #print "\n", cyan, "Task #{task['name']} - #{task['taskType']['name']}\n\n" print_h1 "Task Details" print cyan description_cols = { "ID" => 'id', "Name" => 'name', "Code" => 'code', "Type" => lambda {|it| it['taskType']['name'] }, "Labels" => lambda {|it| format_list(it['labels'], '', 3) rescue '' }, "Visibility" => 'visibility', "Execute Target" => lambda {|it| if it['executeTarget'] == 'local' git_info = [] if it['taskOptions'] if it['taskOptions']['localScriptGitId'] git_info << "Git Repo: #{it['taskOptions']['localScriptGitId']}" end if it['taskOptions']['localScriptGitRef'] git_info << "Git Ref: #{it['taskOptions']['localScriptGitRef']}" end end "Local #{git_info.join(', ')}" elsif it['executeTarget'] == 'remote' remote_url = "" if it['taskOptions'] remote_url = "#{it['taskOptions']['username']}@#{it['taskOptions']['host']}:#{it['taskOptions']['port']}" end "Remote #{remote_url}" elsif it['executeTarget'] == 'resource' "Resource" else it['executeTarget'] end }, "Result Type" => 'resultType', "Retryable" => lambda {|it| if it['retryable'] format_boolean(it['retryable']).to_s + " Count: #{it['retryCount']}, Delay: #{it['retryDelaySeconds']}" else format_boolean(it['retryable']) end }, "Allow Custom Config" => lambda {|it| format_boolean(it['allowCustomConfig']) }, "Created" => lambda {|it| format_local_dt(it['dateCreated']) }, "Updated" => lambda {|it| format_local_dt(it['lastUpdated']) } } print_description_list(description_cols, task) # JD: uhh, the api should NOT be returning passwords!! if task_type # task_type['optionTypes'].sort { |x,y| x['displayOrder'].to_i <=> y['displayOrder'].to_i }.each do |optionType| # if optionType['fieldLabel'].to_s.downcase == 'script' # if task['taskOptions'][optionType['fieldName']] # print_h2 "Script" # print reset,"#{task['taskOptions'][optionType['fieldName']]}","\n",reset # end # else # print cyan,("#{optionType['fieldLabel']} : " + (optionType['type'] == 'password' ? "#{task['taskOptions'][optionType['fieldName']] ? '************' : ''}" : "#{task['taskOptions'][optionType['fieldName']] || optionType['defaultValue']}")),"\n" # end # end script_content = nil task_option_types = [] task_option_config = {} task_option_columns = [] task_type['optionTypes'].sort { |x,y| x['displayOrder'].to_i <=> y['displayOrder'].to_i }.each do |optionType| if optionType['code'] == 'script' script_content = task['taskOptions'][optionType['fieldName']] elsif optionType['fieldName'] == 'httpHeaders' || optionType['fieldName'] == 'webHeaders' http_headers = task['taskOptions']['httpHeaders'] || task['taskOptions']['webHeaders'] begin if http_headers.is_a?(String) http_headers = JSON.parse(http_headers) end # API has mismatch on fieldName httpHeaders vs webHeaders, we want to format this in a particular way though anyhow.. task_option_columns << {(optionType['fieldLabel']) => lambda {|it| http_headers.collect {|h| "#{h['key']}: #{h['value']}"}.join(", ") } } rescue => ex Morpheus::Logging::DarkPrinter.puts("Failed to parse httpHeaders task option as JSON") if Morpheus::Logging.debug? end else task_option_types << optionType task_option_columns << {(optionType['fieldLabel']) => lambda {|it| value = task['taskOptions'][optionType['code']] || task['taskOptions'][optionType['fieldName']] || optionType['defaultValue'] if optionType['type'] == 'checkbox' value.to_s.empty? ? 'off' : value.to_s else value.to_s end } } end end else print yellow,"Task type not found.",reset,"\n" end if !task_option_columns.empty? print_h2 "Task Options" print_description_list(task_option_columns, task["taskOptions"]) end if script_content print_h2 "Script" print reset,script_content,"\n",reset end # some task types have a file (file-content) instead of taskOptions.script file_content = task['file'] if file_content && [:no_content] != true print_h2 "Script Content" if file_content['sourceType'] == 'local' puts file_content['content'] elsif file_content['sourceType'] == 'url' puts "URL: #{file_content['contentPath']}" elsif file_content['sourceType'] == 'repository' puts "Repository: #{file_content['repository']['name'] rescue 'n/a'}" puts "Path: #{file_content['contentPath']}" if file_content['contentRef'] puts "Ref: #{file_content['contentRef']}" end else puts "Source: #{file_content['sourceType']}" puts "Path: #{file_content['contentPath']}" end end print reset,"\n" return 0 end rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#add(args) ⇒ Object
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 309 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 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 |
# File 'lib/morpheus/cli/commands/tasks.rb', line 258 def add(args) params = {} file_params = {} = {} task_name = nil task_code = nil task_type_name = nil task_visibility = nil optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[name] -t TASK_TYPE") opts.on( '-t', '--type TASK_TYPE', "Task Type" ) do |val| task_type_name = val end opts.on('--name NAME', String, "Task Name" ) do |val| task_name = val end opts.on('--visibility VISIBILITY', String, "Task Visibility" ) do |val| task_visibility = val end opts.on('-l', '--labels [LIST]', String, "Labels") do |val| [:options]['labels'] = parse_labels(val) end opts.on('--code CODE', String, "Task Code" ) do |val| task_code = val end opts.on('--source VALUE', String, "Source Type. local, repository, url. Only applies to script task types.") do |val| file_params['sourceType'] = val end opts.on('--content TEXT', String, "Contents of the task script. This implies source is local.") do |val| file_params['sourceType'] = 'local' if file_params['sourceType'].nil? file_params['content'] = val end opts.on('--file FILE', "File containing the task script. This can be used instead of --content" ) do |filename| file_params['sourceType'] = 'local' if file_params['sourceType'].nil? full_filename = File.(filename) if File.exist?(full_filename) file_params['content'] = File.read(full_filename) else print_red_alert "File not found: #{full_filename}" exit 1 end end opts.on('--url VALUE', String, "URL, for use when source is url") do |val| file_params['contentPath'] = val end opts.on('--content-path VALUE', String, "Content Path, for use when source is repository or url") do |val| file_params['contentPath'] = val end opts.on('--content-ref VALUE', String, "Content Ref (Version Ref), for use when source is repository") do |val| file_params['contentRef'] = val end opts.on('--result-type VALUE', String, "Result Type" ) do |val| [:options]['resultType'] = val end opts.on('--result-type VALUE', String, "Result Type" ) do |val| [:options]['executeTarget'] = val end opts.on('--execute-target VALUE', String, "Execute Target" ) do |val| [:options]['executeTarget'] = val end opts.on('--credential VALUE', String, "Credential ID or \"local\"" ) do |val| [:options]['credential'] = val end opts.on('--target-host VALUE', String, "Target Host" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['host'] = val end opts.on('--target-port VALUE', String, "Target Port" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['port'] = val end opts.on('--target-username VALUE', String, "Target Username" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['username'] = val end opts.on('--target-password VALUE', String, "Target Password" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['password'] = val end opts.on('--target-ssh-key VALUE', String, "Target SSH Key" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['sshKey'] = val end opts.on('--git-repo VALUE', String, "Git Repo ID" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['localScriptGitId'] = val end opts.on('--git-ref VALUE', String, "Git Ref" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['localScriptGitRef'] = val end opts.on('--retryable [on|off]', String, "Retryable" ) do |val| [:options]['retryable'] = val.to_s == 'on' || val.to_s == 'true' || val == '' || val.nil? end opts.on('--retry-count COUNT', String, "Retry Count" ) do |val| [:options]['retryCount'] = val.to_i end opts.on('--retry-delay SECONDS', String, "Retry Delay Seconds" ) do |val| [:options]['retryDelaySeconds'] = val.to_i end opts.on('--allow-custom-config [on|off]', String, "Allow Custom Config") do |val| [:options]['allowCustomConfig'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '' end (opts, , [:options, :payload, :json, :dry_run, :quiet, :remote]) end optparse.parse!(args) #verify_args!(args:args, count:1, optparse:optparse) if args[0] # task_name = args[0] task_name = args[0] end # if task_name.nil? || task_type_name.nil? # puts optparse # exit 1 # end connect() begin = [:options] ? [:options].reject {|k,v| k.is_a?(Symbol) } : {} if ['type'] task_type_name = .delete('type') end payload = nil if [:payload] payload = [:payload] payload.deep_merge!({'task' => }) unless .empty? payload.deep_merge!({'task' => {'file' => file_params}}) unless file_params.empty? else # construct payload payload = { "task" => { #"name" => task_name, #"code" => task_code, #"taskType" {"id" => task_type['id'], "code" => task_type['code']}, #"taskOptions" => {} } } payload.deep_merge!({'task' => }) unless .empty? # Name if task_name payload['task']['name'] = task_name else v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'name', 'fieldLabel' => 'Name', 'type' => 'text', 'required' => true, 'description' => 'Name'}], [:options], @api_client) payload['task']['name'] = v_prompt['name'] unless v_prompt['name'].to_s.empty? end # Code if task_code payload['task']['code'] = task_code else v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'code', 'fieldLabel' => 'Code', 'type' => 'text', 'description' => 'Code'}], [:options], @api_client) payload['task']['code'] = v_prompt['code'] unless v_prompt['code'].to_s.empty? end # Task Type @all_task_types ||= @tasks_interface.list_types({max:1000})['taskTypes'] task_types_dropdown = @all_task_types.collect {|it| {"name" => it["name"], "value" => it["code"]}} if task_type_name #payload['task']['taskType'] = task_type_name else v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'type', 'fieldLabel' => 'Type', 'type' => 'select', 'selectOptions' => task_types_dropdown, 'required' => true}], [:options], @api_client) task_type_name = v_prompt['type'] end task_type = find_task_type_by_name(task_type_name) if task_type.nil? print_red_alert "Task Type not found by code '#{task_type_name}'" return 1 end # Visibility if task_visibility != nil payload['task']['visibility'] = task_visibility else payload['task']['visibility'] = 'private' end payload['task']['taskType'] = {"id" => task_type['id'], "code" => task_type['code']} # Result Type if [:options]['resultType'] payload['task']['resultType'] = [:options]['resultType'] elsif task_type['hasResults'] result_types_dropdown = [{"name" => "Value", "value" => "value"}, {"name" => "Exit Code", "value" => "exitCode"}, {"name" => "Key Value", "value" => "keyValue"}, {"name" => "JSON", "value" => "json"}] v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'resultType', 'fieldLabel' => 'Result Type', 'type' => 'select', 'selectOptions' => result_types_dropdown}], [:options], @api_client) payload['task']['resultType'] = v_prompt['resultType'] unless v_prompt['resultType'].to_s.empty? end # Task Type Option Types # correct fieldContext has_file_content = false task_option_types = task_type['optionTypes'] || [] task_option_types.each do |it| if it['type'] == 'file-content' has_file_content = true it['fieldContext'] = nil it['fieldName'] = 'file' # this should be required right!? fix api optionType data plz it['required'] = true it['defaultValue'] = 'local' else if it['fieldContext'].nil? || it['fieldContext'] == '' it['fieldContext'] = 'taskOptions' end # taskOptions should prompt for code instead of fieldName, oy vey if it['fieldContext'] == 'taskOptions' it['fieldName'] = it['code'] end end end process_special_task_option_typeaheads(task_option_types) # inject file_params into options for file-content prompt # or into taskOptions.script for types not yet using file-content unless file_params.empty? if has_file_content [:options]['file'] ||= {} [:options]['file'].merge!(file_params) else [:options]['taskOptions'] ||= {} [:options]['taskOptions']['script'] = file_params['content'] if file_params['content'] end end # prompt # tasks are different in that they use the optionType code instead of fieldName for the key values = Morpheus::Cli::OptionTypes.prompt(task_option_types, [:options],@api_client, [:params]) # flatten taskOptions as serverside expects if ['taskOptions'] ['taskOptions'] = Morpheus::RestClient.grails_params(['taskOptions']) # remove "off" checkbox values, like the UI does ['taskOptions'].keys.each do |k| if ['taskOptions'][k] == "off" ['taskOptions'].delete(k) end end end payload.deep_merge!({'task' => }) unless .empty? # Target Options if [:options]['executeTarget'] != nil payload['task']['executeTarget'] = [:options]['executeTarget'] else default_target = nil execute_targets_dropdown = [] if task_type['allowExecuteLocal'] default_target = 'local' execute_targets_dropdown << {"name" => "Local", "value" => "local"} end if task_type['allowExecuteRemote'] default_target = 'remote' execute_targets_dropdown << {"name" => "Remote", "value" => "remote"} end if task_type['allowExecuteResource'] default_target = 'resource' execute_targets_dropdown << {"name" => "Resource", "value" => "resource"} end if !execute_targets_dropdown.empty? v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'executeTarget', 'fieldLabel' => 'Execute Target', 'type' => 'select', 'selectOptions' => execute_targets_dropdown, 'defaultValue' => default_target, 'required' => true}], [:options], @api_client) payload['task']['executeTarget'] = v_prompt['executeTarget'].to_s unless v_prompt['executeTarget'].to_s.empty? end end if payload['task']['executeTarget'] == 'local' if task_type['allowLocalRepo'] # Git Repo v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldContext' => 'taskOptions', 'fieldName' => 'localScriptGitId', 'fieldLabel' => 'Git Repo', 'type' => 'text', 'description' => 'Git Repo ID'}], [:options], @api_client) if v_prompt['taskOptions'] && !v_prompt['taskOptions']['localScriptGitId'].to_s.empty? payload['task']['taskOptions'] ||= {} payload['task']['taskOptions']['localScriptGitId'] = v_prompt['taskOptions']['localScriptGitId'] end # Git Ref v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldContext' => 'taskOptions', 'fieldName' => 'localScriptGitRef', 'fieldLabel' => 'Git Ref', 'type' => 'text', 'description' => 'Git Ref eg. master'}], [:options], @api_client) if v_prompt['taskOptions'] && !v_prompt['taskOptions']['localScriptGitRef'].to_s.empty? payload['task']['taskOptions'] ||= {} payload['task']['taskOptions']['localScriptGitRef'] = v_prompt['taskOptions']['localScriptGitRef'] end end elsif payload['task']['executeTarget'] == 'remote' # Host v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldContext' => 'taskOptions', 'fieldName' => 'host', 'fieldLabel' => 'IP Address', 'type' => 'text', 'description' => 'IP Address / Host for remote execution'}], [:options], @api_client) if v_prompt['taskOptions'] && !v_prompt['taskOptions']['host'].to_s.empty? payload['task']['taskOptions'] ||= {} payload['task']['taskOptions']['host'] = v_prompt['taskOptions']['host'] end # Port v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldContext' => 'taskOptions', 'fieldName' => 'port', 'fieldLabel' => 'Port', 'type' => 'text', 'description' => 'Port for remote execution', 'defaultValue' => '22'}], [:options], @api_client) if v_prompt['taskOptions'] && !v_prompt['taskOptions']['port'].to_s.empty? payload['task']['taskOptions'] ||= {} payload['task']['taskOptions']['port'] = v_prompt['taskOptions']['port'] end # Credentials credential_code = "credential" credential_option_type = {'code' => credential_code, 'fieldName' => credential_code, 'fieldLabel' => 'Credentials', 'type' => 'select', 'optionSource' => 'credentials', 'description' => 'Enter an existing credential ID or choose "local"', 'defaultValue' => "local", 'required' => true} supported_credential_types = ['username-keypair', 'username-password', 'username-password-keypair'].compact.flatten.join(",").split(",").collect {|it| it.strip } credential_params = {"new" => false, "credentialTypes" => supported_credential_types} credential_value = Morpheus::Cli::OptionTypes.select_prompt(credential_option_type, @api_client, credential_params, [:no_prompt], [:options][credential_code]) if !credential_value.to_s.empty? if credential_value == "local" payload['task'][credential_code] = {"type" => credential_value} elsif credential_value.to_s =~ /\A\d{1,}\Z/ payload['task'][credential_code] = {"id" => credential_value.to_i} end end if credential_value == "local" # Username v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldContext' => 'taskOptions', 'fieldName' => 'username', 'fieldLabel' => 'Username', 'type' => 'text', 'description' => 'Username for remote execution'}], [:options], @api_client) if v_prompt['taskOptions'] && !v_prompt['taskOptions']['username'].to_s.empty? payload['task']['taskOptions'] ||= {} payload['task']['taskOptions']['username'] = v_prompt['taskOptions']['username'] end # Password v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldContext' => 'taskOptions', 'fieldName' => 'password', 'fieldLabel' => 'Password', 'type' => 'password', 'description' => 'Password for remote execution'}], [:options], @api_client) if v_prompt['taskOptions'] && !v_prompt['taskOptions']['password'].to_s.empty? payload['task']['taskOptions'] ||= {} payload['task']['taskOptions']['password'] = v_prompt['taskOptions']['password'] end # SSH Key v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldContext' => 'taskOptions', 'fieldName' => 'sshKey', 'fieldLabel' => 'Key', 'type' => 'select', 'optionSource' => 'keyPairs', 'description' => 'SSH Key for remote execution'}], [:options], @api_client) if v_prompt['taskOptions'] && !v_prompt['taskOptions']['sshKey'].to_s.empty? payload['task']['taskOptions'] ||= {} payload['task']['taskOptions']['sshKey'] = v_prompt['taskOptions']['sshKey'] end end end # Retryable if [:options]['retryable'] != nil payload['task']['retryable'] = [:options]['retryable'] else v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'retryable', 'fieldLabel' => 'Retryable', 'type' => 'checkbox', 'defaultValue' => false}], [:options], @api_client) payload['task']['retryable'] = ['true','on'].include?(v_prompt['retryable'].to_s) unless v_prompt['retryable'].nil? end if payload['task']['retryable'] # Retry Count if [:options]['retryCount'] payload['task']['retryCount'] = [:options]['retryCount'].to_i else v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'retryCount', 'fieldLabel' => 'Retry Count', 'type' => 'number', 'defaultValue' => 5}], [:options], @api_client) payload['task']['retryCount'] = v_prompt['retryCount'].to_i unless v_prompt['retryCount'].nil? end # Retry Delay if [:options]['retryDelaySeconds'] payload['task']['retryDelaySeconds'] = [:options]['retryDelaySeconds'].to_i else v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'retryDelaySeconds', 'fieldLabel' => 'Retry Delay', 'type' => 'number', 'defaultValue' => 10}], [:options], @api_client) payload['task']['retryDelaySeconds'] = v_prompt['retryDelaySeconds'].to_i unless v_prompt['retryDelaySeconds'].nil? end end # Allow Custom Config if [:options]['allowCustomConfig'] != nil payload['task']['allowCustomConfig'] = [:options]['allowCustomConfig'] else v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'allowCustomConfig', 'fieldLabel' => 'Allow Custom Config', 'type' => 'checkbox', 'defaultValue' => false}], [:options], @api_client) payload['task']['allowCustomConfig'] = ['true','on'].include?(v_prompt['allowCustomConfig'].to_s) unless v_prompt['allowCustomConfig'].nil? end end @tasks_interface.setopts() if [:dry_run] print_dry_run @tasks_interface.dry.create(payload) return end json_response = @tasks_interface.create(payload) task = json_response['task'] if [:json] print JSON.pretty_generate(json_response),"\n" elsif ![:quiet] task = json_response['task'] print_green_success "Task #{task['name']} created" get([task['id']]) end rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#connect(opts) ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/morpheus/cli/commands/tasks.rb', line 11 def connect(opts) @api_client = establish_remote_appliance_connection(opts) @tasks_interface = @api_client.tasks @task_sets_interface = @api_client.task_sets @instances_interface = @api_client.instances @servers_interface = @api_client.servers end |
#execute(args) ⇒ Object
857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 |
# File 'lib/morpheus/cli/commands/tasks.rb', line 857 def execute(args) params = {} = {} target_type = nil instance_ids = [] instances = [] instance_label = nil server_ids = [] servers = [] server_label = nil default_refresh_interval = 5 all_target_types = ['appliance', 'instance', 'instance-label', 'server', 'server-label'] optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[task] [options]") opts.on('--context-type VALUE', String, "Context Type, #{ored_list(all_target_types)}") do |val| val = val.downcase val = 'appliance' if val == 'none' if target_type && target_type != val raise ::OptionParser::InvalidOption.new("cannot be combined with another context (#{target_type})") end if !all_target_types.include?(val) raise ::OptionParser::InvalidOption.new("'#{val}' is invalid. It must be one of the following: instance, instance-label, server, server-label or appliance") end target_type = val end opts.on('--target-type VALUE', String, "alias for context-type") do |val| val = val.downcase val = 'appliance' if val == 'none' if target_type && target_type != val raise ::OptionParser::InvalidOption.new("cannot be combined with another context (#{target_type})") end if !all_target_types.include?(val) raise ::OptionParser::InvalidOption.new("'#{val}' is invalid. It must be one of the following: instance, instance-label, server, server-label or appliance") end target_type = val end opts.add_hidden_option('--target-type') opts.on('--instance INSTANCE', String, "Instance name or id to target for execution. This option can be passed more than once.") do |val| if target_type && target_type != 'instance' raise ::OptionParser::InvalidOption.new("cannot be combined with another context (#{target_type})") end target_type = 'instance' instance_ids << val end opts.on('--instances LIST', Array, "Instances, comma separated list of instance names or IDs.") do |list| if target_type && target_type != 'instance' raise ::OptionParser::InvalidOption.new("cannot be combined with another context (#{target_type})") end target_type = 'instance' instance_ids = list.collect {|it| it.to_s.strip.empty? ? nil : it.to_s.strip }.compact.uniq end opts.on('--instance-label LABEL', String, "Instance Label") do |val| if target_type && target_type != 'instance-label' raise ::OptionParser::InvalidOption.new("cannot be combined with another context (#{target_type})") end target_type = 'instance-label' instance_label = val end opts.on('--server SERVER', String, "Server name or id to target for execution. This option can be passed more than once.") do |val| if target_type && target_type != 'server' raise ::OptionParser::InvalidOption.new("cannot be combined with another context (#{target_type})") end target_type = 'server' server_ids << val end opts.on('--servers LIST', Array, "Servers, comma separated list of host names or IDs.") do |list| if target_type && target_type != 'server' raise ::OptionParser::InvalidOption.new("cannot be combined with another context (#{target_type})") end target_type = 'server' server_ids = list.collect {|it| it.to_s.strip.empty? ? nil : it.to_s.strip }.compact.uniq end opts.on('--server-label LABEL', String, "Server Label") do |val| if target_type && target_type != 'server-label' raise ::OptionParser::InvalidOption.new("cannot be combined with another context (#{target_type})") end target_type = 'server-label' server_label = val end opts.on('--host HOST', String, "alias for --server") do |val| if target_type && target_type != 'server' raise ::OptionParser::InvalidOption.new("cannot be combined with another context (#{target_type})") end target_type = 'server' server_ids << val end opts.add_hidden_option('--host') opts.on('--hosts HOSTS', Array, "alias for --servers") do |list| if target_type && target_type != 'server' raise ::OptionParser::InvalidOption.new("The --hosts option cannot be combined with another context (#{target_type})") end target_type = 'server' server_ids = list.collect {|it| it.to_s.strip.empty? ? nil : it.to_s.strip }.compact.uniq end opts.add_hidden_option('--hosts') opts.on('-a', '--appliance', "Execute on the appliance, the target is the appliance itself.") do if target_type && target_type != 'appliance' raise ::OptionParser::InvalidOption.new("The --appliance option cannot be combined with another context (#{target_type})") end target_type = 'appliance' end opts.on('--config [TEXT]', String, "Custom config") do |val| params['customConfig'] = val.to_s end opts.on('--refresh [SECONDS]', String, "Refresh until execution is complete. Default interval is #{default_refresh_interval} seconds.") do |val| [:refresh_interval] = val.to_s.empty? ? default_refresh_interval : val.to_f end opts.on(nil, '--no-refresh', "Do not refresh" ) do [:no_refresh] = true end (opts, ) end optparse.parse!(args) if args.count != 1 raise_command_error "wrong number of arguments, expected 1 and got (#{args.count}) #{args.join(' ')}\n#{optparse}" end verify_args!(args:args, count:1, optparse:optparse) task_name = args[0] connect() begin task = find_task_by_name_or_id(task_name) return 1 if task.nil? = [:options] ? [:options].reject {|k,v| k.is_a?(Symbol) } : {} payload = nil if [:payload] payload = [:payload] payload.deep_merge!({'job' => }) unless .empty? else # prompt for target type and target if target_type.nil? # todo: Need api to fetch available Context Types for taskId/workflowId available_target_types = get_available_contexts_for_task(task) default_target_type = available_target_types.first ? available_target_types.first['name'] : nil if !available_target_types.empty? default_target_type = available_target_types.first ? available_target_types.first['name'] : nil target_type = Morpheus::Cli::OptionTypes.prompt([{'switch' => 'context-type', 'fieldName' => 'targetType', 'fieldLabel' => 'Context Type', 'type' => 'select', 'selectOptions' => available_target_types, 'defaultValue' => default_target_type, 'required' => true, 'description' => 'Context Type determines the type of target(s) for the execution'}], [:options], @api_client)['targetType'] end end if target_type params['targetType'] = target_type end if target_type == 'instance' if instance_ids.empty? instance_ids_value = Morpheus::Cli::OptionTypes.prompt([{'switch' => 'instances', 'fieldName' => 'instances', 'fieldLabel' => 'Instance(s)', 'type' => 'text', 'required' => true, 'description' => 'Instances, comma separated list of instance names or IDs.'}], [:options], @api_client)['instances'] instance_ids = parse_array(instance_ids_value) end instance_ids.each do |instance_id| instance = find_instance_by_name_or_id(instance_id) return 1 if instance.nil? instances << instance end params['instances'] = instances.collect {|it| it['id'] } elsif target_type == 'instance-label' if instance_label.nil? instance_label = Morpheus::Cli::OptionTypes.prompt([{'switch' => 'instance-label', 'fieldName' => 'instanceLabel', 'fieldLabel' => 'Instance Label', 'type' => 'text', 'required' => true, 'description' => 'Instance Label'}], [:options], @api_client)['instanceLabel'] end # params['config'] ||= {} # params['config']['instanceLabel'] = instance_label params['instanceLabel'] = instance_label elsif target_type == 'server' if server_ids.empty? server_ids_value = Morpheus::Cli::OptionTypes.prompt([{'switch' => 'servers', 'fieldName' => 'servers', 'fieldLabel' => 'Server(s)', 'type' => 'text', 'required' => true, 'description' => 'Servers, comma separated list of server names or IDs.'}], [:options], @api_client)['servers'] server_ids = parse_array(server_ids_value) end server_ids.each do |server_id| server = find_server_by_name_or_id(server_id) return 1 if server.nil? servers << server end params['servers'] = servers.collect {|it| it['id'] } elsif target_type == 'server-label' if server_label.nil? server_label = Morpheus::Cli::OptionTypes.prompt([{'switch' => 'server-label', 'fieldName' => 'serverLabel', 'fieldLabel' => 'Server Label', 'type' => 'text', 'required' => true, 'description' => 'Server Label'}], [:options], @api_client)['serverLabel'] end # params['config'] ||= {} # params['config']['serverLabel'] = server_label params['serverLabel'] = server_label end # todo: prompt to task optionTypes for customOptions if task['optionTypes'] end job_payload = {} job_payload.deep_merge!(params) job_payload.deep_merge!() unless .empty? payload = {'job' => job_payload} end @tasks_interface.setopts() if [:dry_run] print_dry_run @tasks_interface.dry.run(task['id'], payload) return end json_response = @tasks_interface.run(task['id'], payload) render_response(json_response, ) do target_desc = nil if instances.size() > 0 target_desc = (instances.size() == 1) ? "instance #{instances[0]['name']}" : "#{instances.size()} instances" elsif servers.size() > 0 target_desc = (servers.size() == 1) ? "host #{servers[0]['name']}" : "#{servers.size()} hosts" end if target_desc print_green_success "Executing task #{task['name']} on #{target_desc}" else print_green_success "Executing task #{task['name']}" end if json_response["jobExecution"] && json_response["jobExecution"]["id"] job_execution_id = json_response["jobExecution"]["id"] if [:no_refresh] get_args = [json_response["jobExecution"]["id"], "--details"] + ([:remote] ? ["-r",[:remote]] : []) Morpheus::Logging::DarkPrinter.puts((['jobs', 'get-execution'] + get_args).join(' ')) if Morpheus::Logging.debug? ::Morpheus::Cli::JobsCommand.new.handle(['get-execution'] + get_args) else #Morpheus::Cli::JobsCommand.new.handle(["get-execution", job_execution_id, "--refresh", options[:refresh_interval].to_s]+ (options[:remote] ? ["-r",options[:remote]] : [])) job_execution_results = wait_for_job_execution(job_execution_id, .merge({:details => true})) end end end return 0, nil end end |
#get(args) ⇒ Object
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/morpheus/cli/commands/tasks.rb', line 77 def get(args) = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[workflow]") opts.on('--no-content', "Do not display script content." ) do [:no_content] = true end (opts, , [:json, :yaml, :csv, :fields, :dry_run, :remote]) end optparse.parse!(args) if args.count < 1 raise_command_error "wrong number of arguments, expected 1-N and got (#{args.count}) #{args.join(' ')}\n#{optparse}" end connect() id_list = parse_id_list(args) return run_command_for_each_arg(id_list) do |arg| _get(arg, ) end end |
#get_task_type(args) ⇒ Object
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 |
# File 'lib/morpheus/cli/commands/tasks.rb', line 1130 def get_task_type(args) params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[type]") (opts, , [:query, :json, :yaml, :csv, :fields, :dry_run, :remote]) opts. = "Get details about a task type.\n" + "[type] is required. This is the id or code or name of a task type." end optparse.parse!(args) if args.count != 1 raise_command_error "wrong number of arguments, expected 1 and got (#{args.count}) #{args.join(' ')}\n#{optparse}" end connect() begin @tasks_interface.setopts() if [:dry_run] if args[0].to_s =~ /\A\d{1,}\Z/ print_dry_run @tasks_interface.dry.get_type(args[0].to_i) else print_dry_run @tasks_interface.dry.list_types({name:args[0]}) end return end # find_task_type_by_name actually finds by name or code id task_type = find_task_type_by_name(args[0]) return 1 if task_type.nil? json_response = {'taskType' => task_type} # skip redundant request # json_response = @tasks_interface.get(task_type['id']) render_result = render_with_format(json_response, , 'taskType') return 0 if render_result task_type = json_response['taskType'] title = "Morpheus Task Type" print_h1 "Morpheus Task Type", [], print cyan description_cols = { "ID" => 'id', "Name" => 'name', "Code" => 'name', #"Description" => 'description', "Scriptable" => lambda {|it| format_boolean(it['scriptable']) }, # lots more here # "enabled" => lambda {|it| format_boolean(it['enabled']) }, # "hasResults" => lambda {|it| format_boolean(it['hasResults']) }, # "allowRemoteKeyAuth" => lambda {|it| format_boolean(it['allowRemoteKeyAuth']) }, # "allowExecuteLocal" => lambda {|it| format_boolean(it['allowExecuteLocal']) }, # "allowExecuteRemote" => lambda {|it| format_boolean(it['allowExecuteRemote']) }, # "allowExecuteResource" => lambda {|it| format_boolean(it['allowExecuteResource']) }, # "allowLocalRepo" => lambda {|it| format_boolean(it['allowLocalRepo']) }, # "allowRemoteKeyAuth" => lambda {|it| format_boolean(it['allowRemoteKeyAuth']) }, } print_description_list(description_cols, task_type) option_types = task_type['optionTypes'] || [] option_types = option_types.sort {|x,y| x['displayOrder'] <=> y['displayOrder'] } if !option_types.empty? print_h2 "Config Option Types", [], option_type_cols = { "Name" => lambda {|it| it['fieldContext'].to_s != '' ? "#{it['fieldContext']}.#{it['fieldName']}" : it['fieldName'] }, "Label" => lambda {|it| it['fieldLabel'] }, "Type" => lambda {|it| it['type'] }, } print cyan print as_pretty_table(option_types, option_type_cols) end print reset,"\n" return 0 rescue RestClient::Exception => e print_rest_exception(e, ) return 1 end end |
#handle(args) ⇒ Object
19 20 21 |
# File 'lib/morpheus/cli/commands/tasks.rb', line 19 def handle(args) handle_subcommand(args) end |
#list(args) ⇒ Object
23 24 25 26 27 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/commands/tasks.rb', line 23 def list(args) params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[search]") opts.on('-t', '--type x,y,z', Array, "Filter by task type code(s)") do |val| params['taskTypeCodes'] = val end opts.on('-l', '--labels LABEL', String, "Filter by labels, can match any of the values") do |val| add_query_parameter(params, 'labels', parse_labels(val)) end opts.on('--all-labels LABEL', String, "Filter by labels, must match all of the values") do |val| add_query_parameter(params, 'allLabels', parse_labels(val)) end (opts, ) opts. = "List tasks." end optparse.parse!(args) connect() if args.count > 0 [:phrase] = args.join(" ") end params.merge!(()) @tasks_interface.setopts() if [:dry_run] print_dry_run @tasks_interface.dry.list(params) return end json_response = @tasks_interface.list(params) tasks = json_response['tasks'] render_response(json_response, , 'tasks') do title = "Morpheus Tasks" subtitles = [] subtitles += parse_list_subtitles() print_h1 title, subtitles if tasks.empty? print cyan,"No tasks found.",reset,"\n" else print cyan print_tasks_table(tasks, ) print_results_pagination(json_response) end print reset,"\n" end if tasks.empty? return 1, "no tasks found" else return 0, nil end end |
#list_task_types(args) ⇒ Object
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 |
# File 'lib/morpheus/cli/commands/tasks.rb', line 1080 def list_task_types(args) params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage() (opts, , [:list, :query, :json, :yaml, :csv, :fields, :dry_run, :remote]) opts. = "List task types." end optparse.parse!(args) if args.count > 0 raise_command_error "wrong number of arguments, expected 0 and got (#{args.count}) #{args.join(' ')}\n#{optparse}" end connect() begin params.merge!(()) @tasks_interface.setopts() if [:dry_run] print_dry_run @tasks_interface.dry.list_types(params) return end json_response = @tasks_interface.list_types(params) render_result = render_with_format(json_response, , 'taskTypes') return 0 if render_result title = "Morpheus Task Types" subtitles = [] subtitles += parse_list_subtitles() print_h1 title, subtitles task_types = json_response['taskTypes'] if task_types.empty? print cyan,"No task types found.",reset,"\n" else print cyan rows = task_types.collect do |task_type| {name: task_type['name'], id: task_type['id'], code: task_type['code'], description: task_type['description']} end print as_pretty_table(rows, [:id, :name, :code], ) #print_results_pagination(json_response) print_results_pagination({size:task_types.size,total:task_types.size}) end print reset,"\n" return 0 rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#remove(args) ⇒ Object
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 |
# File 'lib/morpheus/cli/commands/tasks.rb', line 820 def remove(args) params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[task]") (opts, , [:auto_confirm, :json, :dry_run, :quiet, :remote]) opts.on( '-f', '--force', "Force Delete" ) do params[:force] = true end end optparse.parse!(args) verify_args!(args:args, count:1, optparse:optparse) task_name = args[0] connect() begin task = find_task_by_name_or_id(task_name) exit 1 if task.nil? unless [:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the task #{task['name']}?") exit end @tasks_interface.setopts() if [:dry_run] print_dry_run @tasks_interface.dry.destroy(task['id'], params) return end json_response = @tasks_interface.destroy(task['id'], params) if [:json] print JSON.pretty_generate(json_response),"\n" elsif ![:quiet] print_green_success "Task #{task['name']} removed" end rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#update(args) ⇒ Object
649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 |
# File 'lib/morpheus/cli/commands/tasks.rb', line 649 def update(args) params = {} file_params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[task] [options]") opts.on('--name NAME', String, "Task Name" ) do |val| [:options]['name'] = val end opts.on('--visibility VISIBILITY', String, "Task Visibility" ) do |val| [:options]['visibility'] = val end opts.on('-l', '--labels [LIST]', String, "Labels") do |val| [:options]['labels'] = parse_labels(val) end opts.on('--code CODE', String, "Task Code" ) do |val| [:options]['code'] = val end opts.on('--source VALUE', String, "Source Type. local, repository, url. Only applies to script task types.") do |val| file_params['sourceType'] = val end opts.on('--content TEXT', String, "Contents of the task script. This implies source is local.") do |val| file_params['sourceType'] = 'local' if file_params['sourceType'].nil? file_params['content'] = val end opts.on('--file FILE', "File containing the task script. This can be used instead of --content" ) do |filename| file_params['sourceType'] = 'local' if file_params['sourceType'].nil? full_filename = File.(filename) if File.exist?(full_filename) file_params['content'] = File.read(full_filename) else print_red_alert "File not found: #{full_filename}" exit 1 end end opts.on('--url VALUE', String, "URL, for use when source is url") do |val| file_params['contentPath'] = val end opts.on('--content-path VALUE', String, "Content Path, for use when source is repository or url") do |val| file_params['contentPath'] = val end opts.on('--content-ref VALUE', String, "Content Ref (Version Ref), for use when source is repository") do |val| file_params['contentRef'] = val end opts.on('--result-type VALUE', String, "Result Type" ) do |val| [:options]['resultType'] = val end opts.on('--result-type VALUE', String, "Result Type" ) do |val| [:options]['executeTarget'] = val end opts.on('--execute-target VALUE', String, "Execute Target" ) do |val| [:options]['executeTarget'] = val end opts.on('--credential VALUE', String, "Credential ID or \"local\"" ) do |val| [:options]['credential'] = val end opts.on('--target-host VALUE', String, "Target Host" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['host'] = val end opts.on('--target-port VALUE', String, "Target Port" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['port'] = val end opts.on('--target-username VALUE', String, "Target Username" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['username'] = val end opts.on('--target-password VALUE', String, "Target Password" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['password'] = val end opts.on('--target-ssh-key VALUE', String, "Target SSH Key" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['sshKey'] = val end opts.on('--git-repo VALUE', String, "Git Repo ID" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['localScriptGitId'] = val end opts.on('--git-ref VALUE', String, "Git Ref" ) do |val| [:options]['taskOptions'] ||= {} [:options]['taskOptions']['localScriptGitRef'] = val end opts.on('--retryable [on|off]', String, "Retryable" ) do |val| [:options]['retryable'] = val.to_s == 'on' || val.to_s == 'true' || val == '' || val.nil? end opts.on('--retry-count COUNT', String, "Retry Count" ) do |val| [:options]['retryCount'] = val.to_i end opts.on('--retry-delay SECONDS', String, "Retry Delay Seconds" ) do |val| [:options]['retryDelaySeconds'] = val.to_i end opts.on('--allow-custom-config [on|off]', String, "Allow Custom Config") do |val| [:options]['allowCustomConfig'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '' end (opts, , [:options, :payload, :json, :dry_run, :quiet, :remote]) end optparse.parse!(args) verify_args!(args:args, count:1, optparse:optparse) task_name = args[0] connect() begin task = find_task_by_name_or_id(task_name) return 1 if task.nil? task_type = find_task_type_by_name(task['taskType']['name']) return 1 if task_type.nil? # file content param varies, heh has_file_content = false task_option_types = task_type['optionTypes'] || [] task_option_types.each do |it| if it['type'] == 'file-content' has_file_content = true end end # inject file_params into options for file-content prompt # or into taskOptions.script for types not yet using file-content unless file_params.empty? if has_file_content [:options]['file'] ||= {} [:options]['file'].merge!(file_params) else [:options]['taskOptions'] ||= {} [:options]['taskOptions']['script'] = file_params['content'] if file_params['content'] end end = [:options] ? [:options].reject {|k,v| k.is_a?(Symbol) } : {} payload = nil if [:payload] payload = [:payload] payload.deep_merge!({'task' => }) unless .empty? # payload.deep_merge!({'task' => {'file' => file_params}}) unless file_params.empty? else # construct payload payload = {} payload.deep_merge!({'task' => }) unless .empty? # payload.deep_merge!({'task' => {'file' => file_params}}) unless file_params.empty? if payload['task'].empty? print_red_alert "Specify at least one option to update" puts optparse return 1 end end @tasks_interface.setopts() if [:dry_run] print_dry_run @tasks_interface.dry.update(task['id'], payload) return 0 end json_response = @tasks_interface.update(task['id'], payload) if [:json] print JSON.pretty_generate(json_response) if !json_response['success'] return 1 end else print_green_success "Task #{json_response['task']['name'] rescue ''} updated" get([task['id']]) end return 0 rescue RestClient::Exception => e print_rest_exception(e, ) return 1 end end |