summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/environment_nodes_endpoint.rb
blob: f2970c2a5b940daede9ac48abae9f44a2a92400c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require "ffi_yajl" unless defined?(FFI_Yajl)
require_relative "../rest_base"

module ChefZero
  module Endpoints
    # /environment/NAME/nodes
    class EnvironmentNodesEndpoint < RestBase
      def get(request)
        # 404 if environment does not exist
        get_data(request, request.rest_path[0..3])

        result = {}
        list_data(request, request.rest_path[0..1] + ["nodes"]).each do |name|
          node = FFI_Yajl::Parser.parse(get_data(request, request.rest_path[0..1] + ["nodes", name]))
          if node["chef_environment"] == request.rest_path[3]
            result[name] = build_uri(request.base_uri, request.rest_path[0..1] + ["nodes", name])
          end
        end
        json_response(200, result)
      end
    end
  end
end