2020-11-28 10:40:19 +00:00
|
|
|
__filename__ = "webapp_confirm.py"
|
|
|
|
__author__ = "Bob Mottram"
|
|
|
|
__license__ = "AGPL3+"
|
2021-01-26 10:07:42 +00:00
|
|
|
__version__ = "1.2.0"
|
2020-11-28 10:40:19 +00:00
|
|
|
__maintainer__ = "Bob Mottram"
|
2021-09-10 16:14:50 +00:00
|
|
|
__email__ = "bob@libreserver.org"
|
2020-11-28 10:40:19 +00:00
|
|
|
__status__ = "Production"
|
2021-06-15 15:08:12 +00:00
|
|
|
__module_group__ = "Web Interface"
|
2020-11-28 10:40:19 +00:00
|
|
|
|
|
|
|
import os
|
|
|
|
from shutil import copyfile
|
2020-12-16 11:19:16 +00:00
|
|
|
from utils import getFullDomain
|
2020-11-28 10:40:19 +00:00
|
|
|
from utils import getNicknameFromActor
|
|
|
|
from utils import getDomainFromActor
|
|
|
|
from utils import locatePost
|
|
|
|
from utils import loadJson
|
2021-01-11 19:46:21 +00:00
|
|
|
from utils import getConfigParam
|
2021-06-26 11:16:41 +00:00
|
|
|
from utils import getAltPath
|
2021-07-13 21:59:53 +00:00
|
|
|
from utils import acctDir
|
2020-11-28 10:40:19 +00:00
|
|
|
from webapp_utils import htmlHeaderWithExternalStyle
|
|
|
|
from webapp_utils import htmlFooter
|
|
|
|
from webapp_post import individualPostAsHtml
|
|
|
|
|
|
|
|
|
|
|
|
def htmlConfirmDelete(cssCache: {},
|
|
|
|
recentPostsCache: {}, maxRecentPosts: int,
|
|
|
|
translate, pageNumber: int,
|
|
|
|
session, baseDir: str, messageId: str,
|
|
|
|
httpPrefix: str, projectVersion: str,
|
2020-12-31 12:46:35 +00:00
|
|
|
cachedWebfingers: {}, personCache: {},
|
2020-11-28 10:40:19 +00:00
|
|
|
callingDomain: str,
|
|
|
|
YTReplacementDomain: str,
|
2021-09-18 17:08:14 +00:00
|
|
|
twitterReplacementDomain: str,
|
2020-12-23 23:59:49 +00:00
|
|
|
showPublishedDateOnly: bool,
|
2021-01-30 11:47:09 +00:00
|
|
|
peertubeInstances: [],
|
2021-03-09 19:52:10 +00:00
|
|
|
allowLocalNetworkAccess: bool,
|
2021-08-03 10:04:45 +00:00
|
|
|
themeName: str, systemLanguage: str,
|
2021-08-31 14:17:11 +00:00
|
|
|
maxLikeCount: int, signingPrivateKeyPem: str) -> str:
|
2020-11-28 10:40:19 +00:00
|
|
|
"""Shows a screen asking to confirm the deletion of a post
|
|
|
|
"""
|
|
|
|
if '/statuses/' not in messageId:
|
|
|
|
return None
|
|
|
|
actor = messageId.split('/statuses/')[0]
|
|
|
|
nickname = getNicknameFromActor(actor)
|
|
|
|
domain, port = getDomainFromActor(actor)
|
2020-12-16 11:19:16 +00:00
|
|
|
domainFull = getFullDomain(domain, port)
|
2020-11-28 10:40:19 +00:00
|
|
|
|
|
|
|
postFilename = locatePost(baseDir, nickname, domain, messageId)
|
|
|
|
if not postFilename:
|
|
|
|
return None
|
|
|
|
|
|
|
|
postJsonObject = loadJson(postFilename)
|
|
|
|
if not postJsonObject:
|
|
|
|
return None
|
|
|
|
|
|
|
|
if os.path.isfile(baseDir + '/img/delete-background.png'):
|
|
|
|
if not os.path.isfile(baseDir + '/accounts/delete-background.png'):
|
|
|
|
copyfile(baseDir + '/img/delete-background.png',
|
|
|
|
baseDir + '/accounts/delete-background.png')
|
|
|
|
|
|
|
|
deletePostStr = None
|
|
|
|
cssFilename = baseDir + '/epicyon-profile.css'
|
|
|
|
if os.path.isfile(baseDir + '/epicyon.css'):
|
|
|
|
cssFilename = baseDir + '/epicyon.css'
|
|
|
|
|
2021-01-11 19:46:21 +00:00
|
|
|
instanceTitle = \
|
|
|
|
getConfigParam(baseDir, 'instanceTitle')
|
|
|
|
deletePostStr = htmlHeaderWithExternalStyle(cssFilename, instanceTitle)
|
2020-11-28 10:40:19 +00:00
|
|
|
deletePostStr += \
|
2021-08-31 14:17:11 +00:00
|
|
|
individualPostAsHtml(signingPrivateKeyPem,
|
|
|
|
True, recentPostsCache, maxRecentPosts,
|
2020-12-09 13:31:54 +00:00
|
|
|
translate, pageNumber,
|
2020-12-31 12:46:35 +00:00
|
|
|
baseDir, session, cachedWebfingers, personCache,
|
2020-11-28 10:40:19 +00:00
|
|
|
nickname, domain, port, postJsonObject,
|
|
|
|
None, True, False,
|
|
|
|
httpPrefix, projectVersion, 'outbox',
|
|
|
|
YTReplacementDomain,
|
2021-09-18 17:08:14 +00:00
|
|
|
twitterReplacementDomain,
|
2020-11-28 10:40:19 +00:00
|
|
|
showPublishedDateOnly,
|
2021-01-30 11:47:09 +00:00
|
|
|
peertubeInstances, allowLocalNetworkAccess,
|
2021-08-03 10:04:45 +00:00
|
|
|
themeName, systemLanguage, maxLikeCount,
|
2021-09-27 12:09:25 +00:00
|
|
|
False, False, False, False, False, False)
|
2020-11-28 10:40:19 +00:00
|
|
|
deletePostStr += '<center>'
|
|
|
|
deletePostStr += \
|
|
|
|
' <p class="followText">' + \
|
|
|
|
translate['Delete this post?'] + '</p>'
|
|
|
|
|
|
|
|
postActor = getAltPath(actor, domainFull, callingDomain)
|
|
|
|
deletePostStr += \
|
|
|
|
' <form method="POST" action="' + postActor + '/rmpost">\n'
|
|
|
|
deletePostStr += \
|
|
|
|
' <input type="hidden" name="pageNumber" value="' + \
|
|
|
|
str(pageNumber) + '">\n'
|
|
|
|
deletePostStr += \
|
|
|
|
' <input type="hidden" name="messageId" value="' + \
|
|
|
|
messageId + '">\n'
|
|
|
|
deletePostStr += \
|
|
|
|
' <button type="submit" class="button" name="submitYes">' + \
|
|
|
|
translate['Yes'] + '</button>\n'
|
|
|
|
deletePostStr += \
|
|
|
|
' <a href="' + actor + '/inbox"><button class="button">' + \
|
|
|
|
translate['No'] + '</button></a>\n'
|
|
|
|
deletePostStr += ' </form>\n'
|
|
|
|
deletePostStr += '</center>\n'
|
|
|
|
deletePostStr += htmlFooter()
|
|
|
|
return deletePostStr
|
|
|
|
|
|
|
|
|
2020-11-28 10:45:26 +00:00
|
|
|
def htmlConfirmRemoveSharedItem(cssCache: {}, translate: {}, baseDir: str,
|
2021-07-28 14:22:06 +00:00
|
|
|
actor: str, itemID: str,
|
2021-08-09 13:07:32 +00:00
|
|
|
callingDomain: str,
|
|
|
|
sharesFileType: str) -> str:
|
2020-11-28 10:40:19 +00:00
|
|
|
"""Shows a screen asking to confirm the removal of a shared item
|
|
|
|
"""
|
|
|
|
nickname = getNicknameFromActor(actor)
|
|
|
|
domain, port = getDomainFromActor(actor)
|
2020-12-16 11:19:16 +00:00
|
|
|
domainFull = getFullDomain(domain, port)
|
2021-08-09 13:07:32 +00:00
|
|
|
sharesFile = \
|
|
|
|
acctDir(baseDir, nickname, domain) + '/' + sharesFileType + '.json'
|
2020-11-28 10:40:19 +00:00
|
|
|
if not os.path.isfile(sharesFile):
|
2021-08-09 13:07:32 +00:00
|
|
|
print('ERROR: no ' + sharesFileType + ' file ' + sharesFile)
|
2020-11-28 10:40:19 +00:00
|
|
|
return None
|
|
|
|
sharesJson = loadJson(sharesFile)
|
|
|
|
if not sharesJson:
|
2021-08-09 13:07:32 +00:00
|
|
|
print('ERROR: unable to load ' + sharesFileType + '.json')
|
2020-11-28 10:40:19 +00:00
|
|
|
return None
|
|
|
|
if not sharesJson.get(itemID):
|
|
|
|
print('ERROR: share named "' + itemID + '" is not in ' + sharesFile)
|
|
|
|
return None
|
|
|
|
sharedItemDisplayName = sharesJson[itemID]['displayName']
|
|
|
|
sharedItemImageUrl = None
|
|
|
|
if sharesJson[itemID].get('imageUrl'):
|
|
|
|
sharedItemImageUrl = sharesJson[itemID]['imageUrl']
|
|
|
|
|
|
|
|
if os.path.isfile(baseDir + '/img/shares-background.png'):
|
|
|
|
if not os.path.isfile(baseDir + '/accounts/shares-background.png'):
|
|
|
|
copyfile(baseDir + '/img/shares-background.png',
|
|
|
|
baseDir + '/accounts/shares-background.png')
|
|
|
|
|
|
|
|
cssFilename = baseDir + '/epicyon-follow.css'
|
|
|
|
if os.path.isfile(baseDir + '/follow.css'):
|
|
|
|
cssFilename = baseDir + '/follow.css'
|
|
|
|
|
2021-07-05 20:24:43 +00:00
|
|
|
instanceTitle = getConfigParam(baseDir, 'instanceTitle')
|
2021-01-11 19:46:21 +00:00
|
|
|
sharesStr = htmlHeaderWithExternalStyle(cssFilename, instanceTitle)
|
2020-11-28 10:40:19 +00:00
|
|
|
sharesStr += '<div class="follow">\n'
|
|
|
|
sharesStr += ' <div class="followAvatar">\n'
|
|
|
|
sharesStr += ' <center>\n'
|
|
|
|
if sharedItemImageUrl:
|
|
|
|
sharesStr += ' <img loading="lazy" src="' + \
|
|
|
|
sharedItemImageUrl + '"/>\n'
|
|
|
|
sharesStr += \
|
|
|
|
' <p class="followText">' + translate['Remove'] + \
|
|
|
|
' ' + sharedItemDisplayName + ' ?</p>\n'
|
|
|
|
postActor = getAltPath(actor, domainFull, callingDomain)
|
2021-08-09 13:07:32 +00:00
|
|
|
if sharesFileType == 'shares':
|
|
|
|
endpoint = 'rmshare'
|
|
|
|
else:
|
|
|
|
endpoint = 'rmwanted'
|
|
|
|
sharesStr += \
|
|
|
|
' <form method="POST" action="' + postActor + '/' + endpoint + '">\n'
|
2020-11-28 10:40:19 +00:00
|
|
|
sharesStr += \
|
|
|
|
' <input type="hidden" name="actor" value="' + actor + '">\n'
|
2021-07-28 14:27:20 +00:00
|
|
|
sharesStr += ' <input type="hidden" name="itemID" value="' + \
|
2021-07-28 14:22:06 +00:00
|
|
|
itemID + '">\n'
|
2020-11-28 10:40:19 +00:00
|
|
|
sharesStr += \
|
|
|
|
' <button type="submit" class="button" name="submitYes">' + \
|
|
|
|
translate['Yes'] + '</button>\n'
|
|
|
|
sharesStr += \
|
|
|
|
' <a href="' + actor + '/inbox' + '"><button class="button">' + \
|
|
|
|
translate['No'] + '</button></a>\n'
|
|
|
|
sharesStr += ' </form>\n'
|
|
|
|
sharesStr += ' </center>\n'
|
|
|
|
sharesStr += ' </div>\n'
|
|
|
|
sharesStr += '</div>\n'
|
|
|
|
sharesStr += htmlFooter()
|
|
|
|
return sharesStr
|
|
|
|
|
|
|
|
|
2020-11-28 10:45:26 +00:00
|
|
|
def htmlConfirmFollow(cssCache: {}, translate: {}, baseDir: str,
|
2020-11-28 10:40:19 +00:00
|
|
|
originPathStr: str,
|
|
|
|
followActor: str,
|
|
|
|
followProfileUrl: str) -> str:
|
|
|
|
"""Asks to confirm a follow
|
|
|
|
"""
|
|
|
|
followDomain, port = getDomainFromActor(followActor)
|
|
|
|
|
|
|
|
if os.path.isfile(baseDir + '/accounts/follow-background-custom.jpg'):
|
|
|
|
if not os.path.isfile(baseDir + '/accounts/follow-background.jpg'):
|
|
|
|
copyfile(baseDir + '/accounts/follow-background-custom.jpg',
|
|
|
|
baseDir + '/accounts/follow-background.jpg')
|
|
|
|
|
|
|
|
cssFilename = baseDir + '/epicyon-follow.css'
|
|
|
|
if os.path.isfile(baseDir + '/follow.css'):
|
|
|
|
cssFilename = baseDir + '/follow.css'
|
|
|
|
|
2021-07-05 20:24:43 +00:00
|
|
|
instanceTitle = getConfigParam(baseDir, 'instanceTitle')
|
2021-01-11 19:46:21 +00:00
|
|
|
followStr = htmlHeaderWithExternalStyle(cssFilename, instanceTitle)
|
2020-11-28 10:40:19 +00:00
|
|
|
followStr += '<div class="follow">\n'
|
|
|
|
followStr += ' <div class="followAvatar">\n'
|
|
|
|
followStr += ' <center>\n'
|
|
|
|
followStr += ' <a href="' + followActor + '">\n'
|
|
|
|
followStr += ' <img loading="lazy" src="' + followProfileUrl + '"/></a>\n'
|
|
|
|
followStr += \
|
|
|
|
' <p class="followText">' + translate['Follow'] + ' ' + \
|
|
|
|
getNicknameFromActor(followActor) + '@' + followDomain + ' ?</p>\n'
|
|
|
|
followStr += ' <form method="POST" action="' + \
|
|
|
|
originPathStr + '/followconfirm">\n'
|
|
|
|
followStr += ' <input type="hidden" name="actor" value="' + \
|
|
|
|
followActor + '">\n'
|
|
|
|
followStr += \
|
|
|
|
' <button type="submit" class="button" name="submitYes">' + \
|
|
|
|
translate['Yes'] + '</button>\n'
|
|
|
|
followStr += \
|
|
|
|
' <a href="' + originPathStr + '"><button class="button">' + \
|
|
|
|
translate['No'] + '</button></a>\n'
|
|
|
|
followStr += ' </form>\n'
|
|
|
|
followStr += '</center>\n'
|
|
|
|
followStr += '</div>\n'
|
|
|
|
followStr += '</div>\n'
|
|
|
|
followStr += htmlFooter()
|
|
|
|
return followStr
|
|
|
|
|
|
|
|
|
2020-11-28 10:45:26 +00:00
|
|
|
def htmlConfirmUnfollow(cssCache: {}, translate: {}, baseDir: str,
|
2020-11-28 10:40:19 +00:00
|
|
|
originPathStr: str,
|
|
|
|
followActor: str,
|
|
|
|
followProfileUrl: str) -> str:
|
|
|
|
"""Asks to confirm unfollowing an actor
|
|
|
|
"""
|
|
|
|
followDomain, port = getDomainFromActor(followActor)
|
|
|
|
|
|
|
|
if os.path.isfile(baseDir + '/accounts/follow-background-custom.jpg'):
|
|
|
|
if not os.path.isfile(baseDir + '/accounts/follow-background.jpg'):
|
|
|
|
copyfile(baseDir + '/accounts/follow-background-custom.jpg',
|
|
|
|
baseDir + '/accounts/follow-background.jpg')
|
|
|
|
|
|
|
|
cssFilename = baseDir + '/epicyon-follow.css'
|
|
|
|
if os.path.isfile(baseDir + '/follow.css'):
|
|
|
|
cssFilename = baseDir + '/follow.css'
|
|
|
|
|
2021-07-05 20:24:43 +00:00
|
|
|
instanceTitle = getConfigParam(baseDir, 'instanceTitle')
|
2021-01-11 19:46:21 +00:00
|
|
|
followStr = htmlHeaderWithExternalStyle(cssFilename, instanceTitle)
|
2020-11-28 10:40:19 +00:00
|
|
|
followStr += '<div class="follow">\n'
|
|
|
|
followStr += ' <div class="followAvatar">\n'
|
|
|
|
followStr += ' <center>\n'
|
|
|
|
followStr += ' <a href="' + followActor + '">\n'
|
|
|
|
followStr += ' <img loading="lazy" src="' + followProfileUrl + '"/></a>\n'
|
|
|
|
followStr += \
|
|
|
|
' <p class="followText">' + translate['Stop following'] + \
|
|
|
|
' ' + getNicknameFromActor(followActor) + \
|
|
|
|
'@' + followDomain + ' ?</p>\n'
|
|
|
|
followStr += ' <form method="POST" action="' + \
|
|
|
|
originPathStr + '/unfollowconfirm">\n'
|
|
|
|
followStr += ' <input type="hidden" name="actor" value="' + \
|
|
|
|
followActor + '">\n'
|
|
|
|
followStr += \
|
|
|
|
' <button type="submit" class="button" name="submitYes">' + \
|
|
|
|
translate['Yes'] + '</button>\n'
|
|
|
|
followStr += \
|
|
|
|
' <a href="' + originPathStr + '"><button class="button">' + \
|
|
|
|
translate['No'] + '</button></a>\n'
|
|
|
|
followStr += ' </form>\n'
|
|
|
|
followStr += '</center>\n'
|
|
|
|
followStr += '</div>\n'
|
|
|
|
followStr += '</div>\n'
|
|
|
|
followStr += htmlFooter()
|
|
|
|
return followStr
|
|
|
|
|
|
|
|
|
2020-11-28 10:45:26 +00:00
|
|
|
def htmlConfirmUnblock(cssCache: {}, translate: {}, baseDir: str,
|
2020-11-28 10:40:19 +00:00
|
|
|
originPathStr: str,
|
|
|
|
blockActor: str,
|
|
|
|
blockProfileUrl: str) -> str:
|
|
|
|
"""Asks to confirm unblocking an actor
|
|
|
|
"""
|
|
|
|
blockDomain, port = getDomainFromActor(blockActor)
|
|
|
|
|
|
|
|
if os.path.isfile(baseDir + '/img/block-background.png'):
|
|
|
|
if not os.path.isfile(baseDir + '/accounts/block-background.png'):
|
|
|
|
copyfile(baseDir + '/img/block-background.png',
|
|
|
|
baseDir + '/accounts/block-background.png')
|
|
|
|
|
|
|
|
cssFilename = baseDir + '/epicyon-follow.css'
|
|
|
|
if os.path.isfile(baseDir + '/follow.css'):
|
|
|
|
cssFilename = baseDir + '/follow.css'
|
|
|
|
|
2021-07-05 20:24:43 +00:00
|
|
|
instanceTitle = getConfigParam(baseDir, 'instanceTitle')
|
2021-01-11 19:46:21 +00:00
|
|
|
blockStr = htmlHeaderWithExternalStyle(cssFilename, instanceTitle)
|
2020-11-28 10:40:19 +00:00
|
|
|
blockStr += '<div class="block">\n'
|
|
|
|
blockStr += ' <div class="blockAvatar">\n'
|
|
|
|
blockStr += ' <center>\n'
|
|
|
|
blockStr += ' <a href="' + blockActor + '">\n'
|
|
|
|
blockStr += ' <img loading="lazy" src="' + blockProfileUrl + '"/></a>\n'
|
|
|
|
blockStr += \
|
|
|
|
' <p class="blockText">' + translate['Stop blocking'] + ' ' + \
|
|
|
|
getNicknameFromActor(blockActor) + '@' + blockDomain + ' ?</p>\n'
|
|
|
|
blockStr += ' <form method="POST" action="' + \
|
|
|
|
originPathStr + '/unblockconfirm">\n'
|
|
|
|
blockStr += ' <input type="hidden" name="actor" value="' + \
|
|
|
|
blockActor + '">\n'
|
|
|
|
blockStr += \
|
|
|
|
' <button type="submit" class="button" name="submitYes">' + \
|
|
|
|
translate['Yes'] + '</button>\n'
|
|
|
|
blockStr += \
|
|
|
|
' <a href="' + originPathStr + '"><button class="button">' + \
|
|
|
|
translate['No'] + '</button></a>\n'
|
|
|
|
blockStr += ' </form>\n'
|
|
|
|
blockStr += '</center>\n'
|
|
|
|
blockStr += '</div>\n'
|
|
|
|
blockStr += '</div>\n'
|
|
|
|
blockStr += htmlFooter()
|
|
|
|
return blockStr
|