feat(cdash): Environement fixes
[csit.git] / csit.infra.dash / app / cdash / __init__.py
1 # Copyright (c) 2022 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 """Initialize Flask app.
15 """
16
17 import logging
18
19 from flask import Flask
20 from flask_assets import Environment, Bundle
21
22 from .utils.constants import Constants as C
23
24
25 def init_app():
26     """Construct core Flask application with embedded Dash app.
27     """
28     logging.basicConfig(
29         format=C.LOG_FORMAT,
30         datefmt=C.LOG_DATE_FORMAT,
31         level=C.LOG_LEVEL
32     )
33
34     app = Flask(__name__, instance_relative_config=False)
35     app.logger.info("Application started.")
36     app.config.from_object("config.Config")
37
38     with app.app_context():
39         # Import parts of our core Flask app.
40         from . import routes
41
42         assets = Environment()
43         assets.init_app(app)
44
45         # Compile static assets.
46         sass_bundle = Bundle(
47             "sass/lux.scss",
48             filters="libsass",
49             output="dist/css/bootstrap.css",
50             depends="**/*.scss",
51             extra={
52                 "rel": "stylesheet"
53             }
54         )
55         assets.register("sass_all", sass_bundle)
56         sass_bundle.build()
57
58         # Set the time period for Trending
59         if C.TIME_PERIOD is None or C.TIME_PERIOD > C.MAX_TIME_PERIOD:
60             time_period = C.MAX_TIME_PERIOD
61         else:
62             time_period = C.TIME_PERIOD
63
64         # Import Dash applications.
65         from .news.news import init_news
66         app = init_news(app)
67
68         from .stats.stats import init_stats
69         app = init_stats(app, time_period=time_period)
70
71         from .trending.trending import init_trending
72         app = init_trending(app, time_period=time_period)
73
74         from .report.report import init_report
75         app = init_report(app, releases=C.RELEASES)
76
77     return app
78
79
80 app = init_app()