bazarr/bazarr/app.py

54 lines
1.6 KiB
Python
Raw Normal View History

2020-01-21 00:35:55 +00:00
#!/bin/env python
from flask import Flask, redirect
from flask_debugtoolbar import DebugToolbarExtension
from flask_socketio import SocketIO
import os
from get_args import args
from config import base_url
socketio = SocketIO()
def create_app():
# Flask Setup
app = Flask(__name__,
template_folder=os.path.join(os.path.dirname(__file__), '..', 'views'),
2020-02-24 02:47:26 +00:00
static_folder=os.path.join(os.path.dirname(__file__), '..', 'static'),
static_url_path=base_url + 'static')
2020-01-21 00:35:55 +00:00
app.route = prefix_route(app.route, base_url.rstrip('/'))
app.config["SECRET_KEY"] = 'test'
if args.dev:
app.config["DEBUG"] = True
# Flask-Debuger
app.config["DEBUG_TB_ENABLED"] = True
app.config["DEBUG_TB_PROFILER_ENABLED"] = True
app.config["DEBUG_TB_TEMPLATE_EDITOR_ENABLED"] = True
app.config["DEBUG_TB_INTERCEPT_REDIRECTS"] = False
else:
app.config["DEBUG"] = False
# Flask-Debuger
app.config["DEBUG_TB_ENABLED"] = False
toolbar = DebugToolbarExtension(app)
@app.errorhandler(404)
def http_error_handler(error):
return redirect(base_url.rstrip('/')), 302
2020-02-24 02:47:26 +00:00
socketio.init_app(app, path=base_url+'socket.io', cors_allowed_origins='*')
2020-01-21 00:35:55 +00:00
return app
def prefix_route(route_function, prefix='', mask='{0}{1}'):
# Defines a new route function with a prefix.
# The mask argument is a `format string` formatted with, in that order: prefix, route
def newroute(route, *args, **kwargs):
# New function to prefix the route
return route_function(mask.format(prefix, route), *args, **kwargs)
return newroute