FitTrackee/fittrackee/__main__.py

99 lines
2.5 KiB
Python
Raw Normal View History

2020-09-17 16:08:57 +02:00
# source for StandaloneApplication class:
# http://docs.gunicorn.org/en/stable/custom.html
import os
2021-01-02 19:28:03 +01:00
from typing import Dict, Optional
import click
import gunicorn.app.base
2021-01-20 16:47:00 +01:00
from flask import Flask
from flask_migrate import upgrade
2021-01-20 16:47:00 +01:00
from fittrackee import create_app
from fittrackee.users.exceptions import UserNotFoundException
from fittrackee.users.utils.admin import UserManagerService
2022-05-28 20:01:14 +02:00
HOST = os.getenv('HOST', '127.0.0.1')
2020-09-19 13:56:14 +02:00
PORT = os.getenv('PORT', '5000')
WORKERS = os.getenv('APP_WORKERS', 1)
BASEDIR = os.path.abspath(os.path.dirname(__file__))
WARNING_MESSAGE = (
"\nThis command is deprecated, it will be removed in a next version.\n"
"Please use ftcli instead.\n"
)
app = create_app()
class StandaloneApplication(gunicorn.app.base.BaseApplication):
2021-01-02 19:28:03 +01:00
def __init__(
self, current_app: Flask, options: Optional[Dict] = None
) -> None:
self.options = options or {}
self.application = current_app
super().__init__()
2021-01-02 19:28:03 +01:00
def load_config(self) -> None:
config = {
key: value
for key, value in self.options.items()
if key in self.cfg.settings and value is not None
}
for key, value in config.items():
self.cfg.set(key.lower(), value)
2021-01-02 19:28:03 +01:00
def load(self) -> Flask:
return self.application
# DEPRECATED COMMANDS
@click.group()
def users_cli() -> None:
pass
@users_cli.command('set_admin')
@click.argument('username')
def set_admin(username: str) -> None:
"""
[deprecated] Set admin rights for given user.
It will be removed in a next version.
"""
print(WARNING_MESSAGE)
with app.app_context():
try:
user_manager_service = UserManagerService(username)
user_manager_service.update(
is_admin=True,
)
print(f"User '{username}' updated.")
except UserNotFoundException:
print(f"User '{username}' not found.")
def upgrade_db() -> None:
"""
[deprecated] Apply migrations.
It will be removed in a next version.
"""
print(WARNING_MESSAGE)
with app.app_context():
upgrade(directory=BASEDIR + '/migrations')
2022-11-27 08:40:45 +01:00
def worker() -> None:
raise SystemExit(
"Error: this command is disabled, "
"it will be removed in a next version.\n"
"Please use flask-dramatiq CLI instead ('flask worker')."
)
2021-01-02 19:28:03 +01:00
def main() -> None:
options = {'bind': f'{HOST}:{PORT}', 'workers': WORKERS}
StandaloneApplication(app, options).run()
if __name__ == '__main__':
2020-09-17 16:08:57 +02:00
app.run()