Class: Chef::Knife::Search

Inherits:
Chef::Knife show all
Includes:
Core::MultiAttributeReturnOption, Core::NodeFormattingOptions
Defined in:
lib/chef/knife/search.rb

Instance Attribute Summary

Attributes inherited from Chef::Knife

#name_args, #ui

Instance Method Summary collapse

Methods included from Core::NodeFormattingOptions

included

Methods included from Core::MultiAttributeReturnOption

included

Methods inherited from Chef::Knife

#api_key, #apply_computed_config, category, common_name, config_fetcher, #config_file_settings, #configure_chef, #create_object, #delete_object, dependency_loaders, deps, #format_rest_error, guess_category, #highlight_config_error, #humanize_exception, #humanize_http_exception, inherited, #initialize, list_commands, load_commands, load_deps, locate_config_file, #merge_configs, msg, #noauth_rest, #parse_options, #read_config, reset_subcommands!, #rest, run, #run_with_pretty_exceptions, #server_url, #show_usage, snake_case_name, subcommand_category, subcommand_class_from, subcommand_loader, subcommands, subcommands_by_category, ui, unnamed?, use_separate_defaults?, #username

Methods included from Mixin::ConvertToClassName

#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #snake_case_basename

Methods included from Mixin::PathSanity

#enforce_path_sanity

Constructor Details

This class inherits a constructor from Chef::Knife

Instance Method Details

#fuzzify_queryObject



146
147
148
149
150
# File 'lib/chef/knife/search.rb', line 146

def fuzzify_query
  if @query !~ /:/
    @query = "tags:*#{@query}* OR roles:*#{@query}* OR fqdn:*#{@query}* OR addresses:*#{@query}*"
  end
end

#read_cli_argsObject



121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/chef/knife/search.rb', line 121

def read_cli_args
  if config[:query]
    if @name_args[1]
      ui.error "please specify query as an argument or an option via -q, not both"
      ui.msg opt_parser
      exit 1
    end
    @type = name_args[0]
    @query = config[:query]
  else
    case name_args.size
    when 0
      ui.error "no query specified"
      ui.msg opt_parser
      exit 1
    when 1
      @type = "node"
      @query = name_args[0]
    when 2
      @type = name_args[0]
      @query = name_args[1]
    end
  end
end

#runObject



74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
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
# File 'lib/chef/knife/search.rb', line 74

def run
  read_cli_args
  fuzzify_query

  if @type == 'node'
    ui.use_presenter Knife::Core::NodePresenter
  end


  q = Chef::Search::Query.new
  escaped_query = URI.escape(@query,
                     Regexp.new("[^#{URI::PATTERN::UNRESERVED}]"))

  result_items = []
  result_count = 0

  rows = config[:rows]
  start = config[:start]
  begin
    q.search(@type, escaped_query, config[:sort], start, rows) do |item|
      formatted_item = format_for_display(item)
      # if formatted_item.respond_to?(:has_key?) && !formatted_item.has_key?('id')
      #   formatted_item['id'] = item.has_key?('id') ? item['id'] : item.name
      # end
      result_items << formatted_item
      result_count += 1
    end
  rescue Net::HTTPServerException => e
    msg = Chef::JSONCompat.from_json(e.response.body)["error"].first
    ui.error("knife search failed: #{msg}")
    exit 1
  end

  if ui.interchange?
    output({:results => result_count, :rows => result_items})
  else
    ui.msg "#{result_count} items found"
    ui.msg("\n")
    result_items.each do |item|
      output(item)
      unless config[:id_only]
        ui.msg("\n")
      end
    end
  end
end