1ea6db0facde2323823d4e61a6253fc2142fae52
[csit.git] / resources / tools / 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
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
29     logging.basicConfig(
30         format=C.LOG_FORMAT,
31         datefmt=C.LOG_DATE_FORMAT,
32         level=C.LOG_LEVEL
33     )
34
35     logging.info("Application started.")
36
37     app = Flask(__name__, instance_relative_config=False)
38     app.config.from_object(u"config.Config")
39
40     with app.app_context():
41         # Import parts of our core Flask app.
42         from . import routes
43
44         assets = Environment()
45         assets.init_app(app)
46
47         # Set the time period for Trending
48         if C.TIME_PERIOD is None or C.TIME_PERIOD > C.MAX_TIME_PERIOD:
49             time_period = C.MAX_TIME_PERIOD
50         else:
51             time_period = C.TIME_PERIOD
52
53         # Import Dash applications.
54         from .news.news import init_news
55         app = init_news(app)
56
57         from .stats.stats import init_stats
58         app = init_stats(app, time_period=time_period)
59
60         from .trending.trending import init_trending
61         app = init_trending(app, time_period=time_period)
62
63         from .report.report import init_report
64         app = init_report(app, releases=C.RELEASES)
65
66     return app
67
68
69 app = init_app()