epicyon/webapp_about.py

66 lines
2.5 KiB
Python
Raw Normal View History

2020-11-10 10:25:21 +00:00
__filename__ = "webapp_about.py"
__author__ = "Bob Mottram"
__license__ = "AGPL3+"
2021-01-26 10:07:42 +00:00
__version__ = "1.2.0"
2020-11-10 10:25:21 +00:00
__maintainer__ = "Bob Mottram"
__email__ = "bob@freedombone.net"
__status__ = "Production"
2021-06-15 15:08:12 +00:00
__module_group__ = "Web Interface"
2020-11-10 10:25:21 +00:00
import os
from shutil import copyfile
from utils import getConfigParam
2021-05-14 11:56:23 +00:00
from webapp_utils import htmlHeaderWithWebsiteMarkup
2020-11-10 10:25:21 +00:00
from webapp_utils import htmlFooter
from markdown import markdownToHtml
2020-11-10 10:25:21 +00:00
def htmlAbout(cssCache: {}, baseDir: str, httpPrefix: str,
2021-05-14 11:56:23 +00:00
domainFull: str, onionDomain: str, translate: {},
systemLanguage: str) -> str:
2020-11-10 10:25:21 +00:00
"""Show the about screen
"""
adminNickname = getConfigParam(baseDir, 'admin')
2021-03-01 11:40:49 +00:00
if not os.path.isfile(baseDir + '/accounts/about.md'):
copyfile(baseDir + '/default_about.md',
baseDir + '/accounts/about.md')
2020-11-10 10:25:21 +00:00
if os.path.isfile(baseDir + '/accounts/login-background-custom.jpg'):
if not os.path.isfile(baseDir + '/accounts/login-background.jpg'):
copyfile(baseDir + '/accounts/login-background-custom.jpg',
baseDir + '/accounts/login-background.jpg')
aboutText = 'Information about this instance goes here.'
2021-03-01 11:40:49 +00:00
if os.path.isfile(baseDir + '/accounts/about.md'):
with open(baseDir + '/accounts/about.md', 'r') as aboutFile:
aboutText = markdownToHtml(aboutFile.read())
2020-11-10 10:25:21 +00:00
aboutForm = ''
cssFilename = baseDir + '/epicyon-profile.css'
if os.path.isfile(baseDir + '/epicyon.css'):
cssFilename = baseDir + '/epicyon.css'
2021-01-11 19:46:21 +00:00
instanceTitle = \
getConfigParam(baseDir, 'instanceTitle')
2021-05-14 11:56:23 +00:00
aboutForm = \
htmlHeaderWithWebsiteMarkup(cssFilename, instanceTitle,
httpPrefix, domainFull,
systemLanguage)
2020-11-12 17:05:38 +00:00
aboutForm += '<div class="container">' + aboutText + '</div>'
if onionDomain:
aboutForm += \
'<div class="container"><center>\n' + \
'<p class="administeredby">' + \
'http://' + onionDomain + '</p>\n</center></div>\n'
if adminNickname:
adminActor = '/users/' + adminNickname
aboutForm += \
'<div class="container"><center>\n' + \
2021-01-25 20:37:27 +00:00
'<p class="administeredby">' + \
translate['Administered by'] + ' <a href="' + \
adminActor + '">' + adminNickname + '</a>. ' + \
translate['Version'] + ' ' + __version__ + \
'</p>\n</center></div>\n'
2020-11-12 17:05:38 +00:00
aboutForm += htmlFooter()
2020-11-10 10:25:21 +00:00
return aboutForm