Allow for a series of welcome screens

main
Bob Mottram 2021-02-25 10:37:20 +00:00
parent bd408e73c0
commit 830bab130e
4 changed files with 93 additions and 6 deletions

View File

@ -0,0 +1,3 @@
# Account Setup
Add your avatar image, name and description. Use a small avatar image (eg. 128x128 pixels) so that it's quick to download.

View File

@ -38,7 +38,9 @@ def welcomeScreenIsComplete(baseDir: str, nickname: str, domain: str) -> None:
def htmlWelcomeScreen(baseDir: str,
language: str, translate: {}) -> str:
language: str, translate: {},
currScreen='welcome',
nextScreen=None, prevScreen=None) -> str:
"""Returns the welcome screen
"""
# set a custom background for the welcome screen
@ -47,15 +49,20 @@ def htmlWelcomeScreen(baseDir: str,
copyfile(baseDir + '/accounts/welcome-background-custom.jpg',
baseDir + '/accounts/welcome-background.jpg')
if not nextScreen:
nextScreen = 'welcome_profile'
welcomeText = 'Welcome to Epicyon'
welcomeFilename = baseDir + '/accounts/welcome.md'
welcomeFilename = baseDir + '/accounts/' + currScreen + '.md'
if not os.path.isfile(welcomeFilename):
defaultFilename = baseDir + '/defaultwelcome/' + language + '.md'
defaultFilename = \
baseDir + '/defaultwelcome/' + currScreen + '_' + language + '.md'
if not os.path.isfile(defaultFilename):
defaultFilename = baseDir + '/defaultwelcome/en.md'
defaultFilename = \
baseDir + '/defaultwelcome/' + currScreen + '_en.md'
copyfile(defaultFilename, welcomeFilename)
if os.path.isfile(welcomeFilename):
with open(baseDir + '/accounts/welcome.md', 'r') as welcomeFile:
with open(welcomeFilename, 'r') as welcomeFile:
welcomeText = markdownToHtml(welcomeFile.read())
welcomeForm = ''
@ -68,7 +75,11 @@ def htmlWelcomeScreen(baseDir: str,
welcomeForm = htmlHeaderWithExternalStyle(cssFilename, instanceTitle)
welcomeForm += '<div class="container">' + welcomeText + '</div>\n'
welcomeForm += ' <div class="container next">\n'
welcomeForm += ' <a href="/welcome_avatar">\n'
if prevScreen:
welcomeForm += ' <a href="/' + prevScreen + '">\n'
welcomeForm += \
' <button>' + translate['Go Back'] + '</button></a>\n'
welcomeForm += ' <a href="/' + nextScreen + '">\n'
welcomeForm += ' <button>' + translate['Next'] + '</button></a>\n'
welcomeForm += ' </div>\n'
welcomeForm += '</div>\n'

View File

@ -0,0 +1,73 @@
__filename__ = "webapp_welcome_profile.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 utils import getImageExtensions
from webapp_utils import htmlHeaderWithExternalStyle
from webapp_utils import htmlFooter
from webapp_utils import markdownToHtml
def htmlWelcomeProfile(baseDir: str, nickname: str, domain: str,
httpPrefix: str, domainFull: str,
language: str, translate: {},
prevScreen='welcome') -> str:
"""Returns the welcome profile screen to set avatar and bio
"""
# 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')
profileText = 'Welcome to Epicyon'
profileFilename = baseDir + '/accounts/welcome_profile.md'
if not os.path.isfile(profileFilename):
defaultFilename = \
baseDir + '/defaultwelcome/profile_' + language + '.md'
if not os.path.isfile(defaultFilename):
defaultFilename = baseDir + '/defaultwelcome/profile_en.md'
copyfile(defaultFilename, profileFilename)
if os.path.isfile(profileFilename):
with open(profileFilename, 'r') as profileFile:
profileText = markdownToHtml(profileFile.read())
profileForm = ''
cssFilename = baseDir + '/epicyon-welcome.css'
if os.path.isfile(baseDir + '/welcome.css'):
cssFilename = baseDir + '/welcome.css'
instanceTitle = \
getConfigParam(baseDir, 'instanceTitle')
profileForm = htmlHeaderWithExternalStyle(cssFilename, instanceTitle)
# get the url of the avatar
for ext in getImageExtensions():
avatarFilename = \
baseDir + '/accounts/' + nickname + '@' + domain + '/avatar.' + ext
if os.path.isfile(avatarFilename):
break
avatarUrl = \
httpPrefix + '://' + domainFull + \
'/users/' + nickname + '/avatar.' + ext
profileForm += '<center>\n'
profileForm += '<img class="welcomeavatar" src="' + avatarUrl + '">\n'
profileForm += '</center>\n'
profileForm += '<div class="container">' + profileText + '</div>\n'
profileForm += ' <div class="container next">\n'
profileForm += ' <a href="/' + prevScreen + '">\n'
profileForm += ' <button>' + translate['Go Back'] + '</button></a>\n'
profileForm += ' <a href="/welcome_complete">\n'
profileForm += ' <button>' + translate['Next'] + '</button></a>\n'
profileForm += ' </div>\n'
profileForm += '</div>\n'
profileForm += htmlFooter()
return profileForm