lenticular_cloud2/lenticular_cloud/app.py

87 lines
2.6 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
from flask_babel import Babel
from flask_login import LoginManager
import time
2020-05-10 14:54:53 +00:00
import subprocess
2020-05-21 11:20:27 +00:00
import ory_hydra_client as hydra
2022-02-04 20:47:01 +00:00
import ory_hydra_client.api.admin_api as hydra_admin_api
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
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
2020-05-21 11:20:27 +00:00
def init_oauth2(app):
pass
2022-02-06 22:57:01 +00:00
def create_app():
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']
from .model import db
2020-05-21 11:20:27 +00:00
db.init_app(app)
with app.app_context():
db.create_all()
2020-05-09 18:00:07 +00:00
app.babel = Babel(app)
2020-05-21 11:20:27 +00:00
init_oauth2(app)
2020-05-09 18:00:07 +00:00
app.login_manager = LoginManager(app)
2020-05-21 11:20:27 +00:00
#init hydra admin api
2020-06-21 09:42:23 +00:00
hydra_config = hydra.Configuration(
2020-06-21 11:58:57 +00:00
host=app.config['HYDRA_ADMIN_URL'],
2020-06-21 09:42:23 +00:00
username=app.config['HYDRA_ADMIN_USER'],
password=app.config['HYDRA_ADMIN_PASSWORD'])
2020-05-21 11:20:27 +00:00
hydra_client = hydra.ApiClient(hydra_config)
2022-02-04 20:47:01 +00:00
app.hydra_api = hydra_admin_api.AdminApi(hydra_client)
2020-05-21 11:20:27 +00:00
from .views import auth_views, frontend_views, init_login_manager, api_views, pki_views, admin_views
init_login_manager(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)
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)
from .translations import init_babel
init_babel(app)
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