141 lines
4.5 KiB
Python
141 lines
4.5 KiB
Python
from asyncio.tasks import sleep
|
|
import os
|
|
import sys
|
|
import re
|
|
import psutil
|
|
import subprocess
|
|
import platform
|
|
import time
|
|
import config as config
|
|
import art
|
|
|
|
clearScreen = lambda: os.system('cls' if os.name == 'nt' else 'clear')
|
|
|
|
urlMatcher = re.compile("(https?:(/{1,3}|[a-z0-9%])|[a-z0-9.-]+[.](com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|Ja|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw))")
|
|
|
|
def contains_url(input: str):
|
|
containsURL = re.search(urlMatcher, input.lower()) is not None
|
|
return containsURL
|
|
|
|
def get_args(text: str) -> list:
|
|
return text.split(" ")
|
|
|
|
def does_contain_OnlyNumbers(text):
|
|
isJustNumbers = False
|
|
print("checking numbers")
|
|
try:
|
|
for x in range(10):
|
|
if str(x) in str(text):
|
|
isJustNumbers = True
|
|
else:
|
|
isJustNumbers = False
|
|
except:
|
|
pass
|
|
|
|
return isJustNumbers
|
|
|
|
def rescale_value(value, min, max):
|
|
#print("trying Rescale")
|
|
returnValue = (value - min) / (max - min)
|
|
#print("got ", returnValue)
|
|
return returnValue
|
|
|
|
def get_dir(selected_dir):
|
|
"""
|
|
Checks for the tts directory, and will create it if it does not exist
|
|
:return: the relative file path of the tts dir
|
|
"""
|
|
dir = os.path.join(os.getcwd(), selected_dir) # this is platform-agnostic
|
|
if not os.path.exists(dir):
|
|
os.mkdir(dir)
|
|
return dir
|
|
|
|
def contains_slur(input: str):
|
|
containsSlur: bool = False
|
|
parsedMessage = input.split(" ")
|
|
for word in parsedMessage:
|
|
for slur in config.slurList:
|
|
if word.lower() == slur:
|
|
containsSlur = True
|
|
break
|
|
if containsSlur:
|
|
break
|
|
|
|
if containsSlur:
|
|
print("<{ slur detected! }> ")
|
|
return containsSlur
|
|
|
|
def parse_line(message: str):
|
|
first_space = False
|
|
start = -1
|
|
idx = -1
|
|
for x in range(0, len(message)):
|
|
c = message[x]
|
|
if c == ' ':
|
|
if first_space:
|
|
idx = x
|
|
break
|
|
else:
|
|
first_space = True
|
|
pass
|
|
else:
|
|
first_space = True
|
|
if start == -1:
|
|
start = x
|
|
|
|
if idx == -1:
|
|
idx = len(message)
|
|
|
|
command = message[start:idx]
|
|
rest = message[idx + 1:]
|
|
return command, rest
|
|
|
|
def isRunningInDocker():
|
|
isD = os.getenv('ISDOCKER')
|
|
if isD is None:
|
|
return False
|
|
return isD == "cat"
|
|
|
|
def hard_shutdown():
|
|
current_system_pid = os.getpid()
|
|
|
|
ThisSystem = psutil.Process(current_system_pid)
|
|
ThisSystem.terminate()
|
|
|
|
def restart_self():
|
|
|
|
#current_system_pid = os.getpid()
|
|
#os.startfile("python C:/praxis/main.py")
|
|
#subprocess.run("python C:/praxis/main.py")
|
|
#subprocess.call("python main.py", shell=True)
|
|
if platform.system() == 'Windows':
|
|
os.system('start cmd /k python main.py')
|
|
hard_shutdown()
|
|
if platform.system() == 'Linux':
|
|
os.system('xfce4-terminal -e "python main.py"')
|
|
hard_shutdown()
|
|
|
|
#os.system('python twitch_script.py')
|
|
#os.system('python discord_script.py')
|
|
|
|
def restart_target():
|
|
pass
|
|
|
|
def launch_target(inputScript: str):
|
|
cmd = "start cmd /k python " + inputScript
|
|
os.system(cmd)
|
|
|
|
def splashScreen():
|
|
if not config.skip_splashScreenClear:
|
|
clearScreen()
|
|
art.tprint("----------",font="slant")
|
|
art.tprint("Praxis Bot",font="graffiti")
|
|
art.tprint("----------",font="slant")
|
|
print("-Maintained by Alex Orid, TheCuriousNerd.com\nFor help visit discord.gg/thecuriousnerd")
|
|
print("ver: " + config.praxisVersion_Alpha + config.praxisVersion_Delta + config.praxisVersion_Omega)
|
|
print("\n\n\n")
|
|
if not config.skip_splashScreenSleep:
|
|
time.sleep(3)
|
|
|
|
if __name__ == "__main__":
|
|
splashScreen() |