Class: Cpflow::Cli
Overview
rubocop:disable Metrics/ClassLength
Class Method Summary collapse
- .all_base_commands ⇒ Object
-
.check_cpflow_version ⇒ Object
rubocop:disable Metrics/MethodLength.
-
.check_cpln_version ⇒ Object
rubocop:disable Metrics/MethodLength.
- .deprecated_commands ⇒ Object
-
.exit_on_failure? ⇒ Boolean
Needed to silence deprecation warning.
-
.fix_help_option ⇒ Object
This is so that we’re able to run ‘cpflow COMMAND –help` to print the help (it basically changes it to `cpflow –help COMMAND`, which Thor recognizes) Based on stackoverflow.com/questions/49042591/how-to-add-help-h-flag-to-thor-command.
-
.is_thor_reserved_word?(word, type) ⇒ Boolean
Needed to be able to use “run” as a command.
- .process_option_params(params) ⇒ Object
-
.show_info_header(config) ⇒ Object
rubocop:disable Metrics/MethodLength.
- .start(*args) ⇒ Object
-
.validate_options!(options) ⇒ Object
rubocop:disable Metrics/MethodLength.
Methods inherited from Thor
Class Method Details
.all_base_commands ⇒ Object
130 131 132 |
# File 'lib/cpflow.rb', line 130 def self.all_base_commands ::Command::Base.all_commands.merge(deprecated_commands) end |
.check_cpflow_version ⇒ Object
rubocop:disable Metrics/MethodLength
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/cpflow.rb', line 73 def self.check_cpflow_version # rubocop:disable Metrics/MethodLength return if @checked_cpflow_version @checked_cpflow_version = true result = ::Shell.cmd("gem", "search", "^cpflow$", "--remote", capture_stderr: true) return unless result[:success] matches = result[:output].match(/cpflow \((.+)\)/) return unless matches version = Cpflow::VERSION latest_version = matches[1] return unless Gem::Version.new(version) < Gem::Version.new(latest_version) ::Shell.warn("You are not using the latest 'cpflow' version. Please update it with 'gem update cpflow'.") $stderr.puts end |
.check_cpln_version ⇒ Object
rubocop:disable Metrics/MethodLength
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/cpflow.rb', line 53 def self.check_cpln_version # rubocop:disable Metrics/MethodLength return if @checked_cpln_version @checked_cpln_version = true result = ::Shell.cmd("cpln", "--version", capture_stderr: true) if result[:success] data = JSON.parse(result[:output]) version = data["npm"] min_version = Cpflow::MIN_CPLN_VERSION if Gem::Version.new(version) < Gem::Version.new(min_version) ::Shell.abort("Current 'cpln' version: #{version}. Minimum supported version: #{min_version}. " \ "Please update it with 'npm update -g @controlplane/cli'.") end else ::Shell.abort("Can't find 'cpln' executable. Please install it with 'npm install -g @controlplane/cli'.") end end |
.deprecated_commands ⇒ Object
116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/cpflow.rb', line 116 def self.deprecated_commands @deprecated_commands ||= begin deprecated_commands_file_path = "#{__dir__}/deprecated_commands.json" deprecated_commands_data = File.binread(deprecated_commands_file_path) deprecated_commands = JSON.parse(deprecated_commands_data) deprecated_commands.to_h do |old_command_name, new_command_name| file_name = new_command_name.gsub(/[^A-Za-z]/, "_") class_name = file_name.split("_").map(&:capitalize).join [old_command_name, Object.const_get("::Command::#{class_name}")] end end end |
.exit_on_failure? ⇒ Boolean
Needed to silence deprecation warning
105 106 107 |
# File 'lib/cpflow.rb', line 105 def self.exit_on_failure? true end |
.fix_help_option ⇒ Object
This is so that we’re able to run ‘cpflow COMMAND –help` to print the help (it basically changes it to `cpflow –help COMMAND`, which Thor recognizes) Based on stackoverflow.com/questions/49042591/how-to-add-help-h-flag-to-thor-command
95 96 97 98 99 100 101 102 |
# File 'lib/cpflow.rb', line 95 def self.fix_help_option help_mappings = Thor::HELP_MAPPINGS + ["help"] matches = help_mappings & ARGV matches.each do |match| ARGV.delete(match) ARGV.unshift(match) end end |
.is_thor_reserved_word?(word, type) ⇒ Boolean
Needed to be able to use “run” as a command
110 111 112 113 114 |
# File 'lib/cpflow.rb', line 110 def self.is_thor_reserved_word?(word, type) # rubocop:disable Naming/PredicateName return false if word == "run" super end |
.process_option_params(params) ⇒ Object
134 135 136 137 138 139 140 |
# File 'lib/cpflow.rb', line 134 def self.process_option_params(params) # Ensures that if no value is provided for a non-boolean option (e.g., `cpflow command --option`), # it defaults to an empty string instead of the option name (which is the default Thor behavior) params[:lazy_default] ||= "" if params[:type] != :boolean params end |
.show_info_header(config) ⇒ Object
rubocop:disable Metrics/MethodLength
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
# File 'lib/cpflow.rb', line 252 def self.show_info_header(config) # rubocop:disable Metrics/MethodLength return if @showed_info_header rows = {} rows["ORG"] = config.org || "NOT PROVIDED!" rows["ORG"] += " (comes from CPLN_ORG env var)" if config.org_comes_from_env rows["APP"] = config.app || "NOT PROVIDED!" rows["APP"] += " (comes from CPLN_APP env var)" if config.app_comes_from_env rows.each do |key, value| puts "#{key}: #{value}" end @showed_info_header = true # Add a newline after the info header puts end |
.start(*args) ⇒ Object
43 44 45 46 47 48 49 50 51 |
# File 'lib/cpflow.rb', line 43 def self.start(*args) ENV["CPLN_SKIP_UPDATE_CHECK"] = "true" check_cpln_version check_cpflow_version fix_help_option super end |
.validate_options!(options) ⇒ Object
rubocop:disable Metrics/MethodLength
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'lib/cpflow.rb', line 232 def self.() # rubocop:disable Metrics/MethodLength .each do |name, value| normalized_name = ::Helpers.normalize_option_name(name) raise "No value provided for option #{normalized_name}." if value.to_s.strip.empty? option = ::Command::Base..find { |current_option| current_option[:name].to_s == name } if option[:new_name] normalized_new_name = ::Helpers.normalize_option_name(option[:new_name]) ::Shell.warn_deprecated("Option #{normalized_name} is deprecated, " \ "please use #{normalized_new_name} instead.") $stderr.puts end params = option[:params] next unless params[:valid_regex] raise "Invalid value provided for option #{normalized_name}." unless value.match?(params[:valid_regex]) end end |