2021-06-25 15:41:31 +00:00
|
|
|
__filename__ = "webapp_minimalbutton.py"
|
|
|
|
__author__ = "Bob Mottram"
|
|
|
|
__license__ = "AGPL3+"
|
|
|
|
__version__ = "1.2.0"
|
|
|
|
__maintainer__ = "Bob Mottram"
|
2021-09-10 16:14:50 +00:00
|
|
|
__email__ = "bob@libreserver.org"
|
2021-06-25 15:41:31 +00:00
|
|
|
__status__ = "Production"
|
2021-06-26 11:27:14 +00:00
|
|
|
__module_group__ = "Timeline"
|
2021-06-25 15:41:31 +00:00
|
|
|
|
|
|
|
import os
|
2021-07-13 21:59:53 +00:00
|
|
|
from utils import acctDir
|
2021-06-25 15:41:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
def isMinimal(baseDir: str, domain: str, nickname: str) -> bool:
|
|
|
|
"""Returns true if minimal buttons should be shown
|
|
|
|
for the given account
|
|
|
|
"""
|
2021-07-13 21:59:53 +00:00
|
|
|
accountDir = acctDir(baseDir, nickname, domain)
|
2021-06-25 15:41:31 +00:00
|
|
|
if not os.path.isdir(accountDir):
|
|
|
|
return True
|
|
|
|
minimalFilename = accountDir + '/.notminimal'
|
|
|
|
if os.path.isfile(minimalFilename):
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def setMinimal(baseDir: str, domain: str, nickname: str,
|
|
|
|
minimal: bool) -> None:
|
|
|
|
"""Sets whether an account should display minimal buttons
|
|
|
|
"""
|
2021-07-13 21:59:53 +00:00
|
|
|
accountDir = acctDir(baseDir, nickname, domain)
|
2021-06-25 15:41:31 +00:00
|
|
|
if not os.path.isdir(accountDir):
|
|
|
|
return
|
|
|
|
minimalFilename = accountDir + '/.notminimal'
|
|
|
|
minimalFileExists = os.path.isfile(minimalFilename)
|
|
|
|
if minimal and minimalFileExists:
|
2021-09-05 10:17:43 +00:00
|
|
|
try:
|
|
|
|
os.remove(minimalFilename)
|
|
|
|
except BaseException:
|
|
|
|
pass
|
2021-06-25 15:41:31 +00:00
|
|
|
elif not minimal and not minimalFileExists:
|
|
|
|
with open(minimalFilename, 'w+') as fp:
|
|
|
|
fp.write('\n')
|