summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/searches_endpoint.rb
blob: 748a93cd22a44429923b4972983e865bd356dc14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require "chef_zero/rest_base"

module ChefZero
  module Endpoints
    # /search
    class SearchesEndpoint < RestBase
      def get(request)
        # Get the result
        result_hash = {}
        indices = (%w{client environment node role} + data_store.list(request.rest_path[0..1] + ["data"])).sort
        indices.each do |index|
          result_hash[index] = build_uri(request.base_uri, request.rest_path + [index])
        end
        json_response(200, result_hash)
      end
    end
  end
end