feat(uti): Move directory
[csit.git] / csit.infra.dash / app / pal / __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     logging.info("Application started.")
35
36     app = Flask(__name__, instance_relative_config=False)
37     app.config.from_object("config.Config")
38
39     with app.app_context():
40         # Import parts of our core Flask app.
41         from . import routes
42
43         assets = Environment()
44         assets.init_app(app)
45
46         # Compile static assets.
47         sass_bundle = Bundle(
48             "sass/lux.scss",
49             filters="libsass",
50             output="dist/css/bootstrap.css",
51             depends="**/*.scss",
52             extra={
53                 "rel": "stylesheet"
54             }
55         )
56         assets.register("sass_all", sass_bundle)
57         sass_bundle.build()
58
59         # Set the time period for Trending
60         if C.TIME_PERIOD is None or C.TIME_PERIOD > C.MAX_TIME_PERIOD:
61             time_period = C.MAX_TIME_PERIOD
62         else:
63             time_period = C.TIME_PERIOD
64
65         # Import Dash applications.
66         from .news.news import init_news
67         app = init_news(app)
68
69         from .stats.stats import init_stats
70         app = init_stats(app, time_period=time_period)
71
72         from .trending.trending import init_trending
73         app = init_trending(app, time_period=time_period)
74
75         from .report.report import init_report
76         app = init_report(app, releases=C.RELEASES)
77
78     return app
79
80
81 app = init_app()