|
|
@ -1,11 +1,13 @@ |
|
|
|
import re |
|
|
|
import os |
|
|
|
import six |
|
|
|
import gevent |
|
|
|
import inspect |
|
|
|
import importlib |
|
|
|
|
|
|
|
from six.moves import reload_module |
|
|
|
from holster.threadlocal import ThreadLocal |
|
|
|
from gevent.wsgi import WSGIServer |
|
|
|
|
|
|
|
from disco.types.guild import GuildMember |
|
|
|
from disco.bot.plugin import Plugin |
|
|
@ -63,6 +65,13 @@ class BotConfig(Config): |
|
|
|
The serialization format plugin configuration files are in. |
|
|
|
plugin_config_dir : str |
|
|
|
The directory plugin configuration is located within. |
|
|
|
http_enabled : bool |
|
|
|
Whether to enable the built-in Flask server which allows plugins to handle |
|
|
|
and route HTTP requests. |
|
|
|
http_host : str |
|
|
|
The host string for the HTTP Flask server (if enabled) |
|
|
|
http_port : int |
|
|
|
The port for the HTTP Flask server (if enabled) |
|
|
|
""" |
|
|
|
levels = {} |
|
|
|
plugins = [] |
|
|
@ -90,6 +99,10 @@ class BotConfig(Config): |
|
|
|
storage_serializer = 'json' |
|
|
|
storage_path = 'storage.json' |
|
|
|
|
|
|
|
http_enabled = False |
|
|
|
http_host = '0.0.0.0' |
|
|
|
http_port = 7575 |
|
|
|
|
|
|
|
|
|
|
|
class Bot(LoggingClass): |
|
|
|
""" |
|
|
@ -132,6 +145,13 @@ class Bot(LoggingClass): |
|
|
|
if self.client.config.manhole_enable: |
|
|
|
self.client.manhole_locals['bot'] = self |
|
|
|
|
|
|
|
if self.config.http_enabled: |
|
|
|
from flask import Flask |
|
|
|
self.log.info('Starting HTTP server bound to %s:%s', self.config.http_host, self.config.http_port) |
|
|
|
self.http = Flask('disco') |
|
|
|
self.http_server = WSGIServer((self.config.http_host, self.config.http_port), self.http) |
|
|
|
self.http_server_greenlet = gevent.spawn(self.http_server.serve_forever) |
|
|
|
|
|
|
|
self.plugins = {} |
|
|
|
self.group_abbrev = {} |
|
|
|
|
|
|
|