epicyon/webapp_welcome.py

89 lines
3.4 KiB
Python
Raw Normal View History

2021-02-24 18:44:26 +00:00
__filename__ = "webapp_welcome.py"
__author__ = "Bob Mottram"
__license__ = "AGPL3+"
__version__ = "1.2.0"
__maintainer__ = "Bob Mottram"
__email__ = "bob@freedombone.net"
__status__ = "Production"
import os
from shutil import copyfile
from utils import getConfigParam
from webapp_utils import htmlHeaderWithExternalStyle
from webapp_utils import htmlFooter
2021-02-24 19:04:51 +00:00
from webapp_utils import markdownToHtml
2021-02-24 18:44:26 +00:00
2021-02-24 21:17:08 +00:00
def isWelcomeScreenComplete(baseDir: str, nickname: str, domain: str) -> bool:
"""Returns true if the welcome screen is complete for the given account
"""
accountPath = baseDir + '/accounts/' + nickname + '@' + domain
if not os.path.isdir(accountPath):
return
completeFilename = accountPath + '/.welcome_complete'
return os.path.isfile(completeFilename)
2021-02-25 12:17:41 +00:00
# def welcomeScreenIsComplete(baseDir: str,
# nickname: str, domain: str) -> None:
# """Indicates that the welcome screen has been shown for a given account
# """
# accountPath = baseDir + '/accounts/' + nickname + '@' + domain
# if not os.path.isdir(accountPath):
# return
# completeFilename = accountPath + '/.welcome_complete'
# completeFile = open(completeFilename, 'w+')
# if completeFile:
# completeFile.write('\n')
# completeFile.close()
#
#
2021-02-24 21:17:08 +00:00
def htmlWelcomeScreen(baseDir: str,
2021-02-25 10:37:20 +00:00
language: str, translate: {},
currScreen='welcome',
nextScreen=None, prevScreen=None) -> str:
2021-02-24 18:44:26 +00:00
"""Returns the welcome screen
"""
# set a custom background for the welcome screen
if os.path.isfile(baseDir + '/accounts/welcome-background-custom.jpg'):
if not os.path.isfile(baseDir + '/accounts/welcome-background.jpg'):
copyfile(baseDir + '/accounts/welcome-background-custom.jpg',
baseDir + '/accounts/welcome-background.jpg')
2021-02-25 10:37:20 +00:00
if not nextScreen:
nextScreen = 'welcome_profile'
2021-02-24 18:44:26 +00:00
welcomeText = 'Welcome to Epicyon'
2021-02-25 10:37:20 +00:00
welcomeFilename = baseDir + '/accounts/' + currScreen + '.md'
2021-02-24 18:44:26 +00:00
if not os.path.isfile(welcomeFilename):
2021-02-25 10:37:20 +00:00
defaultFilename = \
baseDir + '/defaultwelcome/' + currScreen + '_' + language + '.md'
2021-02-24 21:22:32 +00:00
if not os.path.isfile(defaultFilename):
2021-02-25 10:37:20 +00:00
defaultFilename = \
baseDir + '/defaultwelcome/' + currScreen + '_en.md'
2021-02-24 21:22:32 +00:00
copyfile(defaultFilename, welcomeFilename)
2021-02-24 18:44:26 +00:00
if os.path.isfile(welcomeFilename):
2021-02-25 10:37:20 +00:00
with open(welcomeFilename, 'r') as welcomeFile:
2021-02-24 19:04:51 +00:00
welcomeText = markdownToHtml(welcomeFile.read())
2021-02-24 18:44:26 +00:00
welcomeForm = ''
cssFilename = baseDir + '/epicyon-welcome.css'
if os.path.isfile(baseDir + '/welcome.css'):
cssFilename = baseDir + '/welcome.css'
instanceTitle = \
getConfigParam(baseDir, 'instanceTitle')
welcomeForm = htmlHeaderWithExternalStyle(cssFilename, instanceTitle)
welcomeForm += '<div class="container">' + welcomeText + '</div>\n'
welcomeForm += ' <div class="container next">\n'
2021-02-25 10:37:20 +00:00
if prevScreen:
welcomeForm += ' <a href="/' + prevScreen + '">\n'
welcomeForm += \
' <button>' + translate['Go Back'] + '</button></a>\n'
welcomeForm += ' <a href="/' + nextScreen + '">\n'
2021-02-24 20:45:38 +00:00
welcomeForm += ' <button>' + translate['Next'] + '</button></a>\n'
2021-02-24 18:44:26 +00:00
welcomeForm += ' </div>\n'
welcomeForm += '</div>\n'
welcomeForm += htmlFooter()
return welcomeForm