add .help command
This commit is contained in:
parent
890d2c47a4
commit
c53d0ce4ed
11
myTS3.py
11
myTS3.py
|
@ -4,14 +4,13 @@ TBD
|
||||||
|
|
||||||
__author__ = "Lukas Mahler"
|
__author__ = "Lukas Mahler"
|
||||||
__version__ = "0.0.0"
|
__version__ = "0.0.0"
|
||||||
__date__ = "07.10.2021"
|
__date__ = "13.10.2021"
|
||||||
__email__ = "m@hler.eu"
|
__email__ = "m@hler.eu"
|
||||||
__status__ = "Development"
|
__status__ = "Development"
|
||||||
|
|
||||||
# Default
|
# Default
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
import json
|
|
||||||
import os.path
|
import os.path
|
||||||
|
|
||||||
# Custom
|
# Custom
|
||||||
|
@ -107,7 +106,7 @@ class TSbot:
|
||||||
time.sleep(5)
|
time.sleep(5)
|
||||||
|
|
||||||
# Notify connected admins
|
# Notify connected admins
|
||||||
self.notifyAdmin()
|
commands.notifyAdmin(self)
|
||||||
|
|
||||||
# ----------- LOOP HERE -------------
|
# ----------- LOOP HERE -------------
|
||||||
while self.running:
|
while self.running:
|
||||||
|
@ -176,7 +175,7 @@ class TSbot:
|
||||||
|
|
||||||
# New text message
|
# New text message
|
||||||
elif event_type == "notifytextmessage":
|
elif event_type == "notifytextmessage":
|
||||||
msg = event[0]["msg"]
|
msg = event[0]["msg"].replace("\n", " ")
|
||||||
invkr = event[0]["invokername"]
|
invkr = event[0]["invokername"]
|
||||||
invkr_id = event[0]["invokerid"]
|
invkr_id = event[0]["invokerid"]
|
||||||
self.pipeOut(f'Message | From: "{invkr}" | Content: "{msg}"')
|
self.pipeOut(f'Message | From: "{invkr}" | Content: "{msg}"')
|
||||||
|
@ -347,6 +346,7 @@ class TSbot:
|
||||||
.btc / .eth
|
.btc / .eth
|
||||||
.dot / .ada
|
.dot / .ada
|
||||||
.follow target
|
.follow target
|
||||||
|
.help / .h
|
||||||
.info clid
|
.info clid
|
||||||
.kickall message
|
.kickall message
|
||||||
.list channel/clients
|
.list channel/clients
|
||||||
|
@ -394,6 +394,9 @@ class TSbot:
|
||||||
elif command == ".follow":
|
elif command == ".follow":
|
||||||
commands.follow(self, invkr_id, parameter)
|
commands.follow(self, invkr_id, parameter)
|
||||||
|
|
||||||
|
elif command == ".help" or command == ".h":
|
||||||
|
commands.help(self, invkr_id)
|
||||||
|
|
||||||
elif command == ".info":
|
elif command == ".info":
|
||||||
commands.info(self, invkr_id)
|
commands.info(self, invkr_id)
|
||||||
|
|
||||||
|
|
|
@ -4,20 +4,22 @@ TBD
|
||||||
|
|
||||||
__author__ = "Lukas Mahler"
|
__author__ = "Lukas Mahler"
|
||||||
__version__ = "0.0.0"
|
__version__ = "0.0.0"
|
||||||
__date__ = "07.10.2021"
|
__date__ = "13.10.2021"
|
||||||
__email__ = "m@hler.eu"
|
__email__ = "m@hler.eu"
|
||||||
__status__ = "Development"
|
__status__ = "Development"
|
||||||
|
|
||||||
|
|
||||||
# Default
|
# Default
|
||||||
|
import sys
|
||||||
import json
|
import json
|
||||||
import time
|
import time
|
||||||
|
import inspect
|
||||||
|
|
||||||
# Custom
|
# Custom
|
||||||
import ts3
|
import ts3
|
||||||
|
|
||||||
# Self
|
# Self
|
||||||
import util
|
from src import util
|
||||||
|
|
||||||
|
|
||||||
def follow(self, invkr_id, parameter):
|
def follow(self, invkr_id, parameter):
|
||||||
|
@ -25,7 +27,7 @@ def follow(self, invkr_id, parameter):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if not parameter[0]:
|
if not parameter:
|
||||||
err = "Please use the command like this: .follow TARGET"
|
err = "Please use the command like this: .follow TARGET"
|
||||||
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=err)
|
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=err)
|
||||||
return
|
return
|
||||||
|
@ -35,7 +37,7 @@ def follow(self, invkr_id, parameter):
|
||||||
clients = self.bot.clientfind(pattern=target)
|
clients = self.bot.clientfind(pattern=target)
|
||||||
clids = [client["clid"] for client in clients]
|
clids = [client["clid"] for client in clients]
|
||||||
if len(clids) == 1:
|
if len(clids) == 1:
|
||||||
cid = self.bot.clientinfo(clids[0])["cid"]
|
cid = self.bot.clientinfo(clid=int(clids[0]))[0]["cid"]
|
||||||
self.bot.clientmove(clid=self.myid, cid=cid)
|
self.bot.clientmove(clid=self.myid, cid=cid)
|
||||||
else:
|
else:
|
||||||
self.pipeOut(f"Found multiple matching clients using pattern {target}:{clids}")
|
self.pipeOut(f"Found multiple matching clients using pattern {target}:{clids}")
|
||||||
|
@ -47,7 +49,20 @@ def follow(self, invkr_id, parameter):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
|
def help(self, invkr_id):
|
||||||
|
"""
|
||||||
|
|
||||||
|
"""
|
||||||
|
# Find all functions in this submodule
|
||||||
|
cmds = [f[0] for f in inspect.getmembers(sys.modules[__name__], inspect.isfunction)]
|
||||||
|
msg = f"List of commands:\n{f'{chr(10)}.'.join(cmds)}"
|
||||||
|
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg)
|
||||||
|
|
||||||
|
|
||||||
def info(self, invkr_id):
|
def info(self, invkr_id):
|
||||||
|
"""
|
||||||
|
|
||||||
|
"""
|
||||||
# TODO implement more then just the runtime
|
# TODO implement more then just the runtime
|
||||||
msg = f"Runtime: {util.getRuntime(self.started)}"
|
msg = f"Runtime: {util.getRuntime(self.started)}"
|
||||||
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg)
|
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=msg)
|
||||||
|
|
|
@ -4,7 +4,7 @@ TBD
|
||||||
|
|
||||||
__author__ = "Lukas Mahler"
|
__author__ = "Lukas Mahler"
|
||||||
__version__ = "0.0.0"
|
__version__ = "0.0.0"
|
||||||
__date__ = "30.09.2021"
|
__date__ = "13.10.2021"
|
||||||
__email__ = "m@hler.eu"
|
__email__ = "m@hler.eu"
|
||||||
__status__ = "Development"
|
__status__ = "Development"
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ def getRuntime(started):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
elapsed = time.time() - started
|
elapsed = time.time() - started
|
||||||
runtime = str(timedelta(seconds=elapsed))
|
runtime = str(timedelta(seconds=elapsed)).split(".")[0] # ignore Microseconds
|
||||||
|
|
||||||
return runtime
|
return runtime
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue