Skip to content

Fix UpsertGroup roles #81

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
107 changes: 55 additions & 52 deletions usermanagerprovider_core.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,54 +168,14 @@ func (um *userManagerProviderCore) UpsertUser(user User, opts *UpsertUserOptions
opts.DomainName = string(LocalDomain)
}

parseWildcard := func(str string) string {
if str == "*" {
return ""
}

return str
}

isNullOrWildcard := func(str string) bool {
if str == "*" || str == "" {
return true
}

return false
}

path := fmt.Sprintf("/settings/rbac/users/%s/%s", url.PathEscape(opts.DomainName), url.PathEscape(user.Username))
span := um.tracer.createSpan(opts.ParentSpan, "manager_users_upsert_user", "management")
span.SetAttribute("db.operation", "PUT "+path)
defer span.End()

var reqRoleStrs []string
for _, roleData := range user.Roles {
if roleData.Bucket == "" {
reqRoleStrs = append(reqRoleStrs, roleData.Name)
} else {
scope := parseWildcard(roleData.Scope)
collection := parseWildcard(roleData.Collection)

if scope != "" && isNullOrWildcard(roleData.Bucket) {
return makeInvalidArgumentsError("when a scope is specified, the bucket cannot be null or wildcard")
}
if collection != "" && isNullOrWildcard(scope) {
return makeInvalidArgumentsError("when a collection is specified, the scope cannot be null or wildcard")
}

roleStr := fmt.Sprintf("%s[%s", roleData.Name, roleData.Bucket)
if scope != "" {
roleStr += ":" + roleData.Scope
}
if collection != "" {
roleStr += ":" + roleData.Collection
}
roleStr += "]"

reqRoleStrs = append(reqRoleStrs, roleStr)

}
rolesString, err := getRolesString(user.Roles)
if err != nil {
return err
}

reqForm := make(url.Values)
Expand All @@ -226,7 +186,7 @@ func (um *userManagerProviderCore) UpsertUser(user User, opts *UpsertUserOptions
if len(user.Groups) > 0 {
reqForm.Add("groups", strings.Join(user.Groups, ","))
}
reqForm.Add("roles", strings.Join(reqRoleStrs, ","))
reqForm.Add("roles", rolesString)

req := mgmtRequest{
Service: ServiceTypeManagement,
Expand Down Expand Up @@ -470,19 +430,15 @@ func (um *userManagerProviderCore) UpsertGroup(group Group, opts *UpsertGroupOpt
span.SetAttribute("db.operation", "PUT "+path)
defer span.End()

var reqRoleStrs []string
for _, roleData := range group.Roles {
if roleData.Bucket == "" {
reqRoleStrs = append(reqRoleStrs, roleData.Name)
} else {
reqRoleStrs = append(reqRoleStrs, fmt.Sprintf("%s[%s]", roleData.Name, roleData.Bucket))
}
rolesString, err := getRolesString(group.Roles)
if err != nil {
return err
}

reqForm := make(url.Values)
reqForm.Add("description", group.Description)
reqForm.Add("ldap_group_ref", group.LDAPGroupReference)
reqForm.Add("roles", strings.Join(reqRoleStrs, ","))
reqForm.Add("roles", rolesString)

req := mgmtRequest{
Service: ServiceTypeManagement,
Expand Down Expand Up @@ -599,3 +555,50 @@ func (um *userManagerProviderCore) ChangePassword(newPassword string, opts *Chan

return nil
}

func getRolesString(roles []Role) (string, error) {
var reqRoleStrs []string
for _, roleData := range roles {
if roleData.Bucket == "" {
reqRoleStrs = append(reqRoleStrs, roleData.Name)
} else {
scope := parseWildcard(roleData.Scope)
collection := parseWildcard(roleData.Collection)

if scope != "" && isNullOrWildcard(roleData.Bucket) {
return "", makeInvalidArgumentsError("when a scope is specified, the bucket cannot be null or wildcard")
}
if collection != "" && isNullOrWildcard(scope) {
return "", makeInvalidArgumentsError("when a collection is specified, the scope cannot be null or wildcard")
}

roleStr := fmt.Sprintf("%s[%s", roleData.Name, roleData.Bucket)
if scope != "" {
roleStr += ":" + roleData.Scope
}
if collection != "" {
roleStr += ":" + roleData.Collection
}
roleStr += "]"

reqRoleStrs = append(reqRoleStrs, roleStr)

}
}

return strings.Join(reqRoleStrs, ","), nil
}

func parseWildcard(str string) string {
if str == "*" {
return ""
}
return str
}

func isNullOrWildcard(str string) bool {
if str == "*" || str == "" {
return true
}
return false
}