summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/searches_endpoint.rb
blob: 10deac36b39223b0772ecee9e13dc3e339cefdb6 (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