2020-08-27 14:00:14 -04:00
|
|
|
import json
|
2019-12-18 14:02:17 -05:00
|
|
|
import logging
|
|
|
|
import os
|
2020-06-01 19:59:55 -06:00
|
|
|
import sentry_sdk
|
2019-12-18 14:02:17 -05:00
|
|
|
|
|
|
|
import connexion
|
2020-08-27 14:00:14 -04:00
|
|
|
from connexion import ProblemException
|
|
|
|
from flask import Response
|
2019-12-19 11:58:51 -05:00
|
|
|
from flask_cors import CORS
|
2019-12-18 14:02:17 -05:00
|
|
|
from flask_marshmallow import Marshmallow
|
2020-06-04 20:37:28 -06:00
|
|
|
from flask_mail import Mail
|
2019-12-18 14:02:17 -05:00
|
|
|
from flask_migrate import Migrate
|
2020-05-12 22:42:02 -04:00
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
2020-06-01 19:59:55 -06:00
|
|
|
from sentry_sdk.integrations.flask import FlaskIntegration
|
2020-05-12 22:42:02 -04:00
|
|
|
|
2019-12-18 14:02:17 -05:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
|
|
|
|
connexion_app = connexion.FlaskApp(__name__)
|
|
|
|
|
|
|
|
app = connexion_app.app
|
|
|
|
app.config.from_object('config.default')
|
2020-02-18 16:38:56 -05:00
|
|
|
|
2019-12-18 14:02:17 -05:00
|
|
|
if "TESTING" in os.environ and os.environ["TESTING"] == "true":
|
|
|
|
app.config.from_object('config.testing')
|
2020-02-28 11:33:08 -05:00
|
|
|
app.config.from_pyfile('../config/testing.py')
|
2020-02-05 13:43:59 -05:00
|
|
|
else:
|
2020-02-06 14:36:02 -05:00
|
|
|
app.config.root_path = app.instance_path
|
2020-02-05 13:43:59 -05:00
|
|
|
app.config.from_pyfile('config.py', silent=True)
|
2019-12-18 14:02:17 -05:00
|
|
|
|
2020-11-19 11:25:58 -05:00
|
|
|
|
2019-12-18 14:02:17 -05:00
|
|
|
db = SQLAlchemy(app)
|
2020-01-21 15:21:33 -05:00
|
|
|
""":type: sqlalchemy.orm.SQLAlchemy"""
|
2020-01-14 11:45:12 -05:00
|
|
|
|
|
|
|
session = db.session
|
2020-01-21 15:21:33 -05:00
|
|
|
""":type: sqlalchemy.orm.Session"""
|
2020-01-14 11:45:12 -05:00
|
|
|
|
2020-06-25 16:18:42 -06:00
|
|
|
# Mail settings
|
|
|
|
mail = Mail(app)
|
|
|
|
|
2019-12-18 14:02:17 -05:00
|
|
|
migrate = Migrate(app, db)
|
|
|
|
ma = Marshmallow(app)
|
|
|
|
|
|
|
|
from crc import models
|
2020-01-14 15:26:39 -05:00
|
|
|
from crc import api
|
2020-06-16 12:26:25 -04:00
|
|
|
from crc.api import admin
|
2019-12-18 14:02:17 -05:00
|
|
|
|
2020-05-24 00:05:13 -04:00
|
|
|
connexion_app.add_api('api.yml', base_path='/v1.0')
|
2020-05-12 12:23:47 -04:00
|
|
|
|
2020-06-08 07:14:31 -06:00
|
|
|
|
2020-05-12 12:23:47 -04:00
|
|
|
# Convert list of allowed origins to list of regexes
|
2020-05-12 14:27:17 -04:00
|
|
|
origins_re = [r"^https?:\/\/%s(.*)" % o.replace('.', '\.') for o in app.config['CORS_ALLOW_ORIGINS']]
|
2020-05-16 11:36:48 -04:00
|
|
|
cors = CORS(connexion_app.app, origins=origins_re)
|
2019-12-18 14:02:17 -05:00
|
|
|
|
2020-06-08 07:14:31 -06:00
|
|
|
# Sentry error handling
|
2020-07-19 16:40:33 -06:00
|
|
|
if app.config['SENTRY_ENVIRONMENT']:
|
2020-06-01 19:59:55 -06:00
|
|
|
sentry_sdk.init(
|
2020-07-19 16:40:33 -06:00
|
|
|
environment=app.config['SENTRY_ENVIRONMENT'],
|
2020-06-01 19:59:55 -06:00
|
|
|
dsn="https://25342ca4e2d443c6a5c49707d68e9f40@o401361.ingest.sentry.io/5260915",
|
|
|
|
integrations=[FlaskIntegration()]
|
|
|
|
)
|
|
|
|
|
2020-08-27 14:00:14 -04:00
|
|
|
|
|
|
|
# Connexion Error handling
|
|
|
|
def render_errors(exception):
|
|
|
|
from crc.api.common import ApiError, ApiErrorSchema
|
2021-03-08 14:00:03 -05:00
|
|
|
error = ApiError(code=exception.title, message=exception.detail, status_code=exception.status)
|
2020-08-27 14:00:14 -04:00
|
|
|
return Response(ApiErrorSchema().dump(error), status=401, mimetype="application/json")
|
|
|
|
|
|
|
|
|
|
|
|
connexion_app.add_error_handler(ProblemException, render_errors)
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-05-26 22:42:49 -04:00
|
|
|
print('=== USING THESE CONFIG SETTINGS: ===')
|
2020-05-31 16:49:39 -04:00
|
|
|
print('APPLICATION_ROOT = ', app.config['APPLICATION_ROOT'])
|
2020-05-26 22:42:49 -04:00
|
|
|
print('CORS_ALLOW_ORIGINS = ', app.config['CORS_ALLOW_ORIGINS'])
|
2020-05-31 16:49:39 -04:00
|
|
|
print('DB_HOST = ', app.config['DB_HOST'])
|
2020-05-26 22:42:49 -04:00
|
|
|
print('LDAP_URL = ', app.config['LDAP_URL'])
|
2020-05-31 16:49:39 -04:00
|
|
|
print('PB_BASE_URL = ', app.config['PB_BASE_URL'])
|
2020-05-26 22:42:49 -04:00
|
|
|
print('PB_ENABLED = ', app.config['PB_ENABLED'])
|
2020-05-31 16:49:39 -04:00
|
|
|
print('PRODUCTION = ', app.config['PRODUCTION'])
|
|
|
|
print('TESTING = ', app.config['TESTING'])
|
|
|
|
print('TEST_UID = ', app.config['TEST_UID'])
|
|
|
|
print('ADMIN_UIDS = ', app.config['ADMIN_UIDS'])
|
2020-02-18 16:38:56 -05:00
|
|
|
|
2019-12-18 14:02:17 -05:00
|
|
|
@app.cli.command()
|
|
|
|
def load_example_data():
|
|
|
|
"""Load example data into the database."""
|
2019-12-18 14:16:26 -05:00
|
|
|
from example_data import ExampleDataLoader
|
2019-12-30 13:03:57 -05:00
|
|
|
ExampleDataLoader.clean_db()
|
2019-12-18 14:16:26 -05:00
|
|
|
ExampleDataLoader().load_all()
|
2020-12-01 15:47:27 -05:00
|
|
|
ExampleDataLoader().load_default_user()
|
2020-05-25 12:29:05 -04: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()
|
2020-06-05 17:49:55 -04:00
|
|
|
|
2021-01-08 13:23:01 -05:00
|
|
|
|
|
|
|
@app.cli.command()
|
|
|
|
def load_reference_files():
|
|
|
|
"""Load example data into the database."""
|
|
|
|
from example_data import ExampleDataLoader
|
|
|
|
ExampleDataLoader().load_reference_documents()
|
|
|
|
|
2020-06-05 17:49:55 -04:00
|
|
|
@app.cli.command()
|
|
|
|
def clear_db():
|
|
|
|
"""Load example data into the database."""
|
|
|
|
from example_data import ExampleDataLoader
|
|
|
|
ExampleDataLoader.clean_db()
|
2020-06-17 17:11:15 -04:00
|
|
|
|
2021-04-09 08:40:58 -04:00
|
|
|
@app.cli.command()
|
|
|
|
def sync_with_testing():
|
|
|
|
"""Load all the workflows currently on testing into this system."""
|
|
|
|
from crc.api import workflow_sync
|
|
|
|
workflow_sync.sync_all_changed_workflows("https://testing.crconnect.uvadcos.io/api")
|