mirror of https://gitlab.com/bashrc2/epicyon
Check that alternate addresses are not the same as the main address
parent
0123c52349
commit
72216b4094
|
@ -145,23 +145,30 @@ def htmlPersonOptions(defaultTimeline: str,
|
||||||
translate['New account'] + \
|
translate['New account'] + \
|
||||||
': <a href="' + movedTo + '">@' + newHandle + '</a></p>\n'
|
': <a href="' + movedTo + '">@' + newHandle + '</a></p>\n'
|
||||||
elif alsoKnownAs:
|
elif alsoKnownAs:
|
||||||
optionsStr += \
|
otherAccountsHtml = \
|
||||||
' <p class="optionsText">' + \
|
' <p class="optionsText">' + \
|
||||||
translate['Other accounts'] + ': '
|
translate['Other accounts'] + ': '
|
||||||
|
|
||||||
if isinstance(alsoKnownAs, list):
|
|
||||||
ctr = 0
|
ctr = 0
|
||||||
|
if isinstance(alsoKnownAs, list):
|
||||||
for altActor in alsoKnownAs:
|
for altActor in alsoKnownAs:
|
||||||
|
if altActor == optionsActor:
|
||||||
|
continue
|
||||||
if ctr > 0:
|
if ctr > 0:
|
||||||
optionsStr += ' '
|
otherAccountsHtml += ' '
|
||||||
ctr += 1
|
ctr += 1
|
||||||
altDomain, altPort = getDomainFromActor(altActor)
|
altDomain, altPort = getDomainFromActor(altActor)
|
||||||
optionsStr += \
|
otherAccountsHtml += \
|
||||||
'<a href="' + altActor + '">' + altDomain + '</a>'
|
'<a href="' + altActor + '">' + altDomain + '</a>'
|
||||||
elif isinstance(alsoKnownAs, str):
|
elif isinstance(alsoKnownAs, str):
|
||||||
|
if alsoKnownAs != optionsActor:
|
||||||
|
ctr += 1
|
||||||
altDomain, altPort = getDomainFromActor(alsoKnownAs)
|
altDomain, altPort = getDomainFromActor(alsoKnownAs)
|
||||||
optionsStr += '<a href="' + alsoKnownAs + '">' + altDomain + '</a>'
|
otherAccountsHtml += \
|
||||||
optionsStr += '</p>\n'
|
'<a href="' + alsoKnownAs + '">' + altDomain + '</a>'
|
||||||
|
otherAccountsHtml += '</p>\n'
|
||||||
|
if ctr > 0:
|
||||||
|
optionsStr += otherAccountsHtml
|
||||||
if emailAddress:
|
if emailAddress:
|
||||||
optionsStr += \
|
optionsStr += \
|
||||||
'<p class="imText">' + translate['Email'] + \
|
'<p class="imText">' + translate['Email'] + \
|
||||||
|
|
|
@ -242,7 +242,8 @@ def htmlProfileAfterSearch(cssCache: {},
|
||||||
displayName, followsYou,
|
displayName, followsYou,
|
||||||
profileDescriptionShort,
|
profileDescriptionShort,
|
||||||
avatarUrl, imageUrl,
|
avatarUrl, imageUrl,
|
||||||
movedTo, alsoKnownAs)
|
movedTo, profileJson['id'],
|
||||||
|
alsoKnownAs)
|
||||||
|
|
||||||
domainFull = getFullDomain(domain, port)
|
domainFull = getFullDomain(domain, port)
|
||||||
|
|
||||||
|
@ -303,7 +304,8 @@ def htmlProfileAfterSearch(cssCache: {},
|
||||||
profileStr + htmlFooter()
|
profileStr + htmlFooter()
|
||||||
|
|
||||||
|
|
||||||
def _getProfileHeader(baseDir: str, nickname: str, domain: str,
|
def _getProfileHeader(baseDir: str, httpPrefix: str,
|
||||||
|
nickname: str, domain: str,
|
||||||
domainFull: str, translate: {},
|
domainFull: str, translate: {},
|
||||||
defaultTimeline: str,
|
defaultTimeline: str,
|
||||||
displayName: str,
|
displayName: str,
|
||||||
|
@ -341,22 +343,30 @@ def _getProfileHeader(baseDir: str, nickname: str, domain: str,
|
||||||
'<a href="' + movedTo + '">@' + \
|
'<a href="' + movedTo + '">@' + \
|
||||||
newNickname + '@' + newDomainFull + '</a><br>\n'
|
newNickname + '@' + newDomainFull + '</a><br>\n'
|
||||||
elif alsoKnownAs:
|
elif alsoKnownAs:
|
||||||
htmlStr += \
|
otherAccountsHtml = \
|
||||||
' <p>' + translate['Other accounts'] + ': '
|
' <p>' + translate['Other accounts'] + ': '
|
||||||
|
|
||||||
if isinstance(alsoKnownAs, list):
|
actor = httpPrefix + '://' + domainFull + '/users/' + nickname
|
||||||
ctr = 0
|
ctr = 0
|
||||||
|
if isinstance(alsoKnownAs, list):
|
||||||
for altActor in alsoKnownAs:
|
for altActor in alsoKnownAs:
|
||||||
|
if altActor == actor:
|
||||||
|
continue
|
||||||
if ctr > 0:
|
if ctr > 0:
|
||||||
htmlStr += ' '
|
otherAccountsHtml += ' '
|
||||||
ctr += 1
|
ctr += 1
|
||||||
altDomain, altPort = getDomainFromActor(altActor)
|
altDomain, altPort = getDomainFromActor(altActor)
|
||||||
htmlStr += \
|
otherAccountsHtml += \
|
||||||
'<a href="' + altActor + '">' + altDomain + '</a>'
|
'<a href="' + altActor + '">' + altDomain + '</a>'
|
||||||
elif isinstance(alsoKnownAs, str):
|
elif isinstance(alsoKnownAs, str):
|
||||||
|
if alsoKnownAs != actor:
|
||||||
|
ctr += 1
|
||||||
altDomain, altPort = getDomainFromActor(alsoKnownAs)
|
altDomain, altPort = getDomainFromActor(alsoKnownAs)
|
||||||
htmlStr += '<a href="' + alsoKnownAs + '">' + altDomain + '</a>'
|
otherAccountsHtml += \
|
||||||
htmlStr += '</p>\n'
|
'<a href="' + alsoKnownAs + '">' + altDomain + '</a>'
|
||||||
|
otherAccountsHtml += '</p>\n'
|
||||||
|
if ctr > 0:
|
||||||
|
htmlStr += otherAccountsHtml
|
||||||
htmlStr += \
|
htmlStr += \
|
||||||
' <a href="/users/' + nickname + \
|
' <a href="/users/' + nickname + \
|
||||||
'/qrcode.png" alt="' + translate['QR Code'] + '" title="' + \
|
'/qrcode.png" alt="' + translate['QR Code'] + '" title="' + \
|
||||||
|
@ -379,7 +389,7 @@ def _getProfileHeaderAfterSearch(baseDir: str,
|
||||||
followsYou: bool,
|
followsYou: bool,
|
||||||
profileDescriptionShort: str,
|
profileDescriptionShort: str,
|
||||||
avatarUrl: str, imageUrl: str,
|
avatarUrl: str, imageUrl: str,
|
||||||
movedTo: str,
|
movedTo: str, actor: str,
|
||||||
alsoKnownAs: []) -> str:
|
alsoKnownAs: []) -> str:
|
||||||
"""The header of a searched for handle, containing background
|
"""The header of a searched for handle, containing background
|
||||||
image and avatar
|
image and avatar
|
||||||
|
@ -412,22 +422,30 @@ def _getProfileHeaderAfterSearch(baseDir: str,
|
||||||
htmlStr += ' <p>' + translate['New account'] + \
|
htmlStr += ' <p>' + translate['New account'] + \
|
||||||
': < a href="' + movedTo + '">@' + newHandle + '</a></p>\n'
|
': < a href="' + movedTo + '">@' + newHandle + '</a></p>\n'
|
||||||
elif alsoKnownAs:
|
elif alsoKnownAs:
|
||||||
htmlStr += \
|
otherAccountshtml = \
|
||||||
' <p>' + translate['Other accounts'] + ': '
|
' <p>' + translate['Other accounts'] + ': '
|
||||||
|
|
||||||
if isinstance(alsoKnownAs, list):
|
|
||||||
ctr = 0
|
ctr = 0
|
||||||
|
if isinstance(alsoKnownAs, list):
|
||||||
for altActor in alsoKnownAs:
|
for altActor in alsoKnownAs:
|
||||||
|
if altActor == actor:
|
||||||
|
continue
|
||||||
if ctr > 0:
|
if ctr > 0:
|
||||||
htmlStr += ' '
|
otherAccountshtml += ' '
|
||||||
ctr += 1
|
ctr += 1
|
||||||
altDomain, altPort = getDomainFromActor(altActor)
|
altDomain, altPort = getDomainFromActor(altActor)
|
||||||
htmlStr += \
|
otherAccountshtml += \
|
||||||
'<a href="' + altActor + '">' + altDomain + '</a>'
|
'<a href="' + altActor + '">' + altDomain + '</a>'
|
||||||
elif isinstance(alsoKnownAs, str):
|
elif isinstance(alsoKnownAs, str):
|
||||||
|
if alsoKnownAs != actor:
|
||||||
|
ctr += 1
|
||||||
altDomain, altPort = getDomainFromActor(alsoKnownAs)
|
altDomain, altPort = getDomainFromActor(alsoKnownAs)
|
||||||
htmlStr += '<a href="' + alsoKnownAs + '">' + altDomain + '</a>'
|
otherAccountshtml += \
|
||||||
htmlStr += '</p>\n'
|
'<a href="' + alsoKnownAs + '">' + altDomain + '</a>'
|
||||||
|
|
||||||
|
otherAccountshtml += '</p>\n'
|
||||||
|
if ctr > 0:
|
||||||
|
htmlStr += otherAccountshtml
|
||||||
|
|
||||||
htmlStr += ' <p>' + profileDescriptionShort + '</p>\n'
|
htmlStr += ' <p>' + profileDescriptionShort + '</p>\n'
|
||||||
htmlStr += ' </figcaption>\n'
|
htmlStr += ' </figcaption>\n'
|
||||||
|
@ -662,7 +680,8 @@ def htmlProfile(rssIconAtTop: bool,
|
||||||
|
|
||||||
avatarUrl = profileJson['icon']['url']
|
avatarUrl = profileJson['icon']['url']
|
||||||
profileHeaderStr = \
|
profileHeaderStr = \
|
||||||
_getProfileHeader(baseDir, nickname, domain,
|
_getProfileHeader(baseDir, httpPrefix,
|
||||||
|
nickname, domain,
|
||||||
domainFull, translate,
|
domainFull, translate,
|
||||||
defaultTimeline, displayName,
|
defaultTimeline, displayName,
|
||||||
avatarDescription,
|
avatarDescription,
|
||||||
|
|
Loading…
Reference in New Issue