/usr/lib/ruby/vendor_ruby/chef_zero/endpoints/organization_association_requests_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 23 24 25 26 27 28 29 30 | require 'ffi_yajl'
require 'chef_zero/rest_base'
module ChefZero
module Endpoints
# /organizations/ORG/association_requests
class OrganizationAssociationRequestsEndpoint < RestBase
def post(request)
json = FFI_Yajl::Parser.parse(request.body, :create_additions => false)
username = json['user']
orgname = request.rest_path[1]
id = "#{username}-#{orgname}"
if exists_data?(request, [ 'organizations', orgname, 'users', username ])
raise RestErrorResponse.new(409, "User #{username} is already in organization #{orgname}")
end
create_data(request, request.rest_path, username, '{}')
json_response(201, { "uri" => build_uri(request.base_uri, request.rest_path + [ id ]) })
end
def get(request)
orgname = request.rest_path[1]
ChefZero::Endpoints::OrganizationUserBase.get(self, request) do |username|
{ "id" => "#{username}-#{orgname}", 'username' => username }
end
end
end
end
end
|