Additional error checking on user record deletion

This commit is contained in:
Mark Veidemanis 2019-10-05 18:22:14 +01:00
parent f0fff7c958
commit aa54759337
1 changed files with 5 additions and 2 deletions

View File

@ -108,14 +108,17 @@ def addUser(name, channel, nick, user):
p.sadd(chanspace, channel)
p.execute()
def delUser(name, channel, nick, user):
def delUser(name, channel, nick, user):
gnamespace, namespace, chanspace = getNamespace(name, channel, nick)
p = main.r.pipeline()
channels = main.r.smembers(chanspace)
p.srem(namespace, nick)
if channels == {channel.encode()}:
p.delete(chanspace)
p.srem(gnamespace, user)
if user:
p.srem(gnamespace, user)
else:
warn("Attempt to delete nonexistent user: %s" % user)
else:
p.srem(chanspace, channel)
p.execute()