#!/usr/bin/env python # Bot Wrapper by neersighted # Import required modules import os import sys import subprocess import json import re # Files configfile = os.path.isfile("./config") os.path.isfile("./bot.py") # Colors nocol = "\033[1;m" red = "\033[1;31m" green = "\033[1;32m" # Messages firstrun = "Welclome to your first run of: " usage = "usage: ./cloudbot {start|stop|restart|status}" iusage = "{1|start} {2|stop} {3|restart} {4|status} {5|exit}" quit = "Goodbye! Thanks for using CloudBot!" error1 = red + "Neither screen nor daemon is installed! "\ "This program cannot run! {ERROR 1}" + nocol error2 = red + "Could not find bot.py! Are you in the wrong folder? "\ "{ERROR 2}" + nocol error3 = red + "Invalid choice, exiting! {ERROR 3}" + nocol error4 = red + "Program killed by user! {ERROR 4}" + nocol error5 = red + "Invalid backend in config! {ERROR 5}" + nocol error6 = red + "Author error! We be derpin'! {ERROR 6}" + nocol # Commands pwd = os.getcwd() clearlog = ": > ./bot.log" start = "echo " + "'" + error1 + "'" stop = "echo " + "'" + error1 + "'" restart = "echo " + "'" + error1 + "'" pid = "echo 'Cannot get pid'" daemonstart = "daemon -r -n cloudbot -O " + pwd + \ "/bot.log python " + pwd + "/bot.py" daemonstop = "daemon -n cloudbot --stop" daemonrestart = "daemon -n cloudbot --restart" daemonpid = "pidof /usr/bin/daemon" screenstart = "screen -S cloudbot -dm python" + pwd +\ "/bot.py >>" + pwd + "/bot.log 2>&1" screenstop = "kill `pidof /usr/bin/screen`" screenrestart = stop + " && " + start screenpid = "pidof /usr/bin/screen" # Checks if configfile: try: config = json.load(open('config')) command = ":" except ValueError, e: print 'error: malformed config', e else: config = False command = "python bot.py" daemoncheck = subprocess.check_output("locate /usr/bin/daemon", shell=True) daemon = re.match(r'^/usr/bin/daemon$', daemoncheck) screencheck = subprocess.check_output("locate /usr/bin/screen", shell=True) screen = re.match(r'^/usr/bin/screen$', screencheck) if configfile: backend = config.get("wrapper", {}).get("backend", "daemon") else: backend = False try: runningcheck = subprocess.check_output("ps ax|grep cloudbot|"\ "grep -v grep|grep -v ./cloudbot", shell=True) running = re.match(r'^[1-9]+', runningcheck) except (subprocess.CalledProcessError): running = False # Set commands if daemon: if backend == "daemon": start = daemonstart stop = daemonstop restart = daemonrestart pid = daemonpid elif backend == "screen": start = screenstart stop = screenstop restart = screenrestart pid = screenpid elif backend == False: print firstrun else: print error5 elif screen: if backend == "daemon": start = daemonstart stop = daemonstop restart = daemonrestart pid = daemonpid elif backend == "screen": start = screenstart stop = screenstop restart = screenrestart pid = screenpid elif backend == False: print firstrun else: print error5 else: command = command # Fancy banner print " ______ __ ______ __ __ "\ " _______ .______ ______ .___________." print " / || | / __ \ | | | | "\ "| \ | _ \ / __ \ | |" print "| ,----'| | | | | | | | | | "\ "| .--. || |_) | | | | | `---| |----`" print "| | | | | | | | | | | | "\ "| | | || _ < | | | | | | " print "| `----.| `----.| `--' | | `--' | "\ "| '--' || |_) | | `--' | | | " print " \______||_______| \______/ \______/ "\ "|_______/ |______/ \______/ |__| " print "http://git.io/cloudbot "\ " by lukeroge" # Read arguments/turn interactive try: if running: if (len(sys.argv) > 1): if (sys.argv[1] == 'start'): print "Bot is alread running, cannot start!" elif (sys.argv[1] == 'stop'): command = stop print "Stopping... (" + backend + ")" elif (sys.argv[1] == 'restart'): command = restart print "Restarting... (" + backend + ")" elif (sys.argv[1] == 'status'): command = pid print green + "Bot is running! " + nocol elif (sys.argv[1] == 'clear'): command = clearlog else: command = command print usage exit else: print "{1|start} {2|stop} {3|restart} {4|status} {5|exit}" read = int(raw_input('Please choose a option: ')) if read == 1: print "Bot is alread running, cannot start!" elif read == 2: command = stop print "Stopping... (" + backend + ")" elif read == 3: command = restart print "Restarting... (" + backend + ")" elif read == 4: command = pid print green + "Bot is running! " + nocol elif read == 5: print quit else: print error3 else: if (len(sys.argv) > 1): if (sys.argv[1] == 'start'): command = start print "Starting... (" + backend + ")" elif (sys.argv[1] == 'stop'): print "Bot is not running, cannot stop!" elif (sys.argv[1] == 'restart'): print "Bot is not running, cannot restart!" elif (sys.argv[1] == 'status'): print red + "Bot is not running!" + nocol elif (sys.argv[1] == 'clear'): command = clearlog else: command = command print usage exit else: print iusage read = int(raw_input('Please choose a option: ')) if read == 1: command = start print "Starting... (" + backend + ")" elif read == 2: print "Bot is not running, cannot stop!" elif read == 3: command = restart elif read == 4: print red + "Bot is not running, cannot restart!" + nocol elif read == 5: print quit else: print error3 exit # Pretify errors except (TypeError, ValueError), e: print error3 exit except (KeyboardInterrupt), e: print error4 exit except (NameError, SyntaxError), e: print error6 exit # Check for bot files if botfile: command = command else: print error2 exit # Call command subprocess.call(command, shell=True) print quit exit