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

module ChefZero
  module Endpoints
    # /users/USER/organizations
    class UserOrganizationsEndpoint < RestBase
      def get(request)
        username = request.rest_path[1]
        result = list_data(request, [ "organizations" ]).select do |orgname|
          exists_data?(request, [ "organizations", orgname, "users", username ])
        end
        result = result.map do |orgname|
          org = get_data(request, [ "organizations", orgname, "org" ])
          org = FFI_Yajl::Parser.parse(org)
          { "organization" => ChefData::DataNormalizer.normalize_organization(org, orgname) }
        end
        json_response(200, result)
      end
    end
  end
end