epicyon/webapp_column_left.py

541 lines
20 KiB
Python
Raw Normal View History

2020-11-09 22:44:03 +00:00
__filename__ = "webapp_column_left.py"
__author__ = "Bob Mottram"
__license__ = "AGPL3+"
2021-01-26 10:07:42 +00:00
__version__ = "1.2.0"
2020-11-09 22:44:03 +00:00
__maintainer__ = "Bob Mottram"
2021-09-10 16:14:50 +00:00
__email__ = "bob@libreserver.org"
2020-11-09 22:44:03 +00:00
__status__ = "Production"
2021-06-26 11:27:14 +00:00
__module_group__ = "Web Interface Columns"
2020-11-09 22:44:03 +00:00
import os
2021-12-26 14:08:58 +00:00
from utils import get_config_param
2021-12-27 22:19:18 +00:00
from utils import get_nickname_from_actor
2021-12-26 13:27:57 +00:00
from utils import is_editor
2021-12-26 14:17:13 +00:00
from utils import is_artist
2021-12-26 18:17:37 +00:00
from utils import remove_domain_port
2021-12-26 10:19:59 +00:00
from utils import local_actor_url
from webapp_utils import sharesTimelineJson
2020-11-09 22:44:03 +00:00
from webapp_utils import htmlPostSeparator
from webapp_utils import getLeftImageFile
from webapp_utils import headerButtonsFrontScreen
2020-11-10 16:54:35 +00:00
from webapp_utils import htmlHeaderWithExternalStyle
2020-11-09 22:44:03 +00:00
from webapp_utils import htmlFooter
from webapp_utils import getBannerFile
2021-11-30 11:05:54 +00:00
from webapp_utils import editTextField
2021-09-19 13:59:31 +00:00
from shares import shareCategoryIcon
2020-11-09 22:44:03 +00:00
2021-12-25 16:17:53 +00:00
def _linksExist(base_dir: str) -> bool:
2020-11-29 11:31:16 +00:00
"""Returns true if links have been created
"""
2021-12-25 16:17:53 +00:00
linksFilename = base_dir + '/accounts/links.txt'
2020-11-29 11:31:16 +00:00
return os.path.isfile(linksFilename)
2021-12-25 16:17:53 +00:00
def _getLeftColumnShares(base_dir: str,
2021-12-26 10:00:46 +00:00
http_prefix: str, domain: str, domain_full: str,
nickname: str,
maxSharesInLeftColumn: int,
translate: {},
2021-12-25 18:05:01 +00:00
shared_items_federated_domains: []) -> []:
"""get any shares and turn them into the left column links format
"""
pageNumber = 1
2021-12-26 10:19:59 +00:00
actor = local_actor_url(http_prefix, nickname, domain_full)
# NOTE: this could potentially be slow if the number of federated
# shared items is large
sharesJson, lastPage = \
sharesTimelineJson(actor, pageNumber, maxSharesInLeftColumn,
2021-12-25 16:17:53 +00:00
base_dir, domain, nickname, maxSharesInLeftColumn,
2021-12-25 18:05:01 +00:00
shared_items_federated_domains, 'shares')
if not sharesJson:
return []
linksList = []
ctr = 0
for published, item in sharesJson.items():
sharedesc = item['displayName']
2021-09-21 12:44:55 +00:00
if '<' in sharedesc or '?' in sharedesc:
continue
shareId = item['shareId']
# selecting this link calls htmlShowShare
shareLink = actor + '?showshare=' + shareId
2021-09-19 13:59:31 +00:00
if item.get('category'):
2021-09-21 12:44:55 +00:00
shareLink += '?category=' + item['category']
2021-09-19 13:59:31 +00:00
shareCategory = shareCategoryIcon(item['category'])
linksList.append(shareCategory + sharedesc + ' ' + shareLink)
ctr += 1
if ctr >= maxSharesInLeftColumn:
break
if linksList:
linksList = ['* ' + translate['Shares']] + linksList
return linksList
2021-12-25 16:17:53 +00:00
def _getLeftColumnWanted(base_dir: str,
2021-12-26 10:00:46 +00:00
http_prefix: str, domain: str, domain_full: str,
2021-08-09 19:16:19 +00:00
nickname: str,
maxSharesInLeftColumn: int,
translate: {},
2021-12-25 18:05:01 +00:00
shared_items_federated_domains: []) -> []:
2021-08-09 19:16:19 +00:00
"""get any wanted items and turn them into the left column links format
"""
pageNumber = 1
2021-12-26 10:19:59 +00:00
actor = local_actor_url(http_prefix, nickname, domain_full)
2021-08-09 19:16:19 +00:00
# NOTE: this could potentially be slow if the number of federated
# wanted items is large
sharesJson, lastPage = \
sharesTimelineJson(actor, pageNumber, maxSharesInLeftColumn,
2021-12-25 16:17:53 +00:00
base_dir, domain, nickname, maxSharesInLeftColumn,
2021-12-25 18:05:01 +00:00
shared_items_federated_domains, 'wanted')
2021-08-09 19:16:19 +00:00
if not sharesJson:
return []
linksList = []
ctr = 0
for published, item in sharesJson.items():
sharedesc = item['displayName']
2021-09-19 16:20:12 +00:00
if '<' in sharedesc or ';' in sharedesc:
2021-08-09 19:16:19 +00:00
continue
shareId = item['shareId']
# selecting this link calls htmlShowShare
shareLink = actor + '?showwanted=' + shareId
linksList.append(sharedesc + ' ' + shareLink)
ctr += 1
if ctr >= maxSharesInLeftColumn:
break
if linksList:
linksList = ['* ' + translate['Wanted']] + linksList
return linksList
2021-12-26 10:00:46 +00:00
def getLeftColumnContent(base_dir: str, nickname: str, domain_full: str,
2021-12-25 17:09:22 +00:00
http_prefix: str, translate: {},
2021-12-04 16:59:50 +00:00
editor: bool, artist: bool,
2020-11-09 22:44:03 +00:00
showBackButton: bool, timelinePath: str,
2021-12-25 19:09:03 +00:00
rss_icon_at_top: bool, showHeaderImage: bool,
2021-04-23 16:29:03 +00:00
frontPage: bool, theme: str,
accessKeys: {},
2021-12-25 18:05:01 +00:00
shared_items_federated_domains: []) -> str:
2020-11-09 22:44:03 +00:00
"""Returns html content for the left column
"""
htmlStr = ''
2021-12-25 16:17:53 +00:00
separatorStr = htmlPostSeparator(base_dir, 'left')
2021-12-26 18:17:37 +00:00
domain = remove_domain_port(domain_full)
2020-11-09 22:44:03 +00:00
editImageClass = ''
if showHeaderImage:
leftImageFile, leftColumnImageFilename = \
2021-12-25 16:17:53 +00:00
getLeftImageFile(base_dir, nickname, domain, theme)
2020-11-09 22:44:03 +00:00
# show the image at the top of the column
editImageClass = 'leftColEdit'
if os.path.isfile(leftColumnImageFilename):
editImageClass = 'leftColEditImage'
htmlStr += \
2021-07-05 19:46:55 +00:00
'\n <center>\n <img class="leftColImg" ' + \
2021-02-01 19:48:46 +00:00
'alt="" loading="lazy" src="/users/' + \
2020-11-09 22:44:03 +00:00
nickname + '/' + leftImageFile + '" />\n' + \
' </center>\n'
if showBackButton:
htmlStr += \
2021-07-05 19:46:55 +00:00
' <div> <a href="' + timelinePath + '">' + \
2020-11-09 22:44:03 +00:00
'<button class="cancelbtn">' + \
translate['Go Back'] + '</button></a>\n'
2021-12-25 19:09:03 +00:00
if (editor or rss_icon_at_top) and not showHeaderImage:
2020-11-09 22:44:03 +00:00
htmlStr += '<div class="columnIcons">'
if editImageClass == 'leftColEdit':
htmlStr += '\n <center>\n'
htmlStr += ' <div class="leftColIcons">\n'
2021-12-04 16:59:50 +00:00
2020-11-09 22:44:03 +00:00
if editor:
# show the edit icon
htmlStr += \
2021-07-05 19:46:55 +00:00
' <a href="/users/' + nickname + '/editlinks" ' + \
2021-04-23 17:49:09 +00:00
'accesskey="' + accessKeys['menuEdit'] + '">' + \
2021-07-05 19:46:55 +00:00
'<img class="' + editImageClass + '" loading="lazy" alt="' + \
2021-02-01 19:28:07 +00:00
translate['Edit Links'] + ' | " title="' + \
2021-07-05 19:46:55 +00:00
translate['Edit Links'] + '" src="/icons/edit.png" /></a>\n'
2020-11-09 22:44:03 +00:00
2021-12-04 16:59:50 +00:00
if artist:
# show the theme designer icon
htmlStr += \
' <a href="/users/' + nickname + '/themedesigner" ' + \
'accesskey="' + accessKeys['menuThemeDesigner'] + '">' + \
'<img class="' + editImageClass + '" loading="lazy" alt="' + \
translate['Theme Designer'] + ' | " title="' + \
translate['Theme Designer'] + '" src="/icons/theme.png" /></a>\n'
2020-11-09 22:44:03 +00:00
# RSS icon
if nickname != 'news':
# rss feed for this account
2021-12-26 10:00:46 +00:00
rssUrl = http_prefix + '://' + domain_full + \
2020-11-09 22:44:03 +00:00
'/blog/' + nickname + '/rss.xml'
else:
# rss feed for all accounts on the instance
2021-12-26 10:00:46 +00:00
rssUrl = http_prefix + '://' + domain_full + '/blog/rss.xml'
2020-11-09 22:44:03 +00:00
if not frontPage:
rssTitle = translate['RSS feed for your blog']
else:
rssTitle = translate['RSS feed for this site']
rssIconStr = \
2021-07-05 19:46:55 +00:00
' <a href="' + rssUrl + '"><img class="' + editImageClass + \
'" loading="lazy" alt="' + rssTitle + '" title="' + rssTitle + \
2020-12-09 13:08:26 +00:00
'" src="/icons/logorss.png" /></a>\n'
2021-12-25 19:09:03 +00:00
if rss_icon_at_top:
2020-11-09 22:44:03 +00:00
htmlStr += rssIconStr
htmlStr += ' </div>\n'
if editImageClass == 'leftColEdit':
htmlStr += ' </center>\n'
2021-12-25 19:09:03 +00:00
if (editor or rss_icon_at_top) and not showHeaderImage:
2020-11-09 22:44:03 +00:00
htmlStr += '</div><br>'
# if showHeaderImage:
# htmlStr += '<br>'
# flag used not to show the first separator
firstSeparatorAdded = False
2021-12-25 16:17:53 +00:00
linksFilename = base_dir + '/accounts/links.txt'
2020-11-09 22:44:03 +00:00
linksFileContainsEntries = False
linksList = None
2020-11-09 22:44:03 +00:00
if os.path.isfile(linksFilename):
2021-07-13 14:40:49 +00:00
with open(linksFilename, 'r') as f:
2020-11-09 22:44:03 +00:00
linksList = f.readlines()
2020-12-06 22:29:03 +00:00
if not frontPage:
# show a number of shares
maxSharesInLeftColumn = 3
sharesList = \
2021-12-25 16:17:53 +00:00
_getLeftColumnShares(base_dir,
2021-12-26 10:00:46 +00:00
http_prefix, domain, domain_full, nickname,
maxSharesInLeftColumn, translate,
2021-12-25 18:05:01 +00:00
shared_items_federated_domains)
2020-12-06 22:29:03 +00:00
if linksList and sharesList:
2020-12-06 22:35:25 +00:00
linksList = sharesList + linksList
2021-08-09 19:16:19 +00:00
wantedList = \
2021-12-25 16:17:53 +00:00
_getLeftColumnWanted(base_dir,
2021-12-26 10:00:46 +00:00
http_prefix, domain, domain_full, nickname,
2021-08-09 19:16:19 +00:00
maxSharesInLeftColumn, translate,
2021-12-25 18:05:01 +00:00
shared_items_federated_domains)
2021-08-09 19:16:19 +00:00
if linksList and wantedList:
linksList = wantedList + linksList
newTabStr = ' target="_blank" rel="nofollow noopener noreferrer"'
if linksList:
2020-12-27 15:22:14 +00:00
htmlStr += '<nav>\n'
for lineStr in linksList:
if ' ' not in lineStr:
if '#' not in lineStr:
if '*' not in lineStr:
2021-02-24 14:41:46 +00:00
if not lineStr.startswith('['):
if not lineStr.startswith('=> '):
continue
lineStr = lineStr.strip()
linkStr = None
2021-02-24 14:41:46 +00:00
if not lineStr.startswith('['):
words = lineStr.split(' ')
# get the link
for word in words:
if word == '#':
continue
if word == '*':
continue
if word == '=>':
continue
if '://' in word:
linkStr = word
break
else:
# markdown link
if ']' not in lineStr:
continue
2021-02-24 14:41:46 +00:00
if '(' not in lineStr:
continue
2021-02-24 14:41:46 +00:00
if ')' not in lineStr:
2021-02-24 14:31:04 +00:00
continue
2021-02-24 14:41:46 +00:00
linkStr = lineStr.split('(')[1]
if ')' not in linkStr:
continue
linkStr = linkStr.split(')')[0]
if '://' not in linkStr:
continue
lineStr = lineStr.split('[')[1]
if ']' not in lineStr:
continue
lineStr = lineStr.split(']')[0]
if linkStr:
lineStr = lineStr.replace(linkStr, '').strip()
# avoid any dubious scripts being added
if '<' not in lineStr:
# remove trailing comma if present
if lineStr.endswith(','):
lineStr = lineStr[:len(lineStr)-1]
# add link to the returned html
2021-08-09 19:16:19 +00:00
if '?showshare=' not in linkStr and \
'?showwarning=' not in linkStr:
htmlStr += \
' <p><a href="' + linkStr + \
'"' + newTabStr + '>' + \
lineStr + '</a></p>\n'
else:
htmlStr += \
' <p><a href="' + linkStr + \
'">' + lineStr + '</a></p>\n'
2020-11-09 22:44:03 +00:00
linksFileContainsEntries = True
2021-02-24 14:31:04 +00:00
elif lineStr.startswith('=> '):
# gemini style link
lineStr = lineStr.replace('=> ', '')
lineStr = lineStr.replace(linkStr, '')
# add link to the returned html
2021-08-09 19:16:19 +00:00
if '?showshare=' not in linkStr and \
'?showwarning=' not in linkStr:
htmlStr += \
' <p><a href="' + linkStr + \
'"' + newTabStr + '>' + \
lineStr.strip() + '</a></p>\n'
else:
htmlStr += \
' <p><a href="' + linkStr + \
'">' + lineStr.strip() + '</a></p>\n'
2021-02-24 14:31:04 +00:00
linksFileContainsEntries = True
else:
if lineStr.startswith('#') or lineStr.startswith('*'):
lineStr = lineStr[1:].strip()
if firstSeparatorAdded:
htmlStr += separatorStr
firstSeparatorAdded = True
htmlStr += \
' <h3 class="linksHeader">' + \
lineStr + '</h3>\n'
else:
htmlStr += \
' <p>' + lineStr + '</p>\n'
linksFileContainsEntries = True
2020-12-27 15:22:14 +00:00
htmlStr += '</nav>\n'
2020-11-09 22:44:03 +00:00
if firstSeparatorAdded:
htmlStr += separatorStr
2021-07-27 21:28:20 +00:00
htmlStr += \
'<p class="login-text"><a href="/users/' + nickname + \
'/catalog.csv">' + translate['Shares Catalog'] + '</a></p>'
2021-04-23 16:07:26 +00:00
htmlStr += \
'<p class="login-text"><a href="/users/' + \
2021-04-23 16:45:46 +00:00
nickname + '/accesskeys" accesskey="' + \
2021-04-23 16:29:03 +00:00
accessKeys['menuKeys'] + '">' + \
2021-04-23 16:07:26 +00:00
translate['Key Shortcuts'] + '</a></p>'
2020-11-15 16:48:55 +00:00
htmlStr += \
'<p class="login-text"><a href="/about">' + \
translate['About this Instance'] + '</a></p>'
htmlStr += \
'<p class="login-text"><a href="/terms">' + \
translate['Terms of Service'] + '</a></p>'
2021-12-25 19:09:03 +00:00
if linksFileContainsEntries and not rss_icon_at_top:
2020-11-09 22:44:03 +00:00
htmlStr += '<br><div class="columnIcons">' + rssIconStr + '</div>'
2020-11-15 16:48:55 +00:00
2020-11-09 22:44:03 +00:00
return htmlStr
2021-12-28 13:56:43 +00:00
def htmlLinksMobile(css_cache: {}, base_dir: str,
2021-12-26 10:00:46 +00:00
nickname: str, domain_full: str,
2021-12-25 17:09:22 +00:00
http_prefix: str, translate,
2020-11-09 22:44:03 +00:00
timelinePath: str, authorized: bool,
2021-12-25 19:09:03 +00:00
rss_icon_at_top: bool,
2021-12-25 19:19:14 +00:00
icons_as_buttons: bool,
2020-12-20 17:26:38 +00:00
defaultTimeline: str,
theme: str, accessKeys: {},
2021-12-25 18:05:01 +00:00
shared_items_federated_domains: []) -> str:
2020-11-09 22:44:03 +00:00
"""Show the left column links within mobile view
"""
htmlStr = ''
# the css filename
2021-12-25 16:17:53 +00:00
cssFilename = base_dir + '/epicyon-profile.css'
if os.path.isfile(base_dir + '/epicyon.css'):
cssFilename = base_dir + '/epicyon.css'
2020-11-09 22:44:03 +00:00
# is the user a site editor?
if nickname == 'news':
editor = False
2021-12-04 16:59:50 +00:00
artist = False
2020-11-09 22:44:03 +00:00
else:
2021-12-26 13:27:57 +00:00
editor = is_editor(base_dir, nickname)
2021-12-26 14:17:13 +00:00
artist = is_artist(base_dir, nickname)
2020-11-09 22:44:03 +00:00
2021-12-26 18:17:37 +00:00
domain = remove_domain_port(domain_full)
2020-11-09 22:44:03 +00:00
2021-01-11 19:46:21 +00:00
instanceTitle = \
2021-12-26 14:08:58 +00:00
get_config_param(base_dir, 'instanceTitle')
htmlStr = htmlHeaderWithExternalStyle(cssFilename, instanceTitle, None)
2020-12-20 17:26:38 +00:00
bannerFile, bannerFilename = \
2021-12-25 16:17:53 +00:00
getBannerFile(base_dir, nickname, domain, theme)
2020-11-09 22:44:03 +00:00
htmlStr += \
2021-04-23 17:46:57 +00:00
'<a href="/users/' + nickname + '/' + defaultTimeline + '" ' + \
'accesskey="' + accessKeys['menuTimeline'] + '">' + \
2020-11-09 22:44:03 +00:00
'<img loading="lazy" class="timeline-banner" ' + \
2021-02-01 19:48:46 +00:00
'alt="' + translate['Switch to timeline view'] + '" ' + \
2020-11-09 22:44:03 +00:00
'src="/users/' + nickname + '/' + bannerFile + '" /></a>\n'
htmlStr += '<div class="col-left-mobile">\n'
2020-11-09 22:44:03 +00:00
htmlStr += '<center>' + \
headerButtonsFrontScreen(translate, nickname,
'links', authorized,
2021-12-25 19:19:14 +00:00
icons_as_buttons) + '</center>'
htmlStr += \
2021-12-26 10:00:46 +00:00
getLeftColumnContent(base_dir, nickname, domain_full,
2021-12-25 17:09:22 +00:00
http_prefix, translate,
2021-12-04 16:59:50 +00:00
editor, artist,
False, timelinePath,
2021-12-25 19:09:03 +00:00
rss_icon_at_top, False, False,
theme, accessKeys,
2021-12-25 18:05:01 +00:00
shared_items_federated_domains)
2021-12-25 16:17:53 +00:00
if editor and not _linksExist(base_dir):
htmlStr += '<br><br><br>\n<center>\n '
htmlStr += translate['Select the edit icon to add web links']
htmlStr += '\n</center>\n'
# end of col-left-mobile
htmlStr += '</div>\n'
2020-11-09 22:44:03 +00:00
htmlStr += '</div>\n' + htmlFooter()
return htmlStr
2021-12-28 13:56:43 +00:00
def htmlEditLinks(css_cache: {}, translate: {}, base_dir: str, path: str,
2021-12-25 17:09:22 +00:00
domain: str, port: int, http_prefix: str,
2021-04-23 18:00:11 +00:00
defaultTimeline: str, theme: str,
accessKeys: {}) -> str:
2020-11-09 22:44:03 +00:00
"""Shows the edit links screen
"""
if '/users/' not in path:
return ''
path = path.replace('/inbox', '').replace('/outbox', '')
2021-08-09 19:37:18 +00:00
path = path.replace('/shares', '').replace('/wanted', '')
2020-11-09 22:44:03 +00:00
2021-12-27 22:19:18 +00:00
nickname = get_nickname_from_actor(path)
2020-11-09 22:44:03 +00:00
if not nickname:
return ''
# is the user a moderator?
2021-12-26 13:27:57 +00:00
if not is_editor(base_dir, nickname):
2020-11-09 22:44:03 +00:00
return ''
2021-12-25 16:17:53 +00:00
cssFilename = base_dir + '/epicyon-links.css'
if os.path.isfile(base_dir + '/links.css'):
cssFilename = base_dir + '/links.css'
2020-11-09 22:44:03 +00:00
# filename of the banner shown at the top
2020-12-20 17:26:38 +00:00
bannerFile, bannerFilename = \
2021-12-25 16:17:53 +00:00
getBannerFile(base_dir, nickname, domain, theme)
2020-11-09 22:44:03 +00:00
2021-01-11 19:46:21 +00:00
instanceTitle = \
2021-12-26 14:08:58 +00:00
get_config_param(base_dir, 'instanceTitle')
editLinksForm = \
htmlHeaderWithExternalStyle(cssFilename, instanceTitle, None)
2020-11-09 22:44:03 +00:00
# top banner
editLinksForm += \
2020-12-27 16:57:15 +00:00
'<header>\n' + \
2020-11-09 22:44:03 +00:00
'<a href="/users/' + nickname + '/' + defaultTimeline + '" title="' + \
translate['Switch to timeline view'] + '" alt="' + \
2021-04-23 18:00:11 +00:00
translate['Switch to timeline view'] + '" ' + \
'accesskey="' + accessKeys['menuTimeline'] + '">\n'
2021-07-05 19:46:55 +00:00
editLinksForm += \
'<img loading="lazy" class="timeline-banner" ' + \
2021-02-01 19:48:46 +00:00
'alt = "" src="' + \
2020-12-27 16:57:15 +00:00
'/users/' + nickname + '/' + bannerFile + '" /></a>\n' + \
'</header>\n'
2020-11-09 22:44:03 +00:00
editLinksForm += \
'<form enctype="multipart/form-data" method="POST" ' + \
'accept-charset="UTF-8" action="' + path + '/linksdata">\n'
editLinksForm += \
' <div class="vertical-center">\n'
editLinksForm += \
2020-12-21 16:07:51 +00:00
' <div class="containerSubmitNewPost">\n'
2020-11-09 22:44:03 +00:00
editLinksForm += \
2020-12-21 16:24:13 +00:00
' <h1>' + translate['Edit Links'] + '</h1>'
2020-12-21 16:01:05 +00:00
editLinksForm += \
2020-12-21 16:24:13 +00:00
' <input type="submit" name="submitLinks" value="' + \
2021-04-23 18:00:11 +00:00
translate['Submit'] + '" ' + \
'accesskey="' + accessKeys['submitButton'] + '">\n'
2020-11-09 22:44:03 +00:00
editLinksForm += \
' </div>\n'
2021-12-25 16:17:53 +00:00
linksFilename = base_dir + '/accounts/links.txt'
2020-11-09 22:44:03 +00:00
linksStr = ''
if os.path.isfile(linksFilename):
with open(linksFilename, 'r') as fp:
linksStr = fp.read()
2020-11-09 22:44:03 +00:00
editLinksForm += \
'<div class="container">'
editLinksForm += \
' ' + \
translate['One link per line. Description followed by the link.'] + \
'<br>'
2021-11-30 11:05:54 +00:00
newColLinkStr = translate['New link title and URL']
editLinksForm += editTextField(None, 'newColLink', '', newColLinkStr)
2020-11-09 22:44:03 +00:00
editLinksForm += \
2021-02-28 14:26:04 +00:00
' <textarea id="message" name="editedLinks" ' + \
2021-07-05 19:46:55 +00:00
'style="height:80vh" spellcheck="false">' + linksStr + '</textarea>'
2020-11-09 22:44:03 +00:00
editLinksForm += \
'</div>'
# the admin can edit terms of service and about text
2021-12-26 14:08:58 +00:00
adminNickname = get_config_param(base_dir, 'admin')
if adminNickname:
if nickname == adminNickname:
2021-12-25 16:17:53 +00:00
aboutFilename = base_dir + '/accounts/about.md'
aboutStr = ''
if os.path.isfile(aboutFilename):
with open(aboutFilename, 'r') as fp:
aboutStr = fp.read()
editLinksForm += \
'<div class="container">'
editLinksForm += \
' ' + \
translate['About this Instance'] + \
'<br>'
editLinksForm += \
' <textarea id="message" name="editedAbout" ' + \
2021-02-28 14:48:41 +00:00
'style="height:100vh" spellcheck="true" autocomplete="on">' + \
2021-02-28 14:26:04 +00:00
aboutStr + '</textarea>'
editLinksForm += \
'</div>'
2021-12-25 16:17:53 +00:00
TOSFilename = base_dir + '/accounts/tos.md'
TOSStr = ''
if os.path.isfile(TOSFilename):
with open(TOSFilename, 'r') as fp:
TOSStr = fp.read()
editLinksForm += \
'<div class="container">'
editLinksForm += \
' ' + \
translate['Terms of Service'] + \
'<br>'
editLinksForm += \
' <textarea id="message" name="editedTOS" ' + \
2021-02-28 14:48:41 +00:00
'style="height:100vh" spellcheck="true" autocomplete="on">' + \
2021-02-28 14:26:04 +00:00
TOSStr + '</textarea>'
editLinksForm += \
'</div>'
2020-11-09 22:44:03 +00:00
editLinksForm += htmlFooter()
return editLinksForm