Moved css to own directory
This commit is contained in:
parent
389175c392
commit
4a22b47580
@ -1,4 +1,5 @@
|
|||||||
# Alias for mailstats
|
# Alias for mailstats
|
||||||
|
Alias "/mailstats/css" "/opt/mailstats/css"
|
||||||
Alias "/mailstats" "/opt/mailstats/html"
|
Alias "/mailstats" "/opt/mailstats/html"
|
||||||
|
|
||||||
<Directory "/opt/mailstats/html">
|
<Directory "/opt/mailstats/html">
|
||||||
@ -7,3 +8,7 @@
|
|||||||
Require all granted
|
Require all granted
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
|
<Directory "/opt/mailstats/css">
|
||||||
|
AllowOverride None
|
||||||
|
Require all granted
|
||||||
|
</Directory>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<html><head>
|
<html><head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>SMEServer Mailstats</title>
|
<title>SMEServer Mailstats</title>
|
||||||
<link rel='stylesheet' type='text/css' href='mailstats.css' />
|
<link rel='stylesheet' type='text/css' href='../css/mailstats.css' />
|
||||||
<!-- Check links -->
|
<!-- Check links -->
|
||||||
<script>
|
<script>
|
||||||
function LinkCheck(url){
|
function LinkCheck(url){
|
||||||
|
@ -9,10 +9,8 @@
|
|||||||
#
|
#
|
||||||
# Todo
|
# Todo
|
||||||
# 1. Make "yesterday" parameterised
|
# 1. Make "yesterday" parameterised
|
||||||
# 2. Get data from SMEServer DB records
|
# 2 Other stats
|
||||||
# 3. Other stats
|
# 3. Extra bits for sub tables
|
||||||
# 4. Percentages for main table
|
|
||||||
# 5. Percentages and sort for Sub tables
|
|
||||||
#
|
#
|
||||||
# Centos7:
|
# Centos7:
|
||||||
# yum install python3-chameleon --enablerepo=epel
|
# yum install python3-chameleon --enablerepo=epel
|
||||||
@ -45,9 +43,6 @@ formatted_yesterday = yesterday.strftime("%Y-%m-%d")
|
|||||||
html_page_dir = data_file_path+"/opt/mailstats/html/"
|
html_page_dir = data_file_path+"/opt/mailstats/html/"
|
||||||
template_dir = data_file_path+"/opt/mailstats/templates/"
|
template_dir = data_file_path+"/opt/mailstats/templates/"
|
||||||
logs_dir = data_file_path+"/opt/mailstats/logs/"
|
logs_dir = data_file_path+"/opt/mailstats/logs/"
|
||||||
#E-Smith Config DBs
|
|
||||||
db_dir = "/home/e-smith/db/"
|
|
||||||
#db_dir = "/home/brianr/SME11Build/GITFiles/smecontribs/smeserver-mailstats/"
|
|
||||||
|
|
||||||
# Column numbering
|
# Column numbering
|
||||||
Hour = 0
|
Hour = 0
|
||||||
@ -70,7 +65,9 @@ PERCENT = 16
|
|||||||
ColTotals = 24
|
ColTotals = 24
|
||||||
ColPercent = 25
|
ColPercent = 25
|
||||||
|
|
||||||
|
def is_running_under_thonny():
|
||||||
|
# Check for the 'THONNY_USER_DIR' environment variable
|
||||||
|
return 'THONNY_USER_DIR' in os.environ
|
||||||
|
|
||||||
# Routines to access the E-Smith dbs
|
# Routines to access the E-Smith dbs
|
||||||
def parse_entity_line(line):
|
def parse_entity_line(line):
|
||||||
@ -122,6 +119,7 @@ def read_config_file(file_path):
|
|||||||
"""
|
"""
|
||||||
with open(file_path, 'r') as file:
|
with open(file_path, 'r') as file:
|
||||||
config_string = file.read()
|
config_string = file.read()
|
||||||
|
|
||||||
return parse_config(config_string)
|
return parse_config(config_string)
|
||||||
|
|
||||||
def get_value(config_dict, entity, key, default=None):
|
def get_value(config_dict, entity, key, default=None):
|
||||||
@ -519,12 +517,17 @@ def read_html_from_file(filepath):
|
|||||||
# Need to add in here the contents of the css file at the end of the head section.
|
# Need to add in here the contents of the css file at the end of the head section.
|
||||||
with open(filepath, 'r', encoding='utf-8') as file:
|
with open(filepath, 'r', encoding='utf-8') as file:
|
||||||
html_contents = file.read()
|
html_contents = file.read()
|
||||||
|
print("reading from html file")
|
||||||
|
print(len(html_contents))
|
||||||
# Get Filepath
|
# Get Filepath
|
||||||
css_path = os.path.dirname(filepath)+"/mailstats.css"
|
css_path = os.path.dirname(filepath)+"/../css/mailstats.css"
|
||||||
|
print(css_path)
|
||||||
# Read in CSS
|
# Read in CSS
|
||||||
with open(css_path, 'r', encoding='utf-8') as file:
|
with open(css_path, 'r', encoding='utf-8') as file:
|
||||||
css_contents = file.read()
|
css_contents = file.read()
|
||||||
html_contents = insert_string_after(html_contents,css_contents,"<!--css here-->")
|
print(len(css_contents))
|
||||||
|
html_contents = insert_string_after(html_contents,"\n"+css_contents,"<!--css here-->")
|
||||||
|
print(len(html_contents))
|
||||||
return html_contents
|
return html_contents
|
||||||
|
|
||||||
def read_text_from_file(filepath):
|
def read_text_from_file(filepath):
|
||||||
@ -606,6 +609,12 @@ if __name__ == "__main__":
|
|||||||
current_datetime = datetime.now()
|
current_datetime = datetime.now()
|
||||||
formatted_datetime = current_datetime.strftime("%Y-%m-%d %H:%M")
|
formatted_datetime = current_datetime.strftime("%Y-%m-%d %H:%M")
|
||||||
|
|
||||||
|
isThonny = is_running_under_thonny()
|
||||||
|
#E-Smith Config DBs
|
||||||
|
if isThonny:
|
||||||
|
db_dir = "/home/brianr/SME11Build/GITFiles/smecontribs/smeserver-mailstats/"
|
||||||
|
else:
|
||||||
|
db_dir = "/home/e-smith/db/"
|
||||||
#From SMEServer DB
|
#From SMEServer DB
|
||||||
ConfigDB = read_config_file(db_dir+"configuration")
|
ConfigDB = read_config_file(db_dir+"configuration")
|
||||||
|
|
||||||
@ -639,16 +648,18 @@ if __name__ == "__main__":
|
|||||||
hello_string = "Mailstats:"+Mailstats_version+' for '+DomainName+" at "+formatted_datetime+" for "+formatted_yesterday
|
hello_string = "Mailstats:"+Mailstats_version+' for '+DomainName+" at "+formatted_datetime+" for "+formatted_yesterday
|
||||||
print(hello_string)
|
print(hello_string)
|
||||||
version_string = "Chameleon:"+chameleon_version+" Python:"+python_version
|
version_string = "Chameleon:"+chameleon_version+" Python:"+python_version
|
||||||
|
if isThonny:
|
||||||
|
version_string = version_string + "...under Thonny"
|
||||||
print(version_string)
|
print(version_string)
|
||||||
|
|
||||||
num_hours = 25 # Represents hours from 0 to 23 - adds extra one for column totals and another for percentages
|
num_hours = 25 # Represents hours from 0 to 23 - adds extra one for column totals and another for percentages
|
||||||
|
|
||||||
log_file = logs_dir+'current.log'
|
log_file = logs_dir+'current.log'
|
||||||
log_entries,skip_count = read_in_yesterday_log_file(log_file)
|
log_entries,skip_count = read_in_yesterday_log_file(log_file)
|
||||||
if len(log_entries) == 0:
|
# if len(log_entries) == 0:
|
||||||
print(f"No records found in {log_file}")
|
# print(f"No records found in {log_file}")
|
||||||
quit()
|
# quit()
|
||||||
else:
|
# else:
|
||||||
print(f"Found {len(log_entries)} entries in log for for {formatted_yesterday} skipped {skip_count}")
|
print(f"Found {len(log_entries)} entries in log for for {formatted_yesterday} skipped {skip_count}")
|
||||||
summary_log_entries,skip_count = filter_summary_records(log_entries)
|
summary_log_entries,skip_count = filter_summary_records(log_entries)
|
||||||
print(f"Found {len(summary_log_entries)} summary entries and skipped {skip_count} entries")
|
print(f"Found {len(summary_log_entries)} summary entries and skipped {skip_count} entries")
|
||||||
@ -691,9 +702,13 @@ if __name__ == "__main__":
|
|||||||
i = 0;
|
i = 0;
|
||||||
sorted_len= len(sorted_log_dict)
|
sorted_len= len(sorted_log_dict)
|
||||||
# Initial call to print the progress bar
|
# Initial call to print the progress bar
|
||||||
|
#unless none to show
|
||||||
|
if sorted_len > 0:
|
||||||
|
if isThonny:
|
||||||
print_progress_bar(0, sorted_len, prefix='Progress:', suffix='Complete', length=50)
|
print_progress_bar(0, sorted_len, prefix='Progress:', suffix='Complete', length=50)
|
||||||
for timestamp, data in sorted_log_dict.items():
|
for timestamp, data in sorted_log_dict.items():
|
||||||
i += 1
|
i += 1
|
||||||
|
if isThonny:
|
||||||
print_progress_bar(i, sorted_len, prefix='Scanning for main table:', suffix='Complete', length=50)
|
print_progress_bar(i, sorted_len, prefix='Scanning for main table:', suffix='Complete', length=50)
|
||||||
#print(f"{i*100/len}%")
|
#print(f"{i*100/len}%")
|
||||||
# Count of in which hour it falls
|
# Count of in which hour it falls
|
||||||
@ -844,9 +859,12 @@ if __name__ == "__main__":
|
|||||||
i = 0
|
i = 0
|
||||||
j = 0
|
j = 0
|
||||||
log_len = len(log_entries)
|
log_len = len(log_entries)
|
||||||
|
if log_len > 0:
|
||||||
|
if isThonny:
|
||||||
print_progress_bar(0, log_len, prefix='Progress:', suffix='Complete', length=50)
|
print_progress_bar(0, log_len, prefix='Progress:', suffix='Complete', length=50)
|
||||||
for data in log_entries:
|
for data in log_entries:
|
||||||
i += 1
|
i += 1
|
||||||
|
if isThonny:
|
||||||
print_progress_bar(i, log_len, prefix='Scanning for sub tables:', suffix='Complete', length=50)
|
print_progress_bar(i, log_len, prefix='Scanning for sub tables:', suffix='Complete', length=50)
|
||||||
#Pull out Geoip countries for analysis table
|
#Pull out Geoip countries for analysis table
|
||||||
if "check_badcountries: GeoIP Country" in data:
|
if "check_badcountries: GeoIP Country" in data:
|
||||||
@ -871,11 +889,17 @@ if __name__ == "__main__":
|
|||||||
with open(template_path, 'r') as template_file:
|
with open(template_path, 'r') as template_file:
|
||||||
template_content = template_file.read()
|
template_content = template_file.read()
|
||||||
# Create a Chameleon template instance
|
# Create a Chameleon template instance
|
||||||
|
try:
|
||||||
template = PageTemplate(template_content)
|
template = PageTemplate(template_content)
|
||||||
# Render the template with the 2D array data and column headers
|
# Render the template with the 2D array data and column headers
|
||||||
|
try:
|
||||||
rendered_html = template(array_2d=columnCounts_2d, column_headers=columnHeaders, reporting_date=formatted_yesterday, title=hello_string, version=version_string)
|
rendered_html = template(array_2d=columnCounts_2d, column_headers=columnHeaders, reporting_date=formatted_yesterday, title=hello_string, version=version_string)
|
||||||
total_html = rendered_html
|
except Exception as e:
|
||||||
|
print(f"Chameleon template Exception {e}")
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Chameleon render Exception {e}")
|
||||||
|
|
||||||
|
total_html = rendered_html
|
||||||
#Now apply the results to the chameleon template - subservient tables
|
#Now apply the results to the chameleon template - subservient tables
|
||||||
#qpsmtd codes
|
#qpsmtd codes
|
||||||
qpsmtpd_headers = ["Code",'Count','Percent','Reason']
|
qpsmtpd_headers = ["Code",'Count','Percent','Reason']
|
||||||
@ -907,8 +931,14 @@ if __name__ == "__main__":
|
|||||||
<div class='divshowindex'><a class='showindex' href='http://${DomainName}/mailstats/'>Index of files</a></div>\
|
<div class='divshowindex'><a class='showindex' href='http://${DomainName}/mailstats/'>Index of files</a></div>\
|
||||||
<a class='nextlink' href='http://${DomainName}/mailstats/mailstats_for_${NextDate}.html'>Next</a>\
|
<a class='nextlink' href='http://${DomainName}/mailstats/mailstats_for_${NextDate}.html'>Next</a>\
|
||||||
</div>"
|
</div>"
|
||||||
|
try:
|
||||||
template = PageTemplate(navigation_str_html)
|
template = PageTemplate(navigation_str_html)
|
||||||
|
try:
|
||||||
Nav_str = template(PreviousDate=previous_date_str,NextDate=next_date_str,TodayDate=formatted_yesterday,DomainName=DomainName)
|
Nav_str = template(PreviousDate=previous_date_str,NextDate=next_date_str,TodayDate=formatted_yesterday,DomainName=DomainName)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Chameleon nav template Exception {e}")
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Chameleon nav render Exception {e}")
|
||||||
# And insert it
|
# And insert it
|
||||||
total_html = insert_string_after(total_html,Nav_str, "<!---Navigation here-->")
|
total_html = insert_string_after(total_html,Nav_str, "<!---Navigation here-->")
|
||||||
|
|
||||||
@ -930,9 +960,17 @@ if __name__ == "__main__":
|
|||||||
# Send html email (default))
|
# Send html email (default))
|
||||||
filepath = html_page_dir+"mailstats_for_"+formatted_yesterday+".html"
|
filepath = html_page_dir+"mailstats_for_"+formatted_yesterday+".html"
|
||||||
html_content = read_html_from_file(filepath)
|
html_content = read_html_from_file(filepath)
|
||||||
|
print(len(html_content))
|
||||||
# Replace the Navigation by a "See in browser" prompt
|
# Replace the Navigation by a "See in browser" prompt
|
||||||
replace_str = f"<div class='divseeinbrowser' style='text-align:center;'><a class='seeinbrowser' href='http://{DomainName}/mailstats/mailstats_for_{formatted_yesterday}.html'>See in browser</a></div>"
|
replace_str = f"<div class='divseeinbrowser' style='text-align:center;'><a class='seeinbrowser' href='http://{DomainName}/mailstats/mailstats_for_{formatted_yesterday}.html'>See in browser</a></div>"
|
||||||
|
print(len(replace_str))
|
||||||
|
print(len(html_content))
|
||||||
html_content = replace_between(html_content, "<div class='linksattop'>", ">Next</a></div>", replace_str)
|
html_content = replace_between(html_content, "<div class='linksattop'>", ">Next</a></div>", replace_str)
|
||||||
|
# Write out te email html to a web page
|
||||||
|
email_file = html_page_dir + "Email_mailstats_for_"+formatted_yesterday
|
||||||
|
with open(email_file+'.html', 'w') as output_file:
|
||||||
|
output_file.write(html_content)
|
||||||
|
#print(html_content)
|
||||||
if EmailTextOrHTML == "Text" or EmailTextOrHTML == "Both":
|
if EmailTextOrHTML == "Text" or EmailTextOrHTML == "Both":
|
||||||
filepath = html_page_dir+"mailstats_for_"+formatted_yesterday+".txt"
|
filepath = html_page_dir+"mailstats_for_"+formatted_yesterday+".txt"
|
||||||
text_content = read_text_from_file(filepath)
|
text_content = read_text_from_file(filepath)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
exec 1> >(logger -t $(basename $0)) 2>&1
|
#exec 1> >(logger -t $(basename $0)) 2>&1
|
||||||
perl /usr/bin/mailstats.pl /var/log/qpsmtpd/\@* /var/log/qpsmtpd/current /var/log/sqpsmtpd/\@* /var/log/sqpsmtpd/current
|
perl /usr/bin/mailstats.pl /var/log/qpsmtpd/\@* /var/log/qpsmtpd/current /var/log/sqpsmtpd/\@* /var/log/sqpsmtpd/current
|
||||||
# and run new python one - start by copying and decoding log files
|
# and run new python one - start by copying and decoding log files
|
||||||
cd /var/log/qpsmtpd
|
cd /var/log/qpsmtpd
|
||||||
|
Loading…
Reference in New Issue
Block a user