change to event type monitoring / new commands doing channel related stuff

This commit is contained in:
Lukas 2021-09-23 00:42:15 +02:00
parent 9092e68ed4
commit 4a5c3a4552
2 changed files with 122 additions and 46 deletions

View File

@ -1,2 +1,3 @@
# myTS3 # myTS3
Personal Teamspeak 3 Bot doing fun stuff.

167
myTS3.py
View File

@ -3,13 +3,14 @@ TBD
""" """
__author__ = "Lukas Mahler" __author__ = "Lukas Mahler"
__version__ = "0.1.0" __version__ = "0.2.0"
__date__ = "19.09.2021" __date__ = "23.09.2021"
__email__ = "m@hler.eu" __email__ = "m@hler.eu"
__status__ = "Development" __status__ = "Development"
# Default # Default
import os import os
import json
from time import sleep from time import sleep
# Custom # Custom
@ -33,7 +34,7 @@ class MyTeamspeakBot:
self.myid = None self.myid = None
self.running = True self.running = True
self.intro = "< Keep this chat open to use commands. >" self.intro = "<Keep this chat open to use commands>"
print(f"* Trying to connect to: {self.host}:{self.port}") print(f"* Trying to connect to: {self.host}:{self.port}")
@ -57,28 +58,32 @@ class MyTeamspeakBot:
# Find my client id # Find my client id
me = self.bot.clientfind(pattern=self.nickname) me = self.bot.clientfind(pattern=self.nickname)
if len(me) == 1: if len(me) == 1:
self.myid = me["clid"][0] self.myid = me[0]["clid"]
else: else:
raise ValueError("x Can't find my own client id.") raise ValueError("x Can't find my own client id.")
''' if you want to move the Bot to a certain channel (instead of the defualt channel, you can do: ''' ''' if you want to move the Bot to a certain channel (instead of the defualt channel, you can do: '''
# ts3conn.clientmove(clid=selfid,cid=129) # self.bot.clientmove(clid=self.myid,cid=129)
# Subscribe to a certain channel # Subscribe to a server movement events
self.bot.servernotifyregister(event="server") self.bot.servernotifyregister(event="server")
# Subscribe to privat chat messages # Subscribe to privat chat messages
self.bot.servernotifyregister(event="textprivate") self.bot.servernotifyregister(event="textprivate")
# Subscribe to chat channel messages
self.bot.servernotifyregister(event="textchannel")
# Subscribe to channel movement events # Subscribe to channel movement events
# ts3conn.servernotifyregister(event="channel",id_=0) # self.bot.servernotifyregister(event="channel", id_=0)
# Notify connected admins # Notify connected admins
sleep(5)
self.notifyAdmin() self.notifyAdmin()
# ----------- LOOP HERE ------------- # ----------- LOOP HERE -------------
while self.running: while self.running:
# ts3conn.send_keepalive() # self.bot.send_keepalive()
print("* Waiting for a new Event...") print("* Waiting for a new Event...")
self.bot.version() self.bot.version()
@ -91,36 +96,46 @@ class MyTeamspeakBot:
except ts3.query.TS3TimeoutError: except ts3.query.TS3TimeoutError:
pass pass
else: else:
print(f"* Got Event | length={len(event[0])}") event_type = event.event
print(f"* Got Event | length={len(event[0])} | {event_type}")
if len(event[0]) > 15: # Client Connect
if event[0]["reasonid"] == "0": if event_type == "notifycliententerview":
print(f"* Client [{event[0]['client_nickname']}] connected.") 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(f"* {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.bot.sendtextmessage(targetmode=1, target=event[0]["clid"], msg=self.intro) self.bot.sendtextmessage(targetmode=1, target=event[0]["clid"], msg=self.intro)
else:
pass
else: else:
pass pass
else:
pass
# Message Event # Client disconnected
elif len(event[0]) == 6: elif event_type == "notifyclientleftview":
print(f"* Clientid [{event[0]['clid']}] disconnected.")
pass
# Text Message
elif event_type == "notifytextmessage":
msg = event[0]["msg"] msg = event[0]["msg"]
invkr = event[0]["invokername"] invkr = event[0]["invokername"]
print(f'* From: "{invkr}"\nMessage: "{msg}"') invkr_id = event[0]["invokerid"]
self.lookupcommand(msg, invkr) print(f'* From: "{invkr}" | Message: "{msg}"')
self.lookupcommand(msg, invkr_id)
def stop(self, invkr): else:
print(f"* Unknown Event: {event.__dict__}")
def stop(self, invkr_id):
""" """
""" """
msg = "I'm out, bye bye!" msg = "I'm out, bye bye!"
self.bot.sendtextmessage(targetmode=1, target=invkr, msg=msg) self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg)
self.running = False self.running = False
def notifyAdmin(self): def notifyAdmin(self):
@ -143,6 +158,7 @@ class MyTeamspeakBot:
for clid in clients: for clid in clients:
try: try:
self.bot.clientpoke(msg=msg, clid=clid) self.bot.clientpoke(msg=msg, clid=clid)
# TODO
except: except:
pass pass
@ -186,9 +202,44 @@ class MyTeamspeakBot:
i += 1 i += 1
return None return None
# def openmsg(): def createChannel(self, name, permanent=False):
"""
# def subscribemsg(): """
if permanent:
new = self.bot.channelcreate(channel_name=name, channel_flag_permanent="1")
else:
new = self.bot.channelcreate(channel_name=name)
return new[0]["cid"]
def editChannelname(self, cid, name):
"""
"""
self.bot.channeledit(cid=cid, channel_name=name)
def list(self, what, invkr_id):
"""
"""
if what == "channel":
mydict = {}
channels = self.bot.channellist()
for channel in channels:
order = channel["channel_order"]
mydict[order] = [channel["channel_name"], channel["cid"]]
mydict = dict(sorted(mydict.items()))
msg = json.dumps(mydict)
elif what == "clients":
msg = self.bot.clientlist()
# TODO
else:
msg = None
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg)
@staticmethod @staticmethod
def isqueryclient(cluid): def isqueryclient(cluid):
@ -196,7 +247,7 @@ class MyTeamspeakBot:
Check if the given client-uid is a query client Check if the given client-uid is a query client
""" """
# client = ts3conn.clientlist(uid=uid) # client = self.bot.clientlist(uid=uid)
# print(client[0]) # print(client[0])
# if client[0]["client_type"] == "1": # if client[0]["client_type"] == "1":
if cluid == "ServerQuery": if cluid == "ServerQuery":
@ -225,7 +276,7 @@ class MyTeamspeakBot:
print("* ISADMIN: False") print("* ISADMIN: False")
return False return False
def lookupcommand(self, msg, invkr): def lookupcommand(self, msg, invkr_id):
""" """
""" """
@ -234,8 +285,7 @@ class MyTeamspeakBot:
commandstring = msg.split(" ") commandstring = msg.split(" ")
command = commandstring[0] command = commandstring[0]
parameter = commandstring[1:] parameter = commandstring[1:]
print(f"* {command}") print(f"* command: {command} / parameter: {parameter} / invkr_id: {invkr_id}")
print(f"* {parameter}")
if command == "!annoy": if command == "!annoy":
try: try:
@ -244,14 +294,38 @@ 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.bot.sendtextmessage(targetmode=1, target=invkr, msg=err) self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=err)
pass pass
elif command == "!kickall": elif command == "!kickall":
self.kickall("test") self.kickall("test") # TODO
elif command == "!test":
cid = self.createChannel("Test")
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=cid)
elif command == "!btc":
self.editChannelname(200, f"[cspacerBTC]Bitcoin: {50000}") # TODO
elif command == "!eth":
self.editChannelname(201, f"[cspacerETH]Ethereum: {3000}") # TODO
elif command == "!list":
try:
self.list(parameter[0], invkr_id)
except IndexError:
err = "Please use the command like this: !list channel/clients"
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=err)
pass
elif command == "!follow":
pass # TODO
elif command == "!rename":
pass # TODO
elif command == "!stop" or command == "!quit" or command == "!q": elif command == "!stop" or command == "!quit" or command == "!q":
self.stop(invkr) self.stop(invkr_id)
elif command == "!pingall": elif command == "!pingall":
try: try:
@ -259,12 +333,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.bot.sendtextmessage(targetmode=1, target=invkr, msg=err) self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=err)
pass pass
else: else:
err = "Unknown Command:[{0}]".format(command) err = f"Unknown Command: [{command}]"
self.bot.sendtextmessage(targetmode=1, target=invkr, msg=err) self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=err)
def printable_clientinfo(self, client): def printable_clientinfo(self, client):
""" """
@ -309,16 +383,17 @@ def main():
raise FileNotFoundError("could not locate .env file") raise FileNotFoundError("could not locate .env file")
dotenv.load_dotenv(dotenv_file) dotenv.load_dotenv(dotenv_file)
dotend_keys = dotenv.dotenv_values() dotend_keys = dotenv.dotenv_values()
if not {"HOST", "PORT", "USER", "PWD", "SID"} <= dotend_keys.keys():
if not {"_HOST", "_PORT", "_USER", "_PWD", "_SID"} <= dotend_keys.keys():
raise ValueError("missing keys in your .env file.") raise ValueError("missing keys in your .env file.")
# Config # Config
conf = dict(host=os.getenv("HOST"), conf = dict(host=os.getenv("_HOST"),
port=os.getenv("PORT"), port=os.getenv("_PORT"),
user=os.getenv("USER"), user=os.getenv("_USER"),
pwd=os.getenv("PWD"), pwd=os.getenv("_PWD"),
sid=os.getenv("SID"), sid=os.getenv("_SID"),
name=os.getenv("NAME")) name=os.getenv("_NAME"))
# Start the Bot Instance # Start the Bot Instance
abot = MyTeamspeakBot(conf) abot = MyTeamspeakBot(conf)