Class: Ey::Core::Cli::Web::Disable

Inherits:
Subcommand
  • Object
show all
Defined in:
lib/ey-core/cli/web/disable.rb

Instance Method Summary collapse

Methods inherited from Subcommand

#handle_core_error, #run_handle, #setup

Methods included from Helpers::Core

#core_account, #core_accounts, #core_application_for, #core_applications, #core_client, #core_environment_for, #core_environment_variables, #core_environments, #core_operator_and_environment_for, #core_server_for, #core_url, #core_yaml, #eyrc_yaml, included, #longest_length_by_name, #operator, #unauthenticated_core_client, #write_core_yaml

Instance Method Details

#handleObject



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/ey-core/cli/web/disable.rb', line 29

def handle
  operator, environment = core_operator_and_environment_for(self.options)
  application           = core_application_for(environment, self.options)

  puts "Enabling maintenance page for #{application.name} on #{environment.name}".green

  request = environment.maintenance(application, "enable")
  request.wait_for { |r| r.ready? }

  if request.successful
    puts "Successfully put up maintenance page".green
  else
    puts "Enabling maintenance mode was not successful".red
    ap request
  end
end