2018-05-04 11:53:29 +00:00
|
|
|
#!/usr/bin/env python3
|
2016-12-09 07:46:37 +00:00
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
|
|
|
|
'''
|
|
|
|
Flask functions and routes for the dashboard page
|
|
|
|
'''
|
2016-12-09 07:50:36 +00:00
|
|
|
import json
|
2018-07-25 14:48:44 +00:00
|
|
|
import os
|
2020-05-16 20:35:24 +00:00
|
|
|
import sys
|
2016-12-09 12:53:57 +00:00
|
|
|
import datetime
|
2018-07-26 08:34:43 +00:00
|
|
|
import time
|
2016-12-09 07:46:37 +00:00
|
|
|
import flask
|
2018-07-25 14:48:44 +00:00
|
|
|
|
2024-07-04 13:52:20 +00:00
|
|
|
from flask import Flask, render_template, jsonify, request, Blueprint, url_for, stream_with_context
|
2019-06-19 15:02:09 +00:00
|
|
|
|
2024-09-05 14:40:24 +00:00
|
|
|
from Role_Manager import login_admin, login_read_only
|
2019-05-03 14:52:05 +00:00
|
|
|
from flask_login import login_required
|
2016-12-09 07:46:37 +00:00
|
|
|
|
2022-11-28 14:01:40 +00:00
|
|
|
sys.path.append(os.environ['AIL_BIN'])
|
|
|
|
##################################
|
|
|
|
# Import Project packages
|
|
|
|
##################################
|
2023-04-13 12:25:02 +00:00
|
|
|
from lib import ail_queues
|
2022-11-28 14:01:40 +00:00
|
|
|
from lib import ail_updates
|
|
|
|
|
|
|
|
from packages.Date import Date
|
2020-05-16 20:35:24 +00:00
|
|
|
|
2016-12-09 07:46:37 +00:00
|
|
|
# ============ VARIABLES ============
|
|
|
|
import Flask_config
|
|
|
|
|
|
|
|
app = Flask_config.app
|
2019-10-28 12:48:43 +00:00
|
|
|
config_loader = Flask_config.config_loader
|
2018-09-20 08:38:19 +00:00
|
|
|
baseUrl = Flask_config.baseUrl
|
2016-12-09 07:46:37 +00:00
|
|
|
r_serv_log = Flask_config.r_serv_log
|
2017-04-19 09:02:03 +00:00
|
|
|
|
2018-07-26 09:35:54 +00:00
|
|
|
max_dashboard_logs = Flask_config.max_dashboard_logs
|
|
|
|
|
2017-04-19 09:02:03 +00:00
|
|
|
dashboard = Blueprint('dashboard', __name__, template_folder='templates')
|
|
|
|
|
2016-12-09 07:46:37 +00:00
|
|
|
# ============ FUNCTIONS ============
|
|
|
|
def event_stream():
|
|
|
|
pubsub = r_serv_log.pubsub()
|
|
|
|
pubsub.psubscribe("Script" + '.*')
|
2024-07-04 13:52:20 +00:00
|
|
|
try:
|
|
|
|
for msg in pubsub.listen():
|
|
|
|
mtype = msg['type']
|
|
|
|
pattern = msg['pattern']
|
|
|
|
channel = msg['channel']
|
|
|
|
data = msg['data']
|
2018-04-17 14:06:32 +00:00
|
|
|
|
2024-07-04 13:52:20 +00:00
|
|
|
msg = {'channel': channel, 'type': mtype, 'pattern': pattern, 'data': data}
|
2018-04-17 14:06:32 +00:00
|
|
|
|
2024-07-04 13:52:20 +00:00
|
|
|
level = (msg['channel']).split('.')[1]
|
|
|
|
if msg['type'] == 'pmessage' and level != "DEBUG":
|
|
|
|
yield 'data: %s\n\n' % json.dumps(msg)
|
|
|
|
except GeneratorExit:
|
|
|
|
print("Generator Exited")
|
|
|
|
pubsub.unsubscribe()
|
2016-12-09 07:46:37 +00:00
|
|
|
|
2024-07-01 15:31:59 +00:00
|
|
|
def event_stream_dashboard():
|
|
|
|
try:
|
|
|
|
while True:
|
|
|
|
data = {'queues': get_queues()}
|
|
|
|
yield f'data: {json.dumps(data)}\n\n'
|
|
|
|
time.sleep(1)
|
|
|
|
except GeneratorExit:
|
2024-07-04 13:52:20 +00:00
|
|
|
print("Generator dashboard Exited")
|
|
|
|
pass
|
2024-07-01 15:31:59 +00:00
|
|
|
|
2022-11-22 09:47:15 +00:00
|
|
|
def get_queues():
|
2016-12-09 07:46:37 +00:00
|
|
|
# We may want to put the llen in a pipeline to do only one query.
|
2023-04-13 12:25:02 +00:00
|
|
|
return ail_queues.get_modules_queues_stats()
|
2016-12-09 07:46:37 +00:00
|
|
|
|
2018-07-25 14:48:44 +00:00
|
|
|
def get_date_range(date_from, num_day):
|
|
|
|
date = Date(str(date_from[0:4])+str(date_from[4:6]).zfill(2)+str(date_from[6:8]).zfill(2))
|
|
|
|
date_list = []
|
|
|
|
|
|
|
|
for i in range(0, num_day+1):
|
|
|
|
new_date = date.substract_day(i)
|
2022-11-22 09:47:15 +00:00
|
|
|
date_list.append(f'{new_date[0:4]}-{new_date[4:6]}-{new_date[6:8]}')
|
2018-07-25 14:48:44 +00:00
|
|
|
|
|
|
|
return date_list
|
|
|
|
|
|
|
|
def dashboard_alert(log):
|
|
|
|
# check if we need to display this log
|
2022-11-22 09:47:15 +00:00
|
|
|
if len(log) > 50:
|
2018-07-25 14:48:44 +00:00
|
|
|
date = log[1:5]+log[6:8]+log[9:11]
|
2018-07-26 08:34:43 +00:00
|
|
|
utc_str = log[1:20]
|
2018-07-25 14:48:44 +00:00
|
|
|
log = log[46:].split(';')
|
|
|
|
if len(log) == 6:
|
2022-11-22 09:47:15 +00:00
|
|
|
date_time = datetime_from_utc_to_local(utc_str)
|
2024-03-13 10:58:40 +00:00
|
|
|
path = url_for('investigations_b.get_object_gid', gid=log[5])
|
2018-07-26 08:34:43 +00:00
|
|
|
|
2022-11-22 09:47:15 +00:00
|
|
|
res = {'date': date, 'time': date_time, 'script': log[0], 'domain': log[1], 'date_paste': log[2],
|
|
|
|
'paste': log[3], 'message': log[4], 'path': path}
|
2018-07-25 14:48:44 +00:00
|
|
|
return res
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2018-07-26 08:34:43 +00:00
|
|
|
def datetime_from_utc_to_local(utc_str):
|
|
|
|
utc_datetime = datetime.datetime.strptime(utc_str, '%Y-%m-%d %H:%M:%S')
|
|
|
|
now_timestamp = time.time()
|
|
|
|
offset = datetime.datetime.fromtimestamp(now_timestamp) - datetime.datetime.utcfromtimestamp(now_timestamp)
|
|
|
|
local_time_str = (utc_datetime + offset).strftime('%H:%M:%S')
|
|
|
|
return local_time_str
|
2018-07-25 14:48:44 +00:00
|
|
|
|
2016-12-09 07:46:37 +00:00
|
|
|
# ============ ROUTES ============
|
|
|
|
|
2017-04-19 09:02:03 +00:00
|
|
|
@dashboard.route("/_logs")
|
2019-05-03 14:52:05 +00:00
|
|
|
@login_required
|
2019-11-20 15:15:08 +00:00
|
|
|
@login_read_only
|
2016-12-09 07:46:37 +00:00
|
|
|
def logs():
|
|
|
|
return flask.Response(event_stream(), mimetype="text/event-stream")
|
|
|
|
|
2024-07-01 15:31:59 +00:00
|
|
|
@dashboard.route("/_dashboard")
|
|
|
|
@login_required
|
|
|
|
@login_read_only
|
|
|
|
def _dashboard():
|
2024-07-04 13:52:20 +00:00
|
|
|
return flask.Response(stream_with_context(event_stream_dashboard()), content_type="text/event-stream")
|
2024-07-01 15:31:59 +00:00
|
|
|
|
2018-07-25 14:48:44 +00:00
|
|
|
@dashboard.route("/_get_last_logs_json")
|
2019-05-03 14:52:05 +00:00
|
|
|
@login_required
|
2019-11-20 15:15:08 +00:00
|
|
|
@login_read_only
|
2018-07-25 14:48:44 +00:00
|
|
|
def get_last_logs_json():
|
|
|
|
date = datetime.datetime.now().strftime("%Y%m%d")
|
|
|
|
|
|
|
|
max_day_search = 6
|
|
|
|
day_search = 0
|
|
|
|
warning_found = 0
|
2018-07-26 09:35:54 +00:00
|
|
|
warning_to_found = max_dashboard_logs
|
2018-07-25 14:48:44 +00:00
|
|
|
|
|
|
|
last_logs = []
|
|
|
|
|
|
|
|
date_range = get_date_range(date, max_day_search)
|
2018-07-26 08:34:43 +00:00
|
|
|
while max_day_search != day_search and warning_found != warning_to_found:
|
2018-07-25 14:48:44 +00:00
|
|
|
|
2022-11-22 09:47:15 +00:00
|
|
|
filename_warning_log = f'logs/Script_warn-{date_range[day_search]}.log'
|
2018-07-25 14:48:44 +00:00
|
|
|
filename_log = os.path.join(os.environ['AIL_HOME'], filename_warning_log)
|
|
|
|
|
|
|
|
try:
|
|
|
|
with open(filename_log, 'r') as f:
|
|
|
|
lines = f.read().splitlines()
|
|
|
|
curr_index = -1
|
|
|
|
while warning_found != warning_to_found:
|
|
|
|
try:
|
|
|
|
# get lasts warning logs
|
|
|
|
log_warn = dashboard_alert(lines[curr_index])
|
|
|
|
if log_warn != False:
|
|
|
|
last_logs.append(log_warn)
|
|
|
|
warning_found = warning_found + 1
|
|
|
|
curr_index = curr_index - 1
|
|
|
|
|
|
|
|
except IndexError:
|
|
|
|
# check previous warning log file
|
|
|
|
day_search = day_search + 1
|
|
|
|
break
|
|
|
|
except FileNotFoundError:
|
|
|
|
# check previous warning log file
|
|
|
|
day_search = day_search + 1
|
|
|
|
|
2018-07-26 08:34:43 +00:00
|
|
|
return jsonify(list(reversed(last_logs)))
|
2018-07-25 14:48:44 +00:00
|
|
|
|
2016-12-09 07:46:37 +00:00
|
|
|
|
2017-04-19 09:02:03 +00:00
|
|
|
@dashboard.route("/_stuff", methods=['GET'])
|
2019-05-03 14:52:05 +00:00
|
|
|
@login_required
|
2019-11-20 15:15:08 +00:00
|
|
|
@login_read_only
|
2016-12-09 07:46:37 +00:00
|
|
|
def stuff():
|
2022-11-22 09:47:15 +00:00
|
|
|
return jsonify(row1=get_queues())
|
2016-12-09 07:46:37 +00:00
|
|
|
|
|
|
|
|
2022-07-08 07:47:47 +00:00
|
|
|
# TODO: ADD UPDATE NOTE BY USER
|
2017-04-19 09:02:03 +00:00
|
|
|
@dashboard.route("/")
|
2019-05-03 14:52:05 +00:00
|
|
|
@login_required
|
2019-11-20 15:15:08 +00:00
|
|
|
@login_read_only
|
2016-12-09 07:46:37 +00:00
|
|
|
def index():
|
2019-10-28 12:48:43 +00:00
|
|
|
default_minute = config_loader.get_config_str("Flask", "minute_processed_paste")
|
|
|
|
threshold_stucked_module = config_loader.get_config_int("Module_ModuleInformation", "threshold_stucked_module")
|
2018-07-26 09:35:54 +00:00
|
|
|
log_select = {10, 25, 50, 100}
|
|
|
|
log_select.add(max_dashboard_logs)
|
|
|
|
log_select = list(log_select)
|
|
|
|
log_select.sort()
|
2019-04-18 08:56:00 +00:00
|
|
|
|
|
|
|
# Check if update in progress
|
2022-07-08 07:47:47 +00:00
|
|
|
background_update = False
|
|
|
|
update_message = ''
|
2023-07-12 09:36:47 +00:00
|
|
|
if ail_updates.is_update_background_running():
|
2022-07-08 07:47:47 +00:00
|
|
|
background_update = True
|
2023-07-12 09:36:47 +00:00
|
|
|
update_message = ail_updates.AILBackgroundUpdate(ail_updates.get_update_background_version()).get_message()
|
2019-04-15 12:30:28 +00:00
|
|
|
|
2022-11-22 09:47:15 +00:00
|
|
|
return render_template("index.html", default_minute = default_minute,
|
|
|
|
threshold_stucked_module=threshold_stucked_module,
|
|
|
|
log_select=log_select, selected=max_dashboard_logs,
|
|
|
|
background_update=background_update, update_message=update_message)
|
|
|
|
|
2017-04-19 09:02:03 +00:00
|
|
|
|
|
|
|
# ========= REGISTRATION =========
|
2018-09-20 08:38:19 +00:00
|
|
|
app.register_blueprint(dashboard, url_prefix=baseUrl)
|