forked from Clam-/pyBurlyBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyBurlyBot.py
71 lines (58 loc) · 2.29 KB
/
pyBurlyBot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#pyBurlyBot
#win32 codepage fix (http://stackoverflow.com/a/3259271) :
from codecs import register, lookup
from os import name
if name == "nt": register(lambda name: lookup('utf-8') if name == 'cp65001' else None)
from os.path import exists
from os import getcwdu
from os.path import join
from sys import exit, stdout, path
from argparse import ArgumentParser
# twisted imports
from twisted.python import log
from twisted.internet import reactor
#BurlyBot imports
from util.settings import Settings, ConfigException
if __name__ == '__main__':
#TODO: make botdir an argument maybe
Settings.botdir = getcwdu()
# Add module dir to env PYTHONPATH for win32 multiprocess compatibility
path.append(join(Settings.botdir, "modules"))
# temporary logging
templog = log.startLogging(stdout)
print "Starting pyBurlyBot, press CTRL+C to quit."
parser = ArgumentParser(description="Internet bort pyBurlyBot",
epilog="pyBurlyBot requires a config file to be specified to run.")
parser.add_argument("-c", "--create-config", action="store_true", dest="createconfig",
default=False, help="Creates example config. CONFIGFILE if specified else BurlyBot.json")
parser.add_argument("-f", "--force", action="store_true", dest="force",
default=False, help="Force overwrite of existing config when creating config.")
# CONSIDER: this could easily support multiple config files I guess
# but changing Settings to support this would be kind of intense I think.
parser.add_argument('config', nargs="?", metavar="CONFIGFILE", default="BurlyBot.json")
args = parser.parse_args()
# create-config
if args.createconfig:
if not args.config: args.config = "BurlyBot.json"
print "Creating configuration..."
if exists(args.config) and not args.force:
print "Error: NEWCONFIGFILE (%s) exists. Use --force (-f) to force overwrite. Bailing." % args.config
exit(1)
Settings.configfile = args.config
Settings.saveOptions()
print "Done."
exit(0)
if args.config and exists(args.config):
Settings.configfile = args.config
else:
print "Error: Settings file (%s) not found." % args.config
exit(2)
try:
Settings.load()
except ConfigException as e:
print "Error:", e
exit(2)
Settings.initialize(logger=templog)
# start reactor (which in a sense starts bot proper)
reactor.run()
Settings.hardshutdown()