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.
29 lines
842 B
29 lines
842 B
#!/usr/bin/env python3
|
|
import funct, sql
|
|
import create_db
|
|
import os, http.cookies
|
|
from jinja2 import Environment, FileSystemLoader
|
|
env = Environment(loader=FileSystemLoader('templates/'))
|
|
template = env.get_template('ovw.html')
|
|
|
|
print('Content-type: text/html\n')
|
|
funct.check_login()
|
|
create_db.update_all_silent()
|
|
|
|
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)
|
|
users = sql.select_users()
|
|
groups = sql.select_groups()
|
|
except:
|
|
pass
|
|
|
|
output_from_parsed_template = template.render(h2 = 1,
|
|
autorefresh = 1,
|
|
title = "Overview",
|
|
role = sql.get_user_role_by_uuid(user_id.value),
|
|
user = user,
|
|
users = users,
|
|
groups = groups)
|
|
print(output_from_parsed_template) |