fix isadmin function using any()

This commit is contained in:
Lukas 2021-10-06 18:20:23 +02:00
parent 31b745d048
commit 55665db5bb
1 changed files with 11 additions and 8 deletions

View File

@ -4,7 +4,7 @@ TBD
__author__ = "Lukas Mahler" __author__ = "Lukas Mahler"
__version__ = "0.0.0" __version__ = "0.0.0"
__date__ = "30.09.2021" __date__ = "06.10.2021"
__email__ = "m@hler.eu" __email__ = "m@hler.eu"
__status__ = "Development" __status__ = "Development"
@ -360,7 +360,10 @@ class TSbot:
def isadmin(self, cldbid): def isadmin(self, cldbid):
""" """
Check if the given client-databaseid is an admin. Check if the given client-databaseid is an admin.
This is done by resolving the clients groups and check
if any of the groups sgid match a sgid from the sgids from the '.toml' config.
""" """
try: try:
groups = self.bot.servergroupsbyclientid(cldbid=cldbid) groups = self.bot.servergroupsbyclientid(cldbid=cldbid)
except ts3.query.TS3QueryError as e: except ts3.query.TS3QueryError as e:
@ -369,10 +372,11 @@ class TSbot:
self.pipeOut(str(groups.__dict__), lvl="DEBUG") # DEBUG self.pipeOut(str(groups.__dict__), lvl="DEBUG") # DEBUG
if self.allowed_sgids in groups: for group in groups:
if any(sgid == group['sgid'] for sgid in self.allowed_sgids):
self.pipeOut(f"[{cldbid}] ISADMIN: True") self.pipeOut(f"[{cldbid}] ISADMIN: True")
return True return True
else:
self.pipeOut(f"[{cldbid}] ISADMIN: False") self.pipeOut(f"[{cldbid}] ISADMIN: False")
return False return False
@ -396,7 +400,6 @@ class TSbot:
.roll .roll
.stop / .quit / .q .stop / .quit / .q
.test .test
""" """
commandstring = msg.split(" ") commandstring = msg.split(" ")