summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/nodes_endpoint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef_zero/endpoints/nodes_endpoint.rb')
-rw-r--r--lib/chef_zero/endpoints/nodes_endpoint.rb35
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/chef_zero/endpoints/nodes_endpoint.rb b/lib/chef_zero/endpoints/nodes_endpoint.rb
new file mode 100644
index 0000000..8b9d852
--- /dev/null
+++ b/lib/chef_zero/endpoints/nodes_endpoint.rb
@@ -0,0 +1,35 @@
+require 'ffi_yajl'
+require 'chef_zero/endpoints/rest_object_endpoint'
+require 'chef_zero/chef_data/data_normalizer'
+
+module ChefZero
+ module Endpoints
+ # /nodes
+ class NodesEndpoint < RestListEndpoint
+
+ def post(request)
+ # /nodes validation
+ if request.rest_path.last == "nodes"
+ data = parse_json(request.body)
+
+ if data.has_key?("policy_name") && policy_name_invalid?(data["policy_name"])
+ return error(400, "Field 'policy_name' invalid", :pretty => false)
+ end
+
+ if data.has_key?("policy_group") && policy_name_invalid?(data["policy_group"])
+ return error(400, "Field 'policy_group' invalid", :pretty => false)
+ end
+ end
+
+ super(request)
+ end
+
+ def populate_defaults(request, response_json)
+ node = FFI_Yajl::Parser.parse(response_json, :create_additions => false)
+ node = ChefData::DataNormalizer.normalize_node(node, request.rest_path[3])
+ FFI_Yajl::Encoder.encode(node, :pretty => true)
+ end
+ end
+ end
+end
+