fix isqueryclient function
This commit is contained in:
parent
ed9f9acb11
commit
71a6aa71ca
16
myTS3.py
16
myTS3.py
|
@ -66,8 +66,8 @@ class TSbot:
|
||||||
# Start the Bot
|
# Start the Bot
|
||||||
self.loop()
|
self.loop()
|
||||||
|
|
||||||
except ts3.query.TS3QueryError:
|
except ts3.query.TS3QueryError as e:
|
||||||
self.pipeOut("Connection can't be established, check your '.toml' file.", lvl="CRITICAL")
|
self.pipeOut(e, lvl="CRITICAL")
|
||||||
|
|
||||||
def loop(self):
|
def loop(self):
|
||||||
"""
|
"""
|
||||||
|
@ -331,19 +331,17 @@ class TSbot:
|
||||||
|
|
||||||
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg)
|
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.
|
Check if the given client-uid is a query client.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# client = self.bot.clientlist(uid=uid)
|
client = self.bot.clientinfo(clid=clid)
|
||||||
# print(client[0])
|
if client["client_type"] == "1":
|
||||||
# if client[0]["client_type"] == "1":
|
self.pipeOut(f"[{clid}] ISQUERY: True")
|
||||||
if cluid == "ServerQuery":
|
|
||||||
self.pipeOut(f"[{cluid}] ISQUERY: True")
|
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
self.pipeOut(f"[{cluid}] ISQUERY: False")
|
self.pipeOut(f"[{clid}] ISQUERY: False")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def isadmin(self, cldbid):
|
def isadmin(self, cldbid):
|
||||||
|
|
|
@ -67,7 +67,7 @@ def setupLogger(logpath, lvl="DEBUG"):
|
||||||
if not os.path.exists(logpath):
|
if not os.path.exists(logpath):
|
||||||
os.makedirs(logpath)
|
os.makedirs(logpath)
|
||||||
handler = RotatingFileHandler(logpath + r"/myTS3.log", encoding='utf-8', maxBytes=5*1024*1024, backupCount=10)
|
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)
|
handler.setFormatter(logformat)
|
||||||
log.addHandler(handler)
|
log.addHandler(handler)
|
||||||
log.setLevel(lvl)
|
log.setLevel(lvl)
|
||||||
|
|
Loading…
Reference in New Issue