summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/policies_endpoint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef_zero/endpoints/policies_endpoint.rb')
-rw-r--r--lib/chef_zero/endpoints/policies_endpoint.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/chef_zero/endpoints/policies_endpoint.rb b/lib/chef_zero/endpoints/policies_endpoint.rb
new file mode 100644
index 0000000..37493da
--- /dev/null
+++ b/lib/chef_zero/endpoints/policies_endpoint.rb
@@ -0,0 +1,26 @@
+require 'chef_zero/chef_data/data_normalizer'
+
+module ChefZero
+ module Endpoints
+ # /organizations/ORG/policies
+ class PoliciesEndpoint < RestBase
+ # GET /organizations/ORG/policies
+ def get(request)
+ response_data = {}
+ policy_names = list_data(request)
+ policy_names.each do |policy_name|
+ policy_path = request.rest_path + [policy_name]
+ policy_uri = build_uri(request.base_uri, policy_path)
+ revisions = list_data(request, policy_path + ["revisions"])
+
+ response_data[policy_name] = {
+ uri: policy_uri,
+ revisions: hashify_list(revisions)
+ }
+ end
+
+ return json_response(200, response_data)
+ end
+ end
+ end
+end