mirror of https://github.com/Aidaho12/haproxy-wi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.1 KiB
66 lines
2.1 KiB
#!/usr/bin/env python3
|
|
import os
|
|
import sql
|
|
import http, cgi
|
|
import funct
|
|
import sql
|
|
import glob
|
|
import datetime
|
|
from configparser import ConfigParser, ExtendedInterpolation
|
|
from jinja2 import Environment, FileSystemLoader
|
|
env = Environment(loader=FileSystemLoader('templates/'))
|
|
template = env.get_template('viewlogs.html')
|
|
|
|
form = cgi.FieldStorage()
|
|
path_config = "haproxy-webintarface.config"
|
|
config = ConfigParser(interpolation=ExtendedInterpolation())
|
|
config.read(path_config)
|
|
|
|
print('Content-type: text/html\n')
|
|
try:
|
|
if config.get('main', 'log_path'):
|
|
log_path = config.get('main', 'log_path')
|
|
time_storage = config.getint('logs', 'log_time_storage')
|
|
except:
|
|
print('<center><div class="alert alert-danger">Can not find "log_path" and "log_time_storage" parametrs. Check into config</div>')
|
|
|
|
|
|
funct.check_login()
|
|
funct.page_for_admin()
|
|
try:
|
|
time_storage_hours = time_storage * 24
|
|
for dirpath, dirnames, filenames in os.walk(log_path):
|
|
for file in filenames:
|
|
curpath = os.path.join(dirpath, file)
|
|
file_modified = datetime.datetime.fromtimestamp(os.path.getmtime(curpath))
|
|
if datetime.datetime.now() - file_modified > datetime.timedelta(hours=time_storage_hours):
|
|
os.remove(curpath)
|
|
except:
|
|
print('<center><div class="alert alert-danger" style="margin: 0; margin-bottom: 10px;">Can\'t delete old logs file. <br> Please check "log_time_storage" in config and <br>exist directory </div>')
|
|
pass
|
|
|
|
try:
|
|
cookie = http.cookies.SimpleCookie(os.environ.get("HTTP_COOKIE"))
|
|
user_id = cookie.get('uuid')
|
|
user = sql.get_user_name_by_uuid(user_id.value)
|
|
servers = sql.get_dick_permit()
|
|
except:
|
|
pass
|
|
|
|
def get_files():
|
|
file = set()
|
|
for files in glob.glob(os.path.join(log_path,'*.log')):
|
|
file.add(files.split('/')[5])
|
|
return sorted(file, reverse=True)
|
|
|
|
output_from_parsed_template = template.render(h2 = 1,
|
|
autorefresh = 1,
|
|
title = "View logs",
|
|
role = sql.get_user_role_by_uuid(user_id.value),
|
|
user = user,
|
|
onclick = "viewLogs()",
|
|
serv = form.getvalue('viewlogs'),
|
|
select_id = "viewlogs",
|
|
selects = get_files())
|
|
print(output_from_parsed_template)
|