mirror of https://gitlab.com/litecord/litecord.git
enable FakeApp to create Quart instances
- use a wrapper for app_context inside manager command handlers
This commit is contained in:
parent
0cc1062c52
commit
c44e184e6e
|
|
@ -19,9 +19,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
import argparse
|
import argparse
|
||||||
|
import inspect
|
||||||
from sys import argv
|
from sys import argv
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
|
|
||||||
|
from quart import Quart
|
||||||
from logbook import Logger
|
from logbook import Logger
|
||||||
|
|
||||||
from run import init_app_managers, init_app_db
|
from run import init_app_managers, init_app_db
|
||||||
|
|
@ -48,6 +50,20 @@ class FakeApp:
|
||||||
voice = None
|
voice = None
|
||||||
guild_store = None
|
guild_store = None
|
||||||
|
|
||||||
|
def make_app(self) -> Quart:
|
||||||
|
app = Quart(__name__)
|
||||||
|
app.config.from_object(self.config)
|
||||||
|
fields = [
|
||||||
|
field
|
||||||
|
for (field, _val) in inspect.getmembers(self)
|
||||||
|
if not field.startswith("__")
|
||||||
|
]
|
||||||
|
|
||||||
|
for field in fields:
|
||||||
|
setattr(app, field, getattr(self, field))
|
||||||
|
|
||||||
|
return app
|
||||||
|
|
||||||
|
|
||||||
def init_parser():
|
def init_parser():
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
|
|
@ -63,14 +79,18 @@ def init_parser():
|
||||||
def main(config):
|
def main(config):
|
||||||
"""Start the script"""
|
"""Start the script"""
|
||||||
loop = asyncio.get_event_loop()
|
loop = asyncio.get_event_loop()
|
||||||
|
# TODO make cfg import from Quart.config.from_object
|
||||||
cfg = getattr(config, config.MODE)
|
cfg = getattr(config, config.MODE)
|
||||||
app = FakeApp(cfg.__dict__)
|
app = FakeApp(cfg.__dict__)
|
||||||
|
|
||||||
# initialize argparser
|
|
||||||
parser = init_parser()
|
parser = init_parser()
|
||||||
|
|
||||||
loop.run_until_complete(init_app_db(app))
|
loop.run_until_complete(init_app_db(app))
|
||||||
|
|
||||||
|
async def _ctx_wrapper(fake_app, args):
|
||||||
|
app = fake_app.make_app()
|
||||||
|
async with app.app_context():
|
||||||
|
await args.func(fake_app, args)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if len(argv) < 2:
|
if len(argv) < 2:
|
||||||
parser.print_help()
|
parser.print_help()
|
||||||
|
|
@ -83,7 +103,7 @@ def main(config):
|
||||||
init_app_managers(app, voice=False)
|
init_app_managers(app, voice=False)
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
loop.run_until_complete(args.func(app, args))
|
loop.run_until_complete(_ctx_wrapper(app, args))
|
||||||
except Exception:
|
except Exception:
|
||||||
log.exception("error while running command")
|
log.exception("error while running command")
|
||||||
finally:
|
finally:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue