From 792e4ed3ddcc0812fb97ff31560ec8b1fa39abc3 Mon Sep 17 00:00:00 2001 From: Javier Sánchez Parra Date: Wed, 3 Nov 2021 09:30:36 +0100 Subject: Add legacy real-time log Clients in ogLive offer a web page with lighttpd that shows a real-time log. This commit links this log in ogcp. Future patches will deprecate this log functionality in favour of more robust solutions. --- ogcp/views.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ogcp/views.py') diff --git a/ogcp/views.py b/ogcp/views.py index 0b5b934..06f28b2 100644 --- a/ogcp/views.py +++ b/ogcp/views.py @@ -860,3 +860,15 @@ def action_legacy_log(): else: return redirect(url_for('commands')) +@app.route('/action/rt-log', methods=['GET']) +@login_required +def action_legacy_rt_log(): + ips = parse_elements(request.args.to_dict()) + if not validate_elements(ips, max_len=1): + return redirect(url_for('commands')) + ip = ips.pop() + scheme = "http://" + rt_log_path = "/cgi-bin/httpd-log.sh" + rt_log_url = scheme + ip + rt_log_path + return redirect(rt_log_url) + -- cgit v1.2.3-18-g5258