2016-04-10 14:23:27 +00:00
|
|
|
from werkzeug.contrib.fixers import ProxyFix
|
2016-08-05 08:20:41 +00:00
|
|
|
from flask import Flask, request, session, redirect, url_for
|
|
|
|
from flask_login import LoginManager
|
2018-06-12 16:00:21 +00:00
|
|
|
from flask_sqlalchemy import SQLAlchemy as SA
|
2018-06-11 03:58:47 +00:00
|
|
|
from flask_migrate import Migrate
|
2018-08-19 08:29:50 +00:00
|
|
|
from flask_oauthlib.client import OAuth
|
2018-06-12 16:00:21 +00:00
|
|
|
|
|
|
|
# subclass SQLAlchemy to enable pool_pre_ping
|
|
|
|
class SQLAlchemy(SA):
|
|
|
|
def apply_pool_defaults(self, app, options):
|
|
|
|
SA.apply_pool_defaults(self, app, options)
|
|
|
|
options["pool_pre_ping"] = True
|
|
|
|
|
2015-12-13 09:34:12 +00:00
|
|
|
|
2018-06-10 13:16:28 +00:00
|
|
|
from app.assets import assets
|
|
|
|
|
2015-12-13 09:34:12 +00:00
|
|
|
app = Flask(__name__)
|
|
|
|
app.config.from_object('config')
|
2016-04-10 14:23:27 +00:00
|
|
|
app.wsgi_app = ProxyFix(app.wsgi_app)
|
|
|
|
|
2018-06-10 13:16:28 +00:00
|
|
|
assets.init_app(app)
|
|
|
|
|
2018-04-12 04:18:44 +00:00
|
|
|
#### CONFIGURE LOGGER ####
|
|
|
|
from app.lib.log import logger
|
|
|
|
logging = logger('powerdns-admin', app.config['LOG_LEVEL'], app.config['LOG_FILE']).config()
|
|
|
|
|
2015-12-13 09:34:12 +00:00
|
|
|
login_manager = LoginManager()
|
|
|
|
login_manager.init_app(app)
|
2018-08-19 08:29:50 +00:00
|
|
|
db = SQLAlchemy(app) # database
|
|
|
|
migrate = Migrate(app, db) # flask-migrate
|
|
|
|
oauth = OAuth(app) # oauth
|
2018-01-20 16:17:02 +00:00
|
|
|
|
|
|
|
if app.config.get('SAML_ENABLED') and app.config.get('SAML_ENCRYPT'):
|
|
|
|
from app.lib import certutil
|
|
|
|
if not certutil.check_certificate():
|
|
|
|
certutil.create_self_signed_cert()
|
2018-08-19 08:29:50 +00:00
|
|
|
|
|
|
|
from app import models, views
|