Class: EPC::Command::UpdateSolutionCommand
- Inherits:
-
BaseCommand
- Object
- BaseCommand
- EPC::Command::UpdateSolutionCommand
- Defined in:
- lib/epc/command/update_solution_command.rb,
lib/epc/command/solution/update_solution_command.rb
Constant Summary collapse
- UPDATABLE_ATTRIBUTES =
["name"]
Constants inherited from BaseCommand
BaseCommand::GIVEUP_TICKS, BaseCommand::SLEEP_TIME, BaseCommand::TICKER_TICKS
Instance Attribute Summary
Attributes inherited from BaseCommand
Instance Method Summary collapse
Methods inherited from BaseCommand
#go, inherited, #initialize, #method_missing, required_arguments_count, required_options, #respond_to?
Methods included from PersistentAttributes
#auth_token, #caller_id, #target_url
Constructor Details
This class inherits a constructor from EPC::Command::BaseCommand
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class EPC::Command::BaseCommand
Instance Method Details
#execute(*args) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/epc/command/update_solution_command.rb', line 5 def execute(*args) path = "." path = File.(path) path = project_solution_path(path) solution_id, solution_name = infer_solution_context(@options[:solution_name], path) raise FatalError, "Solution could not be determined" if solution_id.nil? args_hash = {} args.each do |arg| key, val = arg.split("=") args_hash[key] = val end unless @options[:file].nil? args_hash = EPC::Config.read_content_as_json(@options[:file]).merge(args_hash) end args_hash.each do |attr, val| if !UPDATABLE_ATTRIBUTES.include?(attr) args_hash.delete(attr) say("Cannot update #{attr}. Updatable attributes are: #{UPDATABLE_ATTRIBUTES.join(',')}") next end end unless args_hash.empty? status, response, = client.put(EPC::Config::SOLUTIONS_PATH + "/#{solution_id}", args_hash) if status.failure? say("Update failed with: [#{response['message']}]") else say("Update succesful") end return status end end |