Class: SensuCli::Base
- Inherits:
-
Object
- Object
- SensuCli::Base
- Defined in:
- lib/sensu-cli/base.rb
Instance Attribute Summary collapse
-
#cli ⇒ Object
Returns the value of attribute cli.
Instance Method Summary collapse
Instance Attribute Details
#cli ⇒ Object
Returns the value of attribute cli.
3 4 5 |
# File 'lib/sensu-cli/base.rb', line 3 def cli @cli end |
Instance Method Details
#api_path(cli) ⇒ Object
41 42 43 44 45 |
# File 'lib/sensu-cli/base.rb', line 41 def api_path(cli) p = PathCreator.new p.respond_to?(cli[:command]) ? path = p.send(cli[:command], cli) : SensuCli::die(1, 'Something Bad Happened') @api = { :path => path[:path], :method => cli[:method], :command => cli[:command], :payload => (path[:payload] || false) } end |
#make_call ⇒ Object
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 76 77 78 79 80 |
# File 'lib/sensu-cli/base.rb', line 47 def make_call opts = { :path => @api[:path], :method => @api[:method], :payload => @api[:payload], :host => Config.host, :port => Config.port, :ssl => Config.ssl || false, :user => Config.user || nil, :read_timeout => Config.read_timeout || 15, :open_timeout => Config.open_timeout || 5, :password => Config.password || nil, :proxy_address => Config.proxy_address || nil, :proxy_port => Config.proxy_port || nil } api = Api.new res = api.request(opts) msg = api.response(res.code, res.body, @api[:command]) msg = Filter.new(cli[:fields][:filter]).process(msg) if cli[:fields][:filter] endpoint = @api[:command] if res.code != '200' SensuCli::die(0) elsif cli[:fields][:format] == 'single' Pretty.single(msg, endpoint) elsif cli[:fields][:format] == 'table' fields = nil || cli[:fields][:fields] Pretty.table(msg, endpoint, fields) elsif cli[:fields][:format] == 'json' Pretty.json(msg) else Pretty.print(msg, endpoint) end Pretty.count(msg) unless cli[:fields][:format] == 'table' or cli[:fields][:format] == 'json' end |
#settings ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/sensu-cli/base.rb', line 22 def settings directory = "#{Dir.home}/.sensu" file = "#{directory}/settings.rb" alt = '/etc/sensu/sensu-cli/settings.rb' settings = Settings.new if settings.file?(file) SensuCli::Config.from_file(file) elsif settings.file?(alt) SensuCli::Config.from_file(alt) else settings.create(directory, file) end if $stdout.isatty and not Config.pretty_colors == false Rainbow.enabled = true else Rainbow.enabled = false end end |