func (r *requestAttributeGetter) GetAttribs(req *http.Request) authorizer.Attributes { attribs := authorizer.AttributesRecord{} ctx, ok := r.requestContextMapper.Get(req) if ok { user, ok := api.UserFrom(ctx) if ok { attribs.User = user } } apiRequestInfo, _ := r.requestInfoResolver.GetRequestInfo(req) attribs.APIGroup = apiRequestInfo.APIGroup attribs.Verb = apiRequestInfo.Verb // If a path follows the conventions of the REST object store, then // we can extract the resource. Otherwise, not. attribs.Resource = apiRequestInfo.Resource // If the request specifies a namespace, then the namespace is filled in. // Assumes there is no empty string namespace. Unspecified results // in empty (does not understand defaulting rules.) attribs.Namespace = apiRequestInfo.Namespace attribs.Tenant = apiRequestInfo.Tenant attribs.Network = apiRequestInfo.Network return &attribs }