/usr/lib/ruby/vendor_ruby/chef_zero/endpoints/user_organizations_endpoint.rb is in chef-zero 4.5.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 'chef_zero/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, :create_additions => false)
{ "organization" => ChefData::DataNormalizer.normalize_organization(org, orgname) }
end
json_response(200, result)
end
end
end
end
|