2017-11-19 14:46:42 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from twisted.internet import reactor
|
|
|
|
from twisted.internet.ssl import DefaultOpenSSLContextFactory
|
2017-12-24 21:04:48 +00:00
|
|
|
#from twisted.python import log
|
|
|
|
#from sys import stdout
|
|
|
|
#log.startLogging(stdout)
|
|
|
|
|
2018-03-14 20:13:40 +00:00
|
|
|
import main
|
2018-02-24 12:42:27 +00:00
|
|
|
|
2018-03-14 20:13:40 +00:00
|
|
|
main.initMain()
|
2017-11-19 14:46:42 +00:00
|
|
|
|
2018-02-22 19:30:31 +00:00
|
|
|
from utils.logging.log import *
|
2019-01-26 18:58:21 +00:00
|
|
|
from utils.loaders.command_loader import loadCommands
|
|
|
|
from core.helper import startBot
|
2018-03-04 13:26:53 +00:00
|
|
|
from core.server import Server, ServerFactory
|
2017-11-24 19:16:08 +00:00
|
|
|
|
2019-01-26 18:58:21 +00:00
|
|
|
loadCommands()
|
|
|
|
|
2017-11-19 14:46:42 +00:00
|
|
|
if __name__ == "__main__":
|
2018-03-04 13:26:53 +00:00
|
|
|
listener = ServerFactory()
|
2018-03-14 20:13:40 +00:00
|
|
|
if main.config["Listener"]["UseSSL"] == True:
|
2019-01-26 01:57:24 +00:00
|
|
|
reactor.listenSSL(main.config["Listener"]["Port"], listener, DefaultOpenSSLContextFactory(main.certPath+main.config["Key"], main.certPath+main.config["Certificate"]), interface=main.config["Listener"]["Address"])
|
2018-03-14 20:13:40 +00:00
|
|
|
log("Threshold running with SSL on %s:%s" % (main.config["Listener"]["Address"], main.config["Listener"]["Port"]))
|
2017-11-19 14:46:42 +00:00
|
|
|
else:
|
2018-03-14 20:13:40 +00:00
|
|
|
reactor.listenTCP(main.config["Listener"]["Port"], listener, interface=main.config["Listener"]["Address"])
|
|
|
|
log("Threshold running on %s:%s" % (main.config["Listener"]["Address"], main.config["Listener"]["Port"]))
|
|
|
|
for i in main.pool.keys():
|
2019-01-26 01:57:24 +00:00
|
|
|
if not "enabled" in main.pool[i]:
|
|
|
|
continue
|
2018-03-14 20:13:40 +00:00
|
|
|
if main.pool[i]["enabled"] == True:
|
2019-01-26 18:58:21 +00:00
|
|
|
startBot(i)
|
2017-11-19 14:46:42 +00:00
|
|
|
|
|
|
|
reactor.run()
|