fix isqueryclient function

This commit is contained in:
Lukas 2021-09-27 14:09:11 +02:00
parent ed9f9acb11
commit 71a6aa71ca
2 changed files with 8 additions and 10 deletions

View File

@ -66,8 +66,8 @@ class TSbot:
# Start the Bot
self.loop()
except ts3.query.TS3QueryError:
self.pipeOut("Connection can't be established, check your '.toml' file.", lvl="CRITICAL")
except ts3.query.TS3QueryError as e:
self.pipeOut(e, lvl="CRITICAL")
def loop(self):
"""
@ -331,19 +331,17 @@ class TSbot:
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg)
def isqueryclient(self, cluid):
def isqueryclient(self, clid):
"""
Check if the given client-uid is a query client.
"""
# client = self.bot.clientlist(uid=uid)
# print(client[0])
# if client[0]["client_type"] == "1":
if cluid == "ServerQuery":
self.pipeOut(f"[{cluid}] ISQUERY: True")
client = self.bot.clientinfo(clid=clid)
if client["client_type"] == "1":
self.pipeOut(f"[{clid}] ISQUERY: True")
return True
else:
self.pipeOut(f"[{cluid}] ISQUERY: False")
self.pipeOut(f"[{clid}] ISQUERY: False")
return False
def isadmin(self, cldbid):

View File

@ -67,7 +67,7 @@ def setupLogger(logpath, lvl="DEBUG"):
if not os.path.exists(logpath):
os.makedirs(logpath)
handler = RotatingFileHandler(logpath + r"/myTS3.log", encoding='utf-8', maxBytes=5*1024*1024, backupCount=10)
logformat = logging.Formatter("%(asctime)s %(levelname)7s %(message)s", "%Y-%m-%d %H:%M:%S")
logformat = logging.Formatter("%(asctime)s %(levelname)8s %(message)s", "%Y-%m-%d %H:%M:%S")
handler.setFormatter(logformat)
log.addHandler(handler)
log.setLevel(lvl)