mirror of https://gitlab.com/bashrc2/epicyon
81 lines
3.1 KiB
Python
81 lines
3.1 KiB
Python
__filename__ = "webapp_welcome_final.py"
|
|
__author__ = "Bob Mottram"
|
|
__license__ = "AGPL3+"
|
|
__version__ = "1.2.0"
|
|
__maintainer__ = "Bob Mottram"
|
|
__email__ = "bob@libreserver.org"
|
|
__status__ = "Production"
|
|
__module_group__ = "Onboarding"
|
|
|
|
import os
|
|
from shutil import copyfile
|
|
from utils import removeHtml
|
|
from utils import getConfigParam
|
|
from webapp_utils import htmlHeaderWithExternalStyle
|
|
from webapp_utils import htmlFooter
|
|
from markdown import markdownToHtml
|
|
|
|
|
|
def htmlWelcomeFinal(base_dir: str, nickname: str, domain: str,
|
|
http_prefix: str, domain_full: str,
|
|
language: str, translate: {},
|
|
theme_name: str) -> str:
|
|
"""Returns the final welcome screen after first login
|
|
"""
|
|
# set a custom background for the welcome screen
|
|
if os.path.isfile(base_dir + '/accounts/welcome-background-custom.jpg'):
|
|
if not os.path.isfile(base_dir + '/accounts/welcome-background.jpg'):
|
|
copyfile(base_dir + '/accounts/welcome-background-custom.jpg',
|
|
base_dir + '/accounts/welcome-background.jpg')
|
|
|
|
finalText = 'Welcome to Epicyon'
|
|
finalFilename = base_dir + '/accounts/welcome_final.md'
|
|
if not os.path.isfile(finalFilename):
|
|
defaultFilename = None
|
|
if theme_name:
|
|
defaultFilename = \
|
|
base_dir + '/theme/' + theme_name + '/welcome/' + \
|
|
'final_' + language + '.md'
|
|
if not os.path.isfile(defaultFilename):
|
|
defaultFilename = None
|
|
if not defaultFilename:
|
|
defaultFilename = \
|
|
base_dir + '/defaultwelcome/final_' + language + '.md'
|
|
if not os.path.isfile(defaultFilename):
|
|
defaultFilename = base_dir + '/defaultwelcome/final_en.md'
|
|
copyfile(defaultFilename, finalFilename)
|
|
|
|
instanceTitle = \
|
|
getConfigParam(base_dir, 'instanceTitle')
|
|
if not instanceTitle:
|
|
instanceTitle = 'Epicyon'
|
|
|
|
if os.path.isfile(finalFilename):
|
|
with open(finalFilename, 'r') as finalFile:
|
|
finalText = finalFile.read()
|
|
finalText = finalText.replace('INSTANCE', instanceTitle)
|
|
finalText = markdownToHtml(removeHtml(finalText))
|
|
|
|
finalForm = ''
|
|
cssFilename = base_dir + '/epicyon-welcome.css'
|
|
if os.path.isfile(base_dir + '/welcome.css'):
|
|
cssFilename = base_dir + '/welcome.css'
|
|
|
|
finalForm = htmlHeaderWithExternalStyle(cssFilename, instanceTitle, None)
|
|
|
|
finalForm += \
|
|
'<div class="container">' + finalText + '</div>\n' + \
|
|
'<form enctype="multipart/form-data" method="POST" ' + \
|
|
'accept-charset="UTF-8" ' + \
|
|
'action="/users/' + nickname + '/profiledata">\n' + \
|
|
'<div class="container next">\n' + \
|
|
' <button type="submit" class="button" ' + \
|
|
'name="previewAvatar">' + translate['Go Back'] + '</button>\n' + \
|
|
' <button type="submit" class="button" ' + \
|
|
'name="welcomeCompleteButton">' + translate['Next'] + '</button>\n' + \
|
|
'</div>\n'
|
|
|
|
finalForm += '</form>\n'
|
|
finalForm += htmlFooter()
|
|
return finalForm
|