lenticular_cloud2/lenticular_cloud/app.py

77 lines
2.5 KiB
Python
Raw Normal View History

2020-05-09 18:00:07 +00:00
from flask.app import Flask
2020-05-21 11:20:27 +00:00
from flask import g, redirect, request
2020-05-09 18:00:07 +00:00
from flask.helpers import url_for
import time
2020-05-10 14:54:53 +00:00
import subprocess
from ory_hydra_client import Client
2022-02-06 22:57:01 +00:00
import os
2020-05-09 18:00:07 +00:00
from ldap3 import Connection, Server, ALL
from . import model
from .pki import Pki
from .hydra import hydra_service
from .translations import init_babel
2020-05-09 18:00:07 +00:00
2020-05-10 14:54:53 +00:00
def get_git_hash():
try:
return subprocess.check_output(['git', 'rev-parse', 'HEAD'])[:10].decode()
except Exception:
return ''
2020-05-09 18:00:07 +00:00
def create_app() -> Flask:
2022-02-06 22:57:01 +00:00
name = "lenticular_cloud"
app = Flask(name, template_folder='template')
2020-05-09 18:00:07 +00:00
app.config.from_pyfile('application.cfg')
2022-02-06 22:57:01 +00:00
active_cfg = os.getenv('CONFIG_FILE', 'production.cfg')
app.config.from_pyfile(active_cfg)
2020-05-09 18:00:07 +00:00
2020-05-10 14:54:53 +00:00
app.jinja_env.globals['GIT_HASH'] = get_git_hash()
2020-05-09 18:00:07 +00:00
#app.ldap_orm = Connection(app.config['LDAP_URL'], app.config['LDAP_BIND_DN'], app.config['LDAP_BIND_PW'], auto_bind=True)
server = Server(app.config['LDAP_URL'], get_info=ALL)
app.ldap_conn = Connection(server, app.config['LDAP_BIND_DN'], app.config['LDAP_BIND_PW'], auto_bind=True)
model.ldap_conn = app.ldap_conn
model.base_dn = app.config['LDAP_BASE_DN']
2022-02-20 15:52:06 +00:00
from .model import db, migrate
2020-05-21 11:20:27 +00:00
db.init_app(app)
2022-02-20 15:52:06 +00:00
migrate.init_app(app, db)
# with app.app_context():
# db.create_all()
2020-05-21 11:20:27 +00:00
init_babel(app)
2020-05-09 18:00:07 +00:00
2020-05-21 11:20:27 +00:00
#init hydra admin api
# hydra_config = hydra.Configuration(
# host=app.config['HYDRA_ADMIN_URL'],
# username=app.config['HYDRA_ADMIN_USER'],
# password=app.config['HYDRA_ADMIN_PASSWORD'])
hydra_service.set_hydra_client(Client(base_url=app.config['HYDRA_ADMIN_URL']))
from .views import auth_views, frontend_views, init_login_manager, api_views, pki_views, admin_views, oauth2_views
init_login_manager(app)
#oauth2.init_app(app)
2020-05-09 18:00:07 +00:00
app.register_blueprint(auth_views)
app.register_blueprint(frontend_views)
2020-05-21 11:20:27 +00:00
app.register_blueprint(api_views)
app.register_blueprint(pki_views)
app.register_blueprint(admin_views)
app.register_blueprint(oauth2_views)
2020-05-09 18:00:07 +00:00
@app.before_request
def befor_request():
request_start_time = time.time()
g.request_time = lambda: "%.5fs" % (time.time() - request_start_time)
app.lenticular_services = {}
for service_name, service_config in app.config['LENTICULAR_CLOUD_SERVICES'].items():
app.lenticular_services[service_name] = model.Service.from_config(service_name, service_config)
app.pki = Pki(app.config['PKI_PATH'], app.config['DOMAIN'])
return app