2021-09-15 12:31:53 +02:00
|
|
|
from config import Config
|
2019-07-05 14:47:35 +02:00
|
|
|
from flask import Flask
|
2022-04-04 13:31:09 +02:00
|
|
|
from flask_apscheduler import APScheduler
|
2019-07-05 14:47:35 +02:00
|
|
|
from flask_login import LoginManager
|
2019-07-08 10:53:54 +02:00
|
|
|
from flask_mail import Mail
|
2021-09-15 12:31:53 +02:00
|
|
|
from flask_migrate import Migrate
|
2020-06-02 16:51:08 +02:00
|
|
|
from flask_paranoid import Paranoid
|
2019-08-21 14:41:38 +02:00
|
|
|
from flask_socketio import SocketIO
|
2019-07-05 14:47:35 +02:00
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
2021-12-08 11:25:33 +01:00
|
|
|
from flask_hashids import Hashids
|
2021-01-18 13:22:00 +01:00
|
|
|
import flask_assets
|
2019-08-13 14:10:50 +02:00
|
|
|
|
2019-07-05 14:47:35 +02:00
|
|
|
|
2021-12-07 14:18:05 +01:00
|
|
|
assets: flask_assets.Environment = flask_assets.Environment()
|
|
|
|
db: SQLAlchemy = SQLAlchemy()
|
2021-12-08 11:25:33 +01:00
|
|
|
hashids: Hashids = Hashids()
|
2021-12-07 14:18:05 +01:00
|
|
|
login: LoginManager = LoginManager()
|
2022-02-17 09:06:18 +01:00
|
|
|
login.login_view = 'auth.login'
|
|
|
|
login.login_message = 'Please log in to access this page.'
|
2021-12-07 14:18:05 +01:00
|
|
|
mail: Mail = Mail()
|
|
|
|
migrate: Migrate = Migrate()
|
|
|
|
paranoid: Paranoid = Paranoid()
|
2022-02-17 09:06:18 +01:00
|
|
|
paranoid.redirect_view = '/'
|
2022-04-04 13:31:09 +02:00
|
|
|
scheduler: APScheduler = APScheduler() # TODO: Use this!
|
2021-12-07 14:18:05 +01:00
|
|
|
socketio: SocketIO = SocketIO()
|
2019-07-10 13:41:48 +02:00
|
|
|
|
2019-07-03 10:31:23 +02:00
|
|
|
|
2021-12-08 11:25:33 +01:00
|
|
|
def create_app(config: Config = Config) -> Flask:
|
2021-12-07 14:18:05 +01:00
|
|
|
''' Creates an initialized Flask (WSGI Application) object. '''
|
|
|
|
app: Flask = Flask(__name__)
|
2021-12-08 11:25:33 +01:00
|
|
|
app.config.from_object(config)
|
2022-04-22 15:27:52 +02:00
|
|
|
config.init_app(app)
|
2019-07-03 15:40:45 +02:00
|
|
|
|
2021-01-18 13:22:00 +01:00
|
|
|
assets.init_app(app)
|
2019-07-05 14:47:35 +02:00
|
|
|
db.init_app(app)
|
2021-12-08 11:25:33 +01:00
|
|
|
hashids.init_app(app)
|
2021-09-15 12:31:53 +02:00
|
|
|
login.init_app(app)
|
2019-07-08 10:53:54 +02:00
|
|
|
mail.init_app(app)
|
2021-09-15 12:31:53 +02:00
|
|
|
migrate.init_app(app, db)
|
2020-06-02 16:51:08 +02:00
|
|
|
paranoid.init_app(app)
|
2020-10-21 13:07:10 +02:00
|
|
|
socketio.init_app(
|
2022-02-15 09:25:34 +01:00
|
|
|
app,
|
|
|
|
message_queue=app.config['NOPAQUE_SOCKETIO_MESSAGE_QUEUE_URI']
|
|
|
|
)
|
2019-07-03 10:31:23 +02:00
|
|
|
|
2022-04-25 11:32:10 +02:00
|
|
|
from app import socketio_event_listeners
|
|
|
|
from app import sqlalchemy_event_listeners
|
2020-11-09 16:14:19 +01:00
|
|
|
|
2021-09-13 16:36:48 +02:00
|
|
|
from .admin import bp as admin_blueprint
|
2019-09-23 16:11:01 +02:00
|
|
|
app.register_blueprint(admin_blueprint, url_prefix='/admin')
|
2021-09-13 16:36:48 +02:00
|
|
|
|
2021-09-14 12:52:23 +02:00
|
|
|
from .api import bp as api_blueprint
|
|
|
|
app.register_blueprint(api_blueprint, url_prefix='/api')
|
|
|
|
|
2021-09-13 16:36:48 +02:00
|
|
|
from .auth import bp as auth_blueprint
|
2019-07-04 15:17:51 +02:00
|
|
|
app.register_blueprint(auth_blueprint, url_prefix='/auth')
|
2021-09-13 16:36:48 +02:00
|
|
|
|
2022-02-03 12:39:16 +01:00
|
|
|
from .contribute import bp as contribute_blueprint
|
|
|
|
app.register_blueprint(contribute_blueprint, url_prefix='/contribute')
|
|
|
|
|
2021-09-13 16:36:48 +02:00
|
|
|
from .corpora import bp as corpora_blueprint
|
2019-10-31 10:25:48 +01:00
|
|
|
app.register_blueprint(corpora_blueprint, url_prefix='/corpora')
|
2021-09-13 16:36:48 +02:00
|
|
|
|
|
|
|
from .errors import bp as errors_blueprint
|
2020-10-12 13:26:35 +02:00
|
|
|
app.register_blueprint(errors_blueprint)
|
2021-09-13 16:36:48 +02:00
|
|
|
|
|
|
|
from .jobs import bp as jobs_blueprint
|
2019-11-04 09:03:31 +01:00
|
|
|
app.register_blueprint(jobs_blueprint, url_prefix='/jobs')
|
2021-09-13 16:36:48 +02:00
|
|
|
|
|
|
|
from .main import bp as main_blueprint
|
2019-07-05 14:47:35 +02:00
|
|
|
app.register_blueprint(main_blueprint)
|
2021-09-13 16:36:48 +02:00
|
|
|
|
|
|
|
from .services import bp as services_blueprint
|
2019-09-23 16:11:01 +02:00
|
|
|
app.register_blueprint(services_blueprint, url_prefix='/services')
|
2021-09-13 16:36:48 +02:00
|
|
|
|
|
|
|
from .settings import bp as settings_blueprint
|
2020-10-23 13:52:01 +02:00
|
|
|
app.register_blueprint(settings_blueprint, url_prefix='/settings')
|
2019-08-15 15:56:53 +02:00
|
|
|
|
2019-07-03 10:31:23 +02:00
|
|
|
return app
|