mirror of
https://github.com/jech/galene.git
synced 2024-11-09 02:05:59 +01:00
Simplify the interface to autoLockKick.
This just removes a minor optimisation.
This commit is contained in:
parent
bf142c41a0
commit
b20cb0e523
1 changed files with 9 additions and 10 deletions
|
@ -458,10 +458,9 @@ func add(name string, desc *Description) (*Group, []Client, error) {
|
|||
g.description = desc
|
||||
}
|
||||
|
||||
clients := g.getClientsUnlocked(nil)
|
||||
autoLockKick(g, clients)
|
||||
autoLockKick(g)
|
||||
|
||||
return g, clients, nil
|
||||
return g, g.getClientsUnlocked(nil), nil
|
||||
}
|
||||
|
||||
func Range(f func(g *Group) bool) {
|
||||
|
@ -629,11 +628,13 @@ func AddClient(group string, c Client, creds ClientCredentials) (*Group, error)
|
|||
}
|
||||
|
||||
// called locked
|
||||
func autoLockKick(g *Group, clients []Client) {
|
||||
func autoLockKick(g *Group) {
|
||||
if !(g.description.Autolock && g.locked == nil) &&
|
||||
!g.description.Autokick {
|
||||
return
|
||||
}
|
||||
|
||||
clients := g.getClientsUnlocked(nil)
|
||||
for _, c := range clients {
|
||||
if member("op", c.Permissions()) {
|
||||
return
|
||||
|
@ -642,11 +643,9 @@ func autoLockKick(g *Group, clients []Client) {
|
|||
if g.description.Autolock && g.locked == nil {
|
||||
m := "this group is locked"
|
||||
g.locked = &m
|
||||
go func(clients []Client) {
|
||||
for _, c := range clients {
|
||||
c.Joined(g.Name(), "change")
|
||||
}
|
||||
}(g.getClientsUnlocked(nil))
|
||||
for _, c := range clients {
|
||||
c.Joined(g.Name(), "change")
|
||||
}
|
||||
}
|
||||
|
||||
if g.description.Autokick {
|
||||
|
@ -676,7 +675,7 @@ func DelClient(c Client) {
|
|||
g.Name(), "delete", c.Id(), "", nil, nil,
|
||||
)
|
||||
}
|
||||
autoLockKick(g, clients)
|
||||
autoLockKick(g)
|
||||
}
|
||||
|
||||
func (g *Group) GetClients(except Client) []Client {
|
||||
|
|
Loading…
Reference in a new issue