2020-11-10 10:25:21 +00:00
|
|
|
__filename__ = "webapp_tos.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"
|
2021-09-10 16:14:50 +00:00
|
|
|
__email__ = "bob@libreserver.org"
|
2020-11-10 10:25:21 +00:00
|
|
|
__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-08-14 11:13:39 +00:00
|
|
|
from utils import localActorUrl
|
2020-11-12 17:05:38 +00:00
|
|
|
from webapp_utils import htmlHeaderWithExternalStyle
|
2020-11-10 10:25:21 +00:00
|
|
|
from webapp_utils import htmlFooter
|
2021-06-25 14:38:31 +00:00
|
|
|
from markdown import markdownToHtml
|
2020-11-10 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
def htmlTermsOfService(cssCache: {}, baseDir: str,
|
|
|
|
httpPrefix: str, domainFull: str) -> str:
|
|
|
|
"""Show the terms of service screen
|
|
|
|
"""
|
|
|
|
adminNickname = getConfigParam(baseDir, 'admin')
|
2021-03-01 11:13:31 +00:00
|
|
|
if not os.path.isfile(baseDir + '/accounts/tos.md'):
|
|
|
|
copyfile(baseDir + '/default_tos.md',
|
|
|
|
baseDir + '/accounts/tos.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')
|
|
|
|
|
|
|
|
TOSText = 'Terms of Service go here.'
|
2021-03-01 11:13:31 +00:00
|
|
|
if os.path.isfile(baseDir + '/accounts/tos.md'):
|
|
|
|
with open(baseDir + '/accounts/tos.md', 'r') as file:
|
|
|
|
TOSText = markdownToHtml(file.read())
|
2020-11-10 10:25:21 +00:00
|
|
|
|
|
|
|
TOSForm = ''
|
|
|
|
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-11-07 10:38:11 +00:00
|
|
|
TOSForm = htmlHeaderWithExternalStyle(cssFilename, instanceTitle, None)
|
2020-11-12 17:05:38 +00:00
|
|
|
TOSForm += '<div class="container">' + TOSText + '</div>\n'
|
|
|
|
if adminNickname:
|
2021-08-14 11:13:39 +00:00
|
|
|
adminActor = localActorUrl(httpPrefix, adminNickname, domainFull)
|
2020-11-12 17:05:38 +00:00
|
|
|
TOSForm += \
|
|
|
|
'<div class="container"><center>\n' + \
|
|
|
|
'<p class="administeredby">Administered by <a href="' + \
|
|
|
|
adminActor + '">' + adminNickname + '</a></p>\n' + \
|
|
|
|
'</center></div>\n'
|
|
|
|
TOSForm += htmlFooter()
|
2020-11-10 10:25:21 +00:00
|
|
|
return TOSForm
|