2019-12-18 19:02:17 +00:00
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
|
|
|
|
import connexion
|
2019-12-19 16:58:51 +00:00
|
|
|
from flask_cors import CORS
|
2019-12-18 19:02:17 +00:00
|
|
|
from flask_marshmallow import Marshmallow
|
|
|
|
from flask_migrate import Migrate
|
2020-05-13 02:42:02 +00:00
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
|
2019-12-18 19:02:17 +00:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
|
|
|
|
connexion_app = connexion.FlaskApp(__name__)
|
|
|
|
|
|
|
|
app = connexion_app.app
|
|
|
|
app.config.from_object('config.default')
|
2020-03-16 17:47:17 +00:00
|
|
|
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
|
2020-02-18 21:38:56 +00:00
|
|
|
|
2019-12-18 19:02:17 +00:00
|
|
|
if "TESTING" in os.environ and os.environ["TESTING"] == "true":
|
|
|
|
app.config.from_object('config.testing')
|
2020-02-28 16:33:08 +00:00
|
|
|
app.config.from_pyfile('../config/testing.py')
|
2020-02-05 18:43:59 +00:00
|
|
|
else:
|
2020-02-06 19:36:02 +00:00
|
|
|
app.config.root_path = app.instance_path
|
2020-02-05 18:43:59 +00:00
|
|
|
app.config.from_pyfile('config.py', silent=True)
|
2019-12-18 19:02:17 +00:00
|
|
|
|
|
|
|
db = SQLAlchemy(app)
|
2020-01-21 20:21:33 +00:00
|
|
|
""":type: sqlalchemy.orm.SQLAlchemy"""
|
2020-01-14 16:45:12 +00:00
|
|
|
|
|
|
|
session = db.session
|
2020-01-21 20:21:33 +00:00
|
|
|
""":type: sqlalchemy.orm.Session"""
|
2020-01-14 16:45:12 +00:00
|
|
|
|
2019-12-18 19:02:17 +00:00
|
|
|
migrate = Migrate(app, db)
|
|
|
|
ma = Marshmallow(app)
|
|
|
|
|
|
|
|
from crc import models
|
2020-01-14 20:26:39 +00:00
|
|
|
from crc import api
|
2019-12-18 19:02:17 +00:00
|
|
|
|
2020-05-24 04:05:13 +00:00
|
|
|
connexion_app.add_api('api.yml', base_path='/v1.0')
|
2020-05-12 16:23:47 +00:00
|
|
|
|
|
|
|
# Convert list of allowed origins to list of regexes
|
2020-05-12 18:27:17 +00:00
|
|
|
origins_re = [r"^https?:\/\/%s(.*)" % o.replace('.', '\.') for o in app.config['CORS_ALLOW_ORIGINS']]
|
2020-05-16 15:36:48 +00:00
|
|
|
cors = CORS(connexion_app.app, origins=origins_re)
|
2019-12-18 19:02:17 +00:00
|
|
|
|
2020-05-27 02:42:49 +00:00
|
|
|
print('=== USING THESE CONFIG SETTINGS: ===')
|
|
|
|
print('DB_HOST = ', )
|
|
|
|
print('CORS_ALLOW_ORIGINS = ', app.config['CORS_ALLOW_ORIGINS'])
|
|
|
|
print('DEVELOPMENT = ', app.config['DEVELOPMENT'])
|
|
|
|
print('TESTING = ', app.config['TESTING'])
|
|
|
|
print('PRODUCTION = ', app.config['PRODUCTION'])
|
|
|
|
print('PB_BASE_URL = ', app.config['PB_BASE_URL'])
|
|
|
|
print('LDAP_URL = ', app.config['LDAP_URL'])
|
|
|
|
print('APPLICATION_ROOT = ', app.config['APPLICATION_ROOT'])
|
|
|
|
print('PB_ENABLED = ', app.config['PB_ENABLED'])
|
2020-02-18 21:38:56 +00:00
|
|
|
|
2019-12-18 19:02:17 +00:00
|
|
|
@app.cli.command()
|
|
|
|
def load_example_data():
|
|
|
|
"""Load example data into the database."""
|
2019-12-18 19:16:26 +00:00
|
|
|
from example_data import ExampleDataLoader
|
2019-12-30 18:03:57 +00:00
|
|
|
ExampleDataLoader.clean_db()
|
2019-12-18 19:16:26 +00:00
|
|
|
ExampleDataLoader().load_all()
|
2020-05-25 16:29:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.cli.command()
|
|
|
|
def load_example_rrt_data():
|
|
|
|
"""Load example data into the database."""
|
|
|
|
from example_data import ExampleDataLoader
|
|
|
|
ExampleDataLoader.clean_db()
|
|
|
|
ExampleDataLoader().load_rrt()
|