mirror of
https://github.com/mumble-voip/grumble.git
synced 2026-01-24 20:39:09 -08:00
Remove unreachable code reported by go vet
This commit is contained in:
parent
bbb589fb37
commit
d9b6cbb89f
4 changed files with 40 additions and 46 deletions
|
|
@ -161,9 +161,7 @@ func HasPermission(ctx *Context, user User, perm Permission) bool {
|
|||
// permissions exccept SpeakPermission and WhisperPermission.
|
||||
if perm != SpeakPermission && perm != WhisperPermission {
|
||||
return (granted & (perm | WritePermission)) != NonePermission
|
||||
} else {
|
||||
return (granted & perm) != NonePermission
|
||||
}
|
||||
|
||||
return false
|
||||
return (granted & perm) != NonePermission
|
||||
}
|
||||
|
|
|
|||
|
|
@ -298,42 +298,40 @@ func GroupMemberCheck(current *Context, acl *Context, name string, user User) (o
|
|||
pdepth := len(userChain) - 1
|
||||
return pdepth >= mindepth && pdepth <= maxdepth
|
||||
|
||||
} else {
|
||||
// Non-magic groups
|
||||
groups := []Group{}
|
||||
|
||||
iter := channel
|
||||
for iter != nil {
|
||||
if group, ok := iter.Groups[name]; ok {
|
||||
// Skip non-inheritable groups if we're in parents
|
||||
// of our evaluated context.
|
||||
if iter != channel && !group.Inheritable {
|
||||
break
|
||||
}
|
||||
// Prepend group
|
||||
groups = append([]Group{group}, groups...)
|
||||
// If this group does not inherit from groups in its ancestors, stop looking
|
||||
// for more ancestor groups.
|
||||
if !group.Inherit {
|
||||
break
|
||||
}
|
||||
}
|
||||
iter = iter.Parent
|
||||
}
|
||||
|
||||
isMember := false
|
||||
for _, group := range groups {
|
||||
if group.AddContains(user.UserId()) || group.TemporaryContains(user.UserId()) || group.TemporaryContains(-int(user.Session())) {
|
||||
isMember = true
|
||||
}
|
||||
if group.RemoveContains(user.UserId()) {
|
||||
isMember = false
|
||||
}
|
||||
}
|
||||
return isMember
|
||||
}
|
||||
|
||||
return false
|
||||
// Non-magic groups
|
||||
groups := []Group{}
|
||||
|
||||
iter := channel
|
||||
for iter != nil {
|
||||
if group, ok := iter.Groups[name]; ok {
|
||||
// Skip non-inheritable groups if we're in parents
|
||||
// of our evaluated context.
|
||||
if iter != channel && !group.Inheritable {
|
||||
break
|
||||
}
|
||||
// Prepend group
|
||||
groups = append([]Group{group}, groups...)
|
||||
// If this group does not inherit from groups in its ancestors, stop looking
|
||||
// for more ancestor groups.
|
||||
if !group.Inherit {
|
||||
break
|
||||
}
|
||||
}
|
||||
iter = iter.Parent
|
||||
}
|
||||
|
||||
isMember := false
|
||||
for _, group := range groups {
|
||||
if group.AddContains(user.UserId()) || group.TemporaryContains(user.UserId()) || group.TemporaryContains(-int(user.Session())) {
|
||||
isMember = true
|
||||
}
|
||||
if group.RemoveContains(user.UserId()) {
|
||||
isMember = false
|
||||
}
|
||||
}
|
||||
return isMember
|
||||
}
|
||||
|
||||
// GroupNames gets the list of group names for the given ACL context.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue