diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3f7084b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.8-buster + +WORKDIR /Praxis + +COPY requirements.txt requirements.txt +RUN pip3 install -r requirements.txt + +COPY . . + +CMD [ "python3", "main.py"] #Uncomment to start with the Docker Container \ No newline at end of file diff --git a/README.md b/README.md index 17afa01..43acb28 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,18 @@ A chatbot to help with live stream production and effects. ___ +# Docker: + +## Docker Info: + +Currently to build the container run the following command. + +`docker create -p 2501:2501 -e ISDOCKER=cat --name praxis praxis` + +To start the bot with **User_Module** activated use this. + +`docker exec -ti praxis python3 main.py` + # Credentials: ## Credentials Setup: diff --git a/chyron_module.py b/chyron_module.py index d032ac4..670151a 100644 --- a/chyron_module.py +++ b/chyron_module.py @@ -16,7 +16,7 @@ class Chyron_Module(): self.addItem( "WeekDays", "► Weekdays: ", - "Daily Stream @ 12pm Noon EST") + "Daily Streams @ 12pm Noon EST") self.addItem( "FriSat", "► Friday & Saturday: ", diff --git a/config.py b/config.py index 3d8b39a..ee2fa26 100644 --- a/config.py +++ b/config.py @@ -33,8 +33,8 @@ block_DiscordChannelsMessaging = [""] # Blocks the ability to send messages to D blockAll_DiscordChannelsMessaging = False # Blocks the ability to send messages to Discord channels blockAll_DiscordPrivateMessaging = False # Private Messaging not yet implemented -selected_DiscordTTSChannels = ["431129571308339210"] autoEnabled_DiscordChannelsTTS = False +selected_DiscordTTSChannels = ["431129571308339210"] block_DiscordChannelsTTS = [""] # block supersedes the tts_enabled bool blockAll_DiscordChannelsTTS = False # blockAll supersedes the force bool and force list and tts_enabled bool force_DiscordChannelsTTS = [""] # force supersedes the block list diff --git a/discord_script.py b/discord_script.py index 28a212d..bba7c16 100644 --- a/discord_script.py +++ b/discord_script.py @@ -138,7 +138,13 @@ class Discord_Module(discord.Client): #print("isBlocked: " + str(isBlocked)) #print("isForced: " + str(isForced)) if (not await self.contains_slur(message)) and (await self.isTTS_URL_Enabled(message)): - if self.tts_enabled and not isBlocked and not config.blockAll_DiscordChannelsTTS or isForced or config.forceAll_DiscordChatChannelsTTS: + print(message.channel.id, message.channel.id, message.channel.id) + isMessageChannelInList = False + for TTS_C_id in config.selected_DiscordTTSChannels: + print(TTS_C_id) + if int(TTS_C_id) == int(message.channel.id): + isMessageChannelInList = True + if self.tts_enabled and (isMessageChannelInList) and not isBlocked and not config.blockAll_DiscordChannelsTTS or isForced or config.forceAll_DiscordChatChannelsTTS: if not message.content.startswith('!'): text_to_say: str = "%s says, %s" % (message.author.display_name, message.content) channel_text = "%s user msg" % message.channel diff --git a/main.py b/main.py index f9a47c4..98c6f60 100644 --- a/main.py +++ b/main.py @@ -36,8 +36,9 @@ def twitch_module_init(dbCert, twitchCert): twitchModule_.tts_enabled = config.autoEnabled_TwitchChannelsTTS twitchModule_.whitelisted_users = config.whitelisted_TwitchPowerUsers + print("[TWITCH Module]>", "Loading Channels...") for twitchChannel in config.autoJoin_TwitchChannels: - print("joining channel function") + print("joining twitch channel:", twitchChannel) twitchModule_.join_channel(None, twitchChannel) def discord_module_init(dbCert, discordCert): @@ -63,6 +64,8 @@ def user_module_init(dbCert, Empty): userModule_.main() def thread_main(): + if utility.isRunningInDocker() == True: + print("<[DOCKER Detected]>") if not config.skip_splashScreen: utility.splashScreen() global credentials_manager @@ -100,16 +103,19 @@ def thread_main(): thread_.start() if config.user_module == True: - thread_ = threading.Thread(target=user_module_init, args=(dbCert, None)) - threads.append(thread_) - thread_.start() + if utility.isRunningInDocker() == False: + config.user_module = False + thread_ = threading.Thread(target=user_module_init, args=(dbCert, None)) + threads.append(thread_) + thread_.start() print("---Post Thread Creation Test---") for t in threads: t.join() print("---Point of no return---") - input() + if utility.isRunningInDocker() == False: + input() diff --git a/tts.py b/tts.py index 54790c0..6e026aa 100644 --- a/tts.py +++ b/tts.py @@ -6,13 +6,18 @@ import requests from gtts import gTTS from playsound import playsound +import utilities_script as utility import config streamLabsUrl = "https://streamlabs.com/polly/speak" def tts(inputText: str, *args): outpath = create_speech_file(inputText) - playsound(outpath) + if utility.isRunningInDocker() == True: + print("Docker Detected, skipping playsound()") + else: + print("Playing Sound...") + playsound(outpath) def create_speech_gtts(input_text: str): diff --git a/user_module.py b/user_module.py index 7891130..823b2ce 100644 --- a/user_module.py +++ b/user_module.py @@ -9,6 +9,8 @@ from commands.command_base import AbstractCommand from cooldowns import Cooldown_Module +import utilities_script as utility + class User_Module(): def __init__(self): super().__init__() @@ -19,6 +21,9 @@ class User_Module(): def main(self): print("\nWaiting on User input...\n") inputLoop = True + if utility.isRunningInDocker() == True: + inputLoop = False + print("\nNo User's Input Allowed") while inputLoop: keyboardInput = input() message = UserMessage() diff --git a/utilities_script.py b/utilities_script.py index fa77b76..fdf5a81 100644 --- a/utilities_script.py +++ b/utilities_script.py @@ -14,11 +14,11 @@ 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 + containsURL = re.search(urlMatcher, input.lower()) is not None + return containsURL def get_args(text: str) -> list: - return text.split(" ") + return text.split(" ") def does_contain_OnlyNumbers(text): isJustNumbers = False @@ -51,60 +51,66 @@ def get_dir(selected_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: + containsSlur: bool = False + parsedMessage = input.split(" ") + for word in parsedMessage: + for slur in config.slurList: + if word.lower() == slur: + containsSlur = True break - if containsSlur: - print("<{ slur detected! }> ") - return containsSlur + break + + if containsSlur: + print("<{ slur detected! }> ") + return containsSlur + +def isRunningInDocker(): + isD = os.getenv('ISDOCKER') + if isD is None: + return False + return isD == "cat" def hard_shutdown(): - current_system_pid = os.getpid() + current_system_pid = os.getpid() - ThisSystem = psutil.Process(current_system_pid) - ThisSystem.terminate() + 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() + #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') + #os.system('python twitch_script.py') + #os.system('python discord_script.py') def restart_target(): - pass + pass def launch_target(inputScript: str): - cmd = "start cmd /k python " + inputScript - os.system(cmd) + 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 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() \ No newline at end of file + splashScreen() \ No newline at end of file