2022-09-02 11:24:14 +00:00
|
|
|
from apifairy import APIFairy
|
2021-09-15 10:31:53 +00:00
|
|
|
from config import Config
|
2022-06-28 10:30:02 +00:00
|
|
|
from docker import DockerClient
|
2019-07-05 12:47:35 +00:00
|
|
|
from flask import Flask
|
2022-04-04 11:31:09 +00:00
|
|
|
from flask_apscheduler import APScheduler
|
2022-05-05 13:10:03 +00:00
|
|
|
from flask_assets import Environment
|
2023-03-13 15:22:42 +00:00
|
|
|
from flask_breadcrumbs import Breadcrumbs, default_breadcrumb_root
|
2019-07-05 12:47:35 +00:00
|
|
|
from flask_login import LoginManager
|
2019-07-08 08:53:54 +00:00
|
|
|
from flask_mail import Mail
|
2022-09-02 11:24:14 +00:00
|
|
|
from flask_marshmallow import Marshmallow
|
2021-09-15 10:31:53 +00:00
|
|
|
from flask_migrate import Migrate
|
2020-06-02 14:51:08 +00:00
|
|
|
from flask_paranoid import Paranoid
|
2019-08-21 12:41:38 +00:00
|
|
|
from flask_socketio import SocketIO
|
2019-07-05 12:47:35 +00:00
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
2021-12-08 10:25:33 +00:00
|
|
|
from flask_hashids import Hashids
|
2019-08-13 12:10:50 +00:00
|
|
|
|
2019-07-05 12:47:35 +00:00
|
|
|
|
2022-09-02 11:24:14 +00:00
|
|
|
apifairy = APIFairy()
|
2022-06-28 10:30:02 +00:00
|
|
|
assets = Environment()
|
2023-03-13 15:22:42 +00:00
|
|
|
breadcrumbs = Breadcrumbs()
|
2022-06-28 10:30:02 +00:00
|
|
|
db = SQLAlchemy()
|
|
|
|
docker_client = DockerClient()
|
|
|
|
hashids = Hashids()
|
|
|
|
login = LoginManager()
|
2022-02-17 08:06:18 +00:00
|
|
|
login.login_view = 'auth.login'
|
|
|
|
login.login_message = 'Please log in to access this page.'
|
2022-09-02 11:24:14 +00:00
|
|
|
ma = Marshmallow()
|
2022-06-28 10:30:02 +00:00
|
|
|
mail = Mail()
|
2022-10-04 11:02:11 +00:00
|
|
|
migrate = Migrate(compare_type=True)
|
2022-06-28 10:30:02 +00:00
|
|
|
paranoid = Paranoid()
|
2022-02-17 08:06:18 +00:00
|
|
|
paranoid.redirect_view = '/'
|
2022-06-28 10:30:02 +00:00
|
|
|
scheduler = APScheduler()
|
|
|
|
socketio = SocketIO()
|
2019-07-10 11:41:48 +00:00
|
|
|
|
2019-07-03 08:31:23 +00:00
|
|
|
|
2021-12-08 10:25:33 +00:00
|
|
|
def create_app(config: Config = Config) -> Flask:
|
2021-12-07 13:18:05 +00:00
|
|
|
''' Creates an initialized Flask (WSGI Application) object. '''
|
2023-05-15 10:00:13 +00:00
|
|
|
app = Flask(__name__)
|
2021-12-08 10:25:33 +00:00
|
|
|
app.config.from_object(config)
|
2022-04-22 13:27:52 +00:00
|
|
|
config.init_app(app)
|
2022-06-28 10:30:02 +00:00
|
|
|
docker_client.login(
|
2022-07-04 12:11:10 +00:00
|
|
|
app.config['NOPAQUE_DOCKER_REGISTRY_USERNAME'],
|
2022-06-28 10:30:02 +00:00
|
|
|
password=app.config['NOPAQUE_DOCKER_REGISTRY_PASSWORD'],
|
|
|
|
registry=app.config['NOPAQUE_DOCKER_REGISTRY']
|
|
|
|
)
|
2019-07-03 13:40:45 +00:00
|
|
|
|
2022-09-02 11:24:14 +00:00
|
|
|
apifairy.init_app(app)
|
2021-01-18 12:22:00 +00:00
|
|
|
assets.init_app(app)
|
2023-03-13 15:22:42 +00:00
|
|
|
breadcrumbs.init_app(app)
|
2019-07-05 12:47:35 +00:00
|
|
|
db.init_app(app)
|
2021-12-08 10:25:33 +00:00
|
|
|
hashids.init_app(app)
|
2021-09-15 10:31:53 +00:00
|
|
|
login.init_app(app)
|
2022-09-02 11:24:14 +00:00
|
|
|
ma.init_app(app)
|
2019-07-08 08:53:54 +00:00
|
|
|
mail.init_app(app)
|
2021-09-15 10:31:53 +00:00
|
|
|
migrate.init_app(app, db)
|
2020-06-02 14:51:08 +00:00
|
|
|
paranoid.init_app(app)
|
2022-06-28 10:30:02 +00:00
|
|
|
scheduler.init_app(app)
|
2022-05-05 13:10:03 +00:00
|
|
|
socketio.init_app(app, message_queue=app.config['NOPAQUE_SOCKETIO_MESSAGE_QUEUE_URI']) # noqa
|
2019-07-03 08:31:23 +00:00
|
|
|
|
2021-09-13 14:36:48 +00:00
|
|
|
from .admin import bp as admin_blueprint
|
2023-03-14 13:24:52 +00:00
|
|
|
default_breadcrumb_root(admin_blueprint, '.admin')
|
2019-09-23 14:11:01 +00:00
|
|
|
app.register_blueprint(admin_blueprint, url_prefix='/admin')
|
2021-09-13 14:36:48 +00:00
|
|
|
|
2021-09-14 10:52:23 +00:00
|
|
|
from .api import bp as api_blueprint
|
|
|
|
app.register_blueprint(api_blueprint, url_prefix='/api')
|
|
|
|
|
2021-09-13 14:36:48 +00:00
|
|
|
from .auth import bp as auth_blueprint
|
2023-03-13 15:22:42 +00:00
|
|
|
default_breadcrumb_root(auth_blueprint, '.')
|
2023-05-11 14:33:21 +00:00
|
|
|
app.register_blueprint(auth_blueprint)
|
2021-09-13 14:36:48 +00:00
|
|
|
|
2022-07-11 10:14:01 +00:00
|
|
|
from .contributions import bp as contributions_blueprint
|
2023-03-20 14:33:49 +00:00
|
|
|
default_breadcrumb_root(contributions_blueprint, '.contributions')
|
2022-07-11 10:14:01 +00:00
|
|
|
app.register_blueprint(contributions_blueprint, url_prefix='/contributions')
|
2022-02-03 11:39:16 +00:00
|
|
|
|
2021-09-13 14:36:48 +00:00
|
|
|
from .corpora import bp as corpora_blueprint
|
2023-07-13 10:42:47 +00:00
|
|
|
from .corpora.cqi_over_sio import CQiNamespace
|
2023-03-20 14:33:49 +00:00
|
|
|
default_breadcrumb_root(corpora_blueprint, '.corpora')
|
2023-05-15 10:00:13 +00:00
|
|
|
app.register_blueprint(corpora_blueprint, cli_group='corpus', url_prefix='/corpora')
|
2023-07-24 08:02:35 +00:00
|
|
|
socketio.on_namespace(CQiNamespace('/cqi_over_sio'))
|
2023-05-15 10:00:13 +00:00
|
|
|
|
|
|
|
from .errors import bp as errors_bp
|
|
|
|
app.register_blueprint(errors_bp)
|
2021-09-13 14:36:48 +00:00
|
|
|
|
|
|
|
from .jobs import bp as jobs_blueprint
|
2023-03-20 14:33:49 +00:00
|
|
|
default_breadcrumb_root(jobs_blueprint, '.jobs')
|
2019-11-04 08:03:31 +00:00
|
|
|
app.register_blueprint(jobs_blueprint, url_prefix='/jobs')
|
2021-09-13 14:36:48 +00:00
|
|
|
|
|
|
|
from .main import bp as main_blueprint
|
2023-03-13 15:22:42 +00:00
|
|
|
default_breadcrumb_root(main_blueprint, '.')
|
2023-05-15 10:00:13 +00:00
|
|
|
app.register_blueprint(main_blueprint, cli_group=None)
|
2021-09-13 14:36:48 +00:00
|
|
|
|
|
|
|
from .services import bp as services_blueprint
|
2023-03-13 15:22:42 +00:00
|
|
|
default_breadcrumb_root(services_blueprint, '.services')
|
2019-09-23 14:11:01 +00:00
|
|
|
app.register_blueprint(services_blueprint, url_prefix='/services')
|
2021-09-13 14:36:48 +00:00
|
|
|
|
2023-03-17 14:56:37 +00:00
|
|
|
from .settings import bp as settings_blueprint
|
|
|
|
default_breadcrumb_root(settings_blueprint, '.settings')
|
|
|
|
app.register_blueprint(settings_blueprint, url_prefix='/settings')
|
|
|
|
|
2022-07-04 12:11:10 +00:00
|
|
|
from .users import bp as users_blueprint
|
2023-03-20 14:33:49 +00:00
|
|
|
default_breadcrumb_root(users_blueprint, '.users')
|
2023-12-21 13:27:50 +00:00
|
|
|
app.register_blueprint(users_blueprint, cli_group='user', url_prefix='/users')
|
2022-07-04 12:11:10 +00:00
|
|
|
|
2023-07-25 13:18:57 +00:00
|
|
|
from .workshops import bp as workshops_blueprint
|
|
|
|
app.register_blueprint(workshops_blueprint, url_prefix='/workshops')
|
|
|
|
|
2019-07-03 08:31:23 +00:00
|
|
|
return app
|