improve code quality
This commit is contained in:
parent
55665db5bb
commit
49e3de14a5
22
myTS3.py
22
myTS3.py
|
@ -4,7 +4,7 @@ TBD
|
||||||
|
|
||||||
__author__ = "Lukas Mahler"
|
__author__ = "Lukas Mahler"
|
||||||
__version__ = "0.0.0"
|
__version__ = "0.0.0"
|
||||||
__date__ = "06.10.2021"
|
__date__ = "07.10.2021"
|
||||||
__email__ = "m@hler.eu"
|
__email__ = "m@hler.eu"
|
||||||
__status__ = "Development"
|
__status__ = "Development"
|
||||||
|
|
||||||
|
@ -44,9 +44,8 @@ class TSbot:
|
||||||
self.log = log
|
self.log = log
|
||||||
self.myid = None
|
self.myid = None
|
||||||
self.running = True
|
self.running = True
|
||||||
self.intro = "<Keep this chat open to use commands>"
|
|
||||||
self.started = time.time()
|
self.started = time.time()
|
||||||
self.last_crypto_update = self.started - 1800
|
self.crypto_update = self.started - 1800
|
||||||
|
|
||||||
self.pipeOut(f"Trying to connect to: {self.host}:{self.port}")
|
self.pipeOut(f"Trying to connect to: {self.host}:{self.port}")
|
||||||
|
|
||||||
|
@ -60,7 +59,7 @@ class TSbot:
|
||||||
try:
|
try:
|
||||||
self.bot.clientupdate(client_nickname=self.nickname)
|
self.bot.clientupdate(client_nickname=self.nickname)
|
||||||
except ts3.query.TS3QueryError as e:
|
except ts3.query.TS3QueryError as e:
|
||||||
self.pipeOut("Nickname is already in use", lvl="WARNING")
|
self.pipeOut(e, lvl="WARNING")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
self.pipeOut(f"Successfully connected as: {self.nickname}")
|
self.pipeOut(f"Successfully connected as: {self.nickname}")
|
||||||
|
@ -117,8 +116,8 @@ class TSbot:
|
||||||
self.bot.version()
|
self.bot.version()
|
||||||
|
|
||||||
# Auto-update crypto price channels every 30 minutes
|
# Auto-update crypto price channels every 30 minutes
|
||||||
if self.last_crypto_update + 1800 < time.time():
|
if self.crypto_update + 1800 < time.time():
|
||||||
self.last_crypto_update = time.time()
|
self.crypto_update = time.time()
|
||||||
|
|
||||||
self.lookupcommand(".btc", self.myid)
|
self.lookupcommand(".btc", self.myid)
|
||||||
self.lookupcommand(".dot", self.myid)
|
self.lookupcommand(".dot", self.myid)
|
||||||
|
@ -148,7 +147,7 @@ class TSbot:
|
||||||
displayname = event[0]['clid']
|
displayname = event[0]['clid']
|
||||||
else:
|
else:
|
||||||
self.pipeOut(event[0])
|
self.pipeOut(event[0])
|
||||||
displayname = "Unresolved"
|
# displayname = "Unresolved"
|
||||||
continue # can't resolve no clid
|
continue # can't resolve no clid
|
||||||
|
|
||||||
self.pipeOut(f"Client [{displayname}] connected.")
|
self.pipeOut(f"Client [{displayname}] connected.")
|
||||||
|
@ -158,7 +157,8 @@ class TSbot:
|
||||||
self.pipeOut(f"* {event[0]}", lvl="debug")
|
self.pipeOut(f"* {event[0]}", lvl="debug")
|
||||||
# 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.bot.sendtextmessage(targetmode=1, target=event[0]["clid"], msg=self.intro)
|
msg = "<Keep this chat open to use commands>"
|
||||||
|
self.bot.sendtextmessage(targetmode=1, target=event[0]["clid"], msg=msg)
|
||||||
else:
|
else:
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
|
@ -225,7 +225,8 @@ class TSbot:
|
||||||
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.bot.sendtextmessage(targetmode=1, target=clid, msg=self.intro)
|
msg = "<Keep this chat open to use commands>"
|
||||||
|
self.bot.sendtextmessage(targetmode=1, target=clid, msg=msg)
|
||||||
|
|
||||||
if not self.whitelisted:
|
if not self.whitelisted:
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
@ -238,11 +239,8 @@ class TSbot:
|
||||||
clients = self.bot.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:
|
|
||||||
self.bot.clientpoke(msg=msg, clid=clid)
|
self.bot.clientpoke(msg=msg, clid=clid)
|
||||||
# TODO
|
# TODO
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
def poke(self, msg=None, n=10, delay=0.2, usr='all'):
|
def poke(self, msg=None, n=10, delay=0.2, usr='all'):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue