Class: ForemanMaintain::Cli::Base

Inherits:
Clamp::Command
  • Object
show all
Includes:
ForemanMaintain::Concerns::Finders
Defined in:
lib/foreman_maintain/cli/base.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ForemanMaintain::Concerns::Finders

#check, #detector, #feature, #find_all_scenarios, #find_checks, #find_procedures, #find_scenarios, #procedure

Instance Attribute Details

#runnerObject (readonly)

Returns the value of attribute runner.



8
9
10
# File 'lib/foreman_maintain/cli/base.rb', line 8

def runner
  @runner
end

Class Method Details

.available_tags(collection) ⇒ Object



67
68
69
# File 'lib/foreman_maintain/cli/base.rb', line 67

def self.available_tags(collection)
  collection.inject([]) { |array, item| array.concat(item.tags).uniq }.sort_by(&:to_s)
end

.dashize(string) ⇒ Object



10
11
12
# File 'lib/foreman_maintain/cli/base.rb', line 10

def self.dashize(string)
  string.to_s.tr('_', '-')
end

.interactive_optionObject



100
101
102
103
104
105
106
107
108
109
110
111
112
# File 'lib/foreman_maintain/cli/base.rb', line 100

def self.interactive_option
  option ['-y', '--assumeyes'], :flag,
         'Automatically answer yes for all questions'

  option ['-w', '--whitelist'], 'whitelist',
         'Comma-separated list of labels of steps to be ignored' do |whitelist|
    raise ArgumentError, 'value not specified' if whitelist.nil? || whitelist.empty?
    whitelist.split(',').map(&:strip)
  end

  option ['-f', '--force'], :flag,
         'Force steps that would be skipped as they were already run'
end

.label_optionObject



81
82
83
84
85
86
87
88
# File 'lib/foreman_maintain/cli/base.rb', line 81

def self.label_option
  option '--label', 'label',
         'Limit only for a specific label. ' \
           '(Use "list" command to see available labels)' do |label|
    raise ArgumentError, 'value not specified' if label.nil? || label.empty?
    underscorize(label).to_sym
  end
end

.option(switches, type, description, opts = {}, &block) ⇒ Object



71
72
73
74
75
76
77
78
79
# File 'lib/foreman_maintain/cli/base.rb', line 71

def self.option(switches, type, description, opts = {}, &block)
  multivalued = opts.delete(:multivalued)
  description += ' (comma-separated list)' if multivalued
  super(switches, type, description, opts) do |value|
    value = CSVParser.new.parse(value) if multivalued
    value = instance_exec(value, &block) if block
    value
  end
end

.tags_optionObject



90
91
92
93
94
95
96
97
98
# File 'lib/foreman_maintain/cli/base.rb', line 90

def self.tags_option
  option('--tags', 'tags',
         'Limit only for specific set of labels. ' \
           '(Use list-tags command to see available tags)',
         :multivalued => true) do |tags|
    raise ArgumentError, 'value not specified' if tags.nil? || tags.empty?
    tags.map { |tag| underscorize(tag).to_sym }
  end
end

Instance Method Details

#available_checksObject



51
52
53
54
55
# File 'lib/foreman_maintain/cli/base.rb', line 51

def available_checks
  filter = {}
  filter[:tags] = tags if respond_to?(:tags)
  ForemanMaintain.available_checks(filter)
end

#available_proceduresObject



57
58
59
60
61
# File 'lib/foreman_maintain/cli/base.rb', line 57

def available_procedures
  filter = {}
  filter[:tags] = tags if respond_to?(:tags)
  ForemanMaintain.available_procedures(filter)
end

#available_tags(collection) ⇒ Object



63
64
65
# File 'lib/foreman_maintain/cli/base.rb', line 63

def available_tags(collection)
  self.class.available_tags(collection)
end

#dashize(string) ⇒ Object



14
15
16
# File 'lib/foreman_maintain/cli/base.rb', line 14

def dashize(string)
  self.class.dashize(string)
end

#label_string(string) ⇒ Object



22
23
24
# File 'lib/foreman_maintain/cli/base.rb', line 22

def label_string(string)
  HighLine.color("[#{dashize(string)}]", :yellow)
end


30
31
32
33
34
# File 'lib/foreman_maintain/cli/base.rb', line 30

def print_check_info(check)
  desc = "#{label_string(check.label)} #{check.description}".ljust(80)
  tags = check.tags.map { |t| tag_string(t) }.join(' ').to_s
  puts "#{desc} #{tags}".strip
end

#reporterObject



36
37
38
39
40
# File 'lib/foreman_maintain/cli/base.rb', line 36

def reporter
  @reporter ||= ForemanMaintain::Reporter::CLIReporter.new(STDOUT,
                                                           STDIN,
                                                           :assumeyes => assumeyes?)
end

#run_scenario(scenarios) ⇒ Object



42
43
44
45
46
47
48
49
# File 'lib/foreman_maintain/cli/base.rb', line 42

def run_scenario(scenarios)
  @runner ||=
    ForemanMaintain::Runner.new(reporter, scenarios,
                                :assumeyes => assumeyes?,
                                :whitelist => whitelist || [],
                                :force => force?)
  runner.run
end

#tag_string(string) ⇒ Object



26
27
28
# File 'lib/foreman_maintain/cli/base.rb', line 26

def tag_string(string)
  HighLine.color("[#{dashize(string)}]", :cyan)
end

#underscorize(string) ⇒ Object



18
19
20
# File 'lib/foreman_maintain/cli/base.rb', line 18

def underscorize(string)
  string.to_s.tr('-', '_')
end