changed .format to f-strings

This commit is contained in:
Lukas 2021-09-22 16:56:56 +02:00
parent bd9eb089b9
commit 9092e68ed4
1 changed files with 61 additions and 55 deletions

116
myTS3.py
View File

@ -24,21 +24,27 @@ class MyTeamspeakBot:
""" """
self.host = conf["host"]
self.port = conf["port"]
self.user = conf["user"]
self.pwd = conf["pwd"]
self.sid = conf["sid"]
self.nickname = conf["name"] self.nickname = conf["name"]
self.myid = None self.myid = None
self.running = True self.running = True
self.intro = "__ Keep this Chat open to Use Admin Commands __" self.intro = "< Keep this chat open to use commands. >"
print("Trying to connect to: {0}:{1}".format(conf["host"], conf["port"])) print(f"* Trying to connect to: {self.host}:{self.port}")
with ts3.query.TS3Connection(conf["host"], conf["port"]) as self.con: with ts3.query.TS3Connection(self.host, self.port) as self.bot:
self.con.login(client_login_name=conf["user"], client_login_password=conf["pwd"]) self.bot.login(client_login_name=self.user, client_login_password=self.pwd)
self.con.use(sid=conf["sid"]) self.bot.use(sid=self.sid)
try: try:
self.con.clientupdate(client_nickname=self.nickname) self.bot.clientupdate(client_nickname=self.nickname)
except ts3.query.TS3QueryError: except ts3.query.TS3QueryError:
pass pass
print("Successfully connected as: {0}\n\n".format(self.nickname)) print(f"* Successfully connected as: {self.nickname}")
# Start the Bot # Start the Bot
self.loop() self.loop()
@ -48,53 +54,55 @@ class MyTeamspeakBot:
""" """
# Finding myself # Find my client id
me = self.con.clientfind(pattern=self.nickname) me = self.bot.clientfind(pattern=self.nickname)
meid = [client["clid"] for client in me] if len(me) == 1:
self.myid = meid[0] self.myid = me["clid"][0]
# info = printable_clientinfo(self.myid) else:
raise ValueError("x Can't find my own client id.")
# Positioning myself ''' if you want to move the Bot to a certain channel (instead of the defualt channel, you can do: '''
'''ist standardmäßig im default channel (für meine Zwecke Richtig)'''
# ts3conn.clientmove(clid=selfid,cid=129) # ts3conn.clientmove(clid=selfid,cid=129)
# Subscribe myself to channel # Subscribe to a certain channel
self.con.servernotifyregister(event="server") self.bot.servernotifyregister(event="server")
# Subscribe myself to privat chat messages
self.con.servernotifyregister(event="textprivate") # Subscribe to privat chat messages
# Subscribe myself to channel movement events self.bot.servernotifyregister(event="textprivate")
# Subscribe to channel movement events
# ts3conn.servernotifyregister(event="channel",id_=0) # ts3conn.servernotifyregister(event="channel",id_=0)
# Notify every admin of my existance # Notify connected admins
self.notifyAdmin() self.notifyAdmin()
# ----------- LOOP HERE ------------- # ----------- LOOP HERE -------------
while self.running: while self.running:
# ts3conn.send_keepalive() # ts3conn.send_keepalive()
print("Waiting for a new Event...") print("* Waiting for a new Event...")
self.con.version() self.bot.version()
try: try:
# This method blocks, but we must sent the keepalive message at # This method blocks, but we must sent the keepalive message at
# least once in 5 minutes to avoid the sever side idle client # least once in 5 minutes to avoid the sever side idle client
# disconnect. So we set the timeout parameter simply to 1 minute. # disconnect. So we set the timeout parameter simply to 1 minute.
event = self.con.wait_for_event(timeout=60) event = self.bot.wait_for_event(timeout=60)
except ts3.query.TS3TimeoutError: except ts3.query.TS3TimeoutError:
pass pass
else: else:
print(100 * " " + "\nGot Event | length={0}".format(len(event[0]))) print(f"* Got Event | length={len(event[0])}")
if len(event[0]) > 15: if len(event[0]) > 15:
if event[0]["reasonid"] == "0": if event[0]["reasonid"] == "0":
print("Client '{}' connected.".format(event[0]["client_nickname"])) print(f"* Client [{event[0]['client_nickname']}] connected.")
# Check if the connector is a ServerQuery or not # Check if the connector is a ServerQuery or not
if not self.isqueryclient(event[0]["client_unique_identifier"]): if not self.isqueryclient(event[0]["client_unique_identifier"]):
print(event[0]) print(f"* {event[0]}")
# Check if the connector is an Admin # Check if the connector is an Admin
if self.isadmin(event[0]["client_database_id"]): if self.isadmin(event[0]["client_database_id"]):
self.con.sendtextmessage(targetmode=1, target=event[0]["clid"], msg=self.intro) self.bot.sendtextmessage(targetmode=1, target=event[0]["clid"], msg=self.intro)
else: else:
pass pass
else: else:
@ -104,39 +112,37 @@ class MyTeamspeakBot:
elif len(event[0]) == 6: elif len(event[0]) == 6:
msg = event[0]["msg"] msg = event[0]["msg"]
invkr = event[0]["invokername"] invkr = event[0]["invokername"]
print('From: "{1}"\nMessage: "{0}"'.format(msg, invkr)) print(f'* From: "{invkr}"\nMessage: "{msg}"')
self.lookupcommand(msg, invkr) self.lookupcommand(msg, invkr)
print((100 * " ") + "\n")
def stop(self, invkr): def stop(self, invkr):
""" """
""" """
msg = "I'm out, bye bye!" msg = "I'm out, bye bye!"
self.con.sendtextmessage(targetmode=1, target=invkr, msg=msg) self.bot.sendtextmessage(targetmode=1, target=invkr, msg=msg)
self.running = False self.running = False
def notifyAdmin(self): def notifyAdmin(self):
clients = self.con.clientlist() clients = self.bot.clientlist()
clients = [client for client in clients if client["client_type"] != "1"] clients = [client for client in clients if client["client_type"] != "1"]
for client in clients: for client in clients:
cldbid = client["client_database_id"] cldbid = client["client_database_id"]
clid = client["clid"] clid = client["clid"]
if self.isadmin(cldbid): if self.isadmin(cldbid):
self.con.sendtextmessage(targetmode=1, target=clid, msg=self.intro) self.bot.sendtextmessage(targetmode=1, target=clid, msg=self.intro)
sleep(1) sleep(1) # This can be removed if the Query Client is Whitelisted
def kickall(self, msg): def kickall(self, msg):
""" """
""" """
clients = self.con.clientlist() clients = self.bot.clientlist()
clients = [client["clid"] for client in clients if client["client_type"] != "1"] clients = [client["clid"] for client in clients if client["client_type"] != "1"]
for clid in clients: for clid in clients:
try: try:
self.con.clientpoke(msg=msg, clid=clid) self.bot.clientpoke(msg=msg, clid=clid)
except: except:
pass pass
@ -150,10 +156,10 @@ class MyTeamspeakBot:
# Get the client ids # Get the client ids
if usr == 'all': if usr == 'all':
clients = self.con.clientlist() clients = self.bot.clientlist()
clients = [client["clid"] for client in clients if client["client_type"] != "1"] clients = [client["clid"] for client in clients if client["client_type"] != "1"]
else: else:
clients = self.con.clientfind(pattern=usr) clients = self.bot.clientfind(pattern=usr)
clients = [client["clid"] for client in clients] clients = [client["clid"] for client in clients]
# Break, if there's no client. # Break, if there's no client.
@ -162,7 +168,7 @@ class MyTeamspeakBot:
else: else:
for client in clients: for client in clients:
data = self.printable_clientinfo(client) data = self.printable_clientinfo(client)
print(data) print(f"* {data}")
# Nopokeatm # Nopokeatm
# return # return
@ -171,9 +177,9 @@ class MyTeamspeakBot:
i = 0 i = 0
while num == -1 or i < num: while num == -1 or i < num:
for clid in clients: for clid in clients:
print(clid) print(f"* {clid}")
try: try:
self.con.clientpoke(msg=msg, clid=clid) self.bot.clientpoke(msg=msg, clid=clid)
except: except:
pass pass
sleep(delay) sleep(delay)
@ -194,10 +200,10 @@ class MyTeamspeakBot:
# print(client[0]) # print(client[0])
# if client[0]["client_type"] == "1": # if client[0]["client_type"] == "1":
if cluid == "ServerQuery": if cluid == "ServerQuery":
print("ISQUERY: True") print("* ISQUERY: True")
return True return True
else: else:
print("ISQUERY: False") print("* ISQUERY: False")
return False return False
def isadmin(self, cldbid): def isadmin(self, cldbid):
@ -205,18 +211,18 @@ class MyTeamspeakBot:
Check if the given client-databaseid is an admin Check if the given client-databaseid is an admin
""" """
groups = self.con.servergroupsbyclientid(cldbid=cldbid) groups = self.bot.servergroupsbyclientid(cldbid=cldbid)
# [print(group["sgid"]) for group in groups] # [print(group["sgid"]) for group in groups]
for group in groups: for group in groups:
# 6 Server Admin/ 13 Operator / 15 Root # 6 Server Admin/ 13 Operator / 15 Root
# if (group["sgid"] == "6") or (group["sgid"] == "13") or (group["sgid"] == "15"): # if (group["sgid"] == "6") or (group["sgid"] == "13") or (group["sgid"] == "15"):
if group["sgid"] == "15": if group["sgid"] == "15":
print("ISADMIN: True") print("* ISADMIN: True")
return True return True
else: else:
continue continue
print("ISADMIN: False") print("* ISADMIN: False")
return False return False
def lookupcommand(self, msg, invkr): def lookupcommand(self, msg, invkr):
@ -228,8 +234,8 @@ class MyTeamspeakBot:
commandstring = msg.split(" ") commandstring = msg.split(" ")
command = commandstring[0] command = commandstring[0]
parameter = commandstring[1:] parameter = commandstring[1:]
print(command) print(f"* {command}")
print(parameter) print(f"* {parameter}")
if command == "!annoy": if command == "!annoy":
try: try:
@ -238,7 +244,7 @@ class MyTeamspeakBot:
self.poke(msg=msg, usr=target) self.poke(msg=msg, usr=target)
except IndexError: except IndexError:
err = "Please use the command like this: !annoy TARGET MESSAGE" err = "Please use the command like this: !annoy TARGET MESSAGE"
self.con.sendtextmessage(targetmode=1, target=invkr, msg=err) self.bot.sendtextmessage(targetmode=1, target=invkr, msg=err)
pass pass
elif command == "!kickall": elif command == "!kickall":
@ -253,12 +259,12 @@ class MyTeamspeakBot:
self.poke(msg=msg) self.poke(msg=msg)
except IndexError: except IndexError:
err = "Please use the command like this: !pingall MESSAGE" err = "Please use the command like this: !pingall MESSAGE"
self.con.sendtextmessage(targetmode=1, target=invkr, msg=err) self.bot.sendtextmessage(targetmode=1, target=invkr, msg=err)
pass pass
else: else:
err = "Unknown Command:[{0}]".format(command) err = "Unknown Command:[{0}]".format(command)
self.con.sendtextmessage(targetmode=1, target=invkr, msg=err) self.bot.sendtextmessage(targetmode=1, target=invkr, msg=err)
def printable_clientinfo(self, client): def printable_clientinfo(self, client):
""" """
@ -266,7 +272,7 @@ class MyTeamspeakBot:
""" """
usrd = {} usrd = {}
info = self.con.clientinfo(clid=client) info = self.bot.clientinfo(clid=client)
temp = info._data[0].split() temp = info._data[0].split()
for t1 in temp: for t1 in temp:
t2 = t1.decode("utf-8") t2 = t1.decode("utf-8")
@ -286,12 +292,12 @@ class MyTeamspeakBot:
""" """
clients = self.con.clientlist() clients = self.bot.clientlist()
clients_cldbid = [client["client_database_id"] for client in clients if client["client_type"] != "1"] clients_cldbid = [client["client_database_id"] for client in clients if client["client_type"] != "1"]
clients = self.con.clientlist(groups=True) clients = self.bot.clientlist(groups=True)
clients_groups = [client["client_servergroups"] for client in clients if client["client_type"] != "1"] clients_groups = [client["client_servergroups"] for client in clients if client["client_type"] != "1"]
print(clients_groups) print(f"* {clients_groups}")
# ---------------------------------------------------------------------------------------------------------------------- # ----------------------------------------------------------------------------------------------------------------------