Class: Chef::Knife::Core::NodePresenter

Inherits:
GenericPresenter show all
Defined in:
lib/chef/knife/core/node_presenter.rb

Overview

A customized presenter for Chef::Node objects. Supports variable-length output formats for displaying node data

Instance Attribute Summary

Attributes inherited from GenericPresenter

#config, #ui

Instance Method Summary collapse

Methods inherited from GenericPresenter

#attribute_field_separator, #extract_nested_value, #format_cookbook_list_for_display, #format_data_subset_for_display, #format_for_display, #format_list_for_display, #formatting_subset_of_data?, #initialize, #interchange?, #name_or_id_for, #parse_format_option, #text_format

Constructor Details

This class inherits a constructor from Chef::Knife::Core::GenericPresenter

Instance Method Details

#format(data) ⇒ Object



55
56
57
58
59
60
61
# File 'lib/chef/knife/core/node_presenter.rb', line 55

def format(data)
  if parse_format_option == :json
    summarize_json(data)
  else
    super
  end
end

#key(key_text) ⇒ Object



151
152
153
# File 'lib/chef/knife/core/node_presenter.rb', line 151

def key(key_text)
  ui.color(key_text, :cyan)
end

#summarize(data) ⇒ Object

Converts a Chef::Node object to a string suitable for output to a terminal. If config or config are set the volume of output is adjusted accordingly. Uses colors if enabled in the ui object.



94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# File 'lib/chef/knife/core/node_presenter.rb', line 94

def summarize(data)
  if data.is_a?(Chef::Node)
    node = data
    # special case ec2 with their split horizon whatsis.
    ip = (node[:ec2] && node[:ec2][:public_ipv4]) || node[:ipaddress]

    summarized = <<~SUMMARY
      #{ui.color("Node Name:", :bold)}   #{ui.color(node.name, :bold)}
    SUMMARY
    show_policy = !(node.policy_name.nil? && node.policy_group.nil?)
    if show_policy
      summarized << <<~POLICY
        #{key("Policy Name:")}  #{node.policy_name}
        #{key("Policy Group:")} #{node.policy_group}
      POLICY
    else
      summarized << <<~ENV
        #{key("Environment:")} #{node.chef_environment}
      ENV
    end
    summarized << <<~SUMMARY
      #{key("FQDN:")}        #{node[:fqdn]}
      #{key("IP:")}          #{ip}
      #{key("Run List:")}    #{node.run_list}
    SUMMARY
    unless show_policy
      summarized << <<~ROLES
        #{key("Roles:")}       #{Array(node[:roles]).join(", ")}
      ROLES
    end
    summarized << <<~SUMMARY
      #{key("Recipes:")}     #{Array(node[:recipes]).join(", ")}
      #{key("Platform:")}    #{node[:platform]} #{node[:platform_version]}
      #{key("Tags:")}        #{node.tags.join(", ")}
    SUMMARY
    if config[:medium_output] || config[:long_output]
      summarized += <<~MORE
        #{key("Attributes:")}
        #{text_format(node.normal_attrs)}
      MORE
    end
    if config[:long_output]
      summarized += <<~MOST
        #{key("Default Attributes:")}
        #{text_format(node.default_attrs)}
        #{key("Override Attributes:")}
        #{text_format(node.override_attrs)}
        #{key("Automatic Attributes (Ohai Data):")}
        #{text_format(node.automatic_attrs)}
      MOST
    end
    summarized
  else
    super
  end
end

#summarize_json(data) ⇒ Object



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/chef/knife/core/node_presenter.rb', line 63

def summarize_json(data)
  if data.is_a?(Chef::Node)
    node = data
    result = {}

    result["name"] = node.name
    if node.policy_name.nil? && node.policy_group.nil?
      result["chef_environment"] = node.chef_environment
    else
      result["policy_name"] = node.policy_name
      result["policy_group"] = node.policy_group
    end
    result["run_list"] = node.run_list
    result["normal"] = node.normal_attrs

    if config[:long_output]
      result["default"]   = node.default_attrs
      result["override"]  = node.override_attrs
      result["automatic"] = node.automatic_attrs
    end

    Chef::JSONCompat.to_json_pretty(result)
  else
    Chef::JSONCompat.to_json_pretty(data)
  end
end