Don't show shared items from accounts which are blocked

merge-requests/30/head
Bob Mottram 2021-08-09 11:34:03 +01:00
parent 19649481b9
commit 23e62dbeb4
3 changed files with 23 additions and 12 deletions

View File

@ -29,7 +29,7 @@ def _linksExist(baseDir: str) -> bool:
def _getLeftColumnShares(baseDir: str, def _getLeftColumnShares(baseDir: str,
httpPrefix: str, domainFull: str, httpPrefix: str, domain: str, domainFull: str,
nickname: str, nickname: str,
maxSharesInLeftColumn: int, maxSharesInLeftColumn: int,
translate: {}, translate: {},
@ -42,7 +42,7 @@ def _getLeftColumnShares(baseDir: str,
# shared items is large # shared items is large
sharesJson, lastPage = \ sharesJson, lastPage = \
sharesTimelineJson(actor, pageNumber, maxSharesInLeftColumn, sharesTimelineJson(actor, pageNumber, maxSharesInLeftColumn,
baseDir, maxSharesInLeftColumn, baseDir, domain, nickname, maxSharesInLeftColumn,
sharedItemsFederatedDomains) sharedItemsFederatedDomains)
if not sharesJson: if not sharesJson:
return [] return []
@ -162,7 +162,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str,
maxSharesInLeftColumn = 3 maxSharesInLeftColumn = 3
sharesList = \ sharesList = \
_getLeftColumnShares(baseDir, _getLeftColumnShares(baseDir,
httpPrefix, domainFull, nickname, httpPrefix, domain, domainFull, nickname,
maxSharesInLeftColumn, translate, maxSharesInLeftColumn, translate,
sharedItemsFederatedDomains) sharedItemsFederatedDomains)
if linksList and sharesList: if linksList and sharesList:

View File

@ -921,7 +921,7 @@ def _htmlSharesTimeline(translate: {}, pageNumber: int, itemsPerPage: int,
""" """
sharesJson, lastPage = \ sharesJson, lastPage = \
sharesTimelineJson(actor, pageNumber, itemsPerPage, sharesTimelineJson(actor, pageNumber, itemsPerPage,
baseDir, maxSharesPerAccount, baseDir, domain, nickname, maxSharesPerAccount,
sharedItemsFederatedDomains) sharedItemsFederatedDomains)
domainFull = getFullDomain(domain, port) domainFull = getFullDomain(domain, port)
actor = httpPrefix + '://' + domainFull + '/users/' + nickname actor = httpPrefix + '://' + domainFull + '/users/' + nickname

View File

@ -27,6 +27,7 @@ from content import addHtmlTags
from content import replaceEmojiFromTags from content import replaceEmojiFromTags
from person import getPersonAvatarUrl from person import getPersonAvatarUrl
from posts import isModerator from posts import isModerator
from blocking import isBlocked
def getBrokenLinkSubstitute() -> str: def getBrokenLinkSubstitute() -> str:
@ -337,7 +338,8 @@ def scheduledPostsExist(baseDir: str, nickname: str, domain: str) -> bool:
def sharesTimelineJson(actor: str, pageNumber: int, itemsPerPage: int, def sharesTimelineJson(actor: str, pageNumber: int, itemsPerPage: int,
baseDir: str, maxSharesPerAccount: int, baseDir: str, domain: str, nickname: str,
maxSharesPerAccount: int,
sharedItemsFederatedDomains: []) -> ({}, bool): sharedItemsFederatedDomains: []) -> ({}, bool):
"""Get a page on the shared items timeline as json """Get a page on the shared items timeline as json
maxSharesPerAccount helps to avoid one person dominating the timeline maxSharesPerAccount helps to avoid one person dominating the timeline
@ -355,9 +357,14 @@ def sharesTimelineJson(actor: str, pageNumber: int, itemsPerPage: int,
sharesJson = loadJson(sharesFilename) sharesJson = loadJson(sharesFilename)
if not sharesJson: if not sharesJson:
continue continue
nickname = handle.split('@')[0] accountNickname = handle.split('@')[0]
# Don't include shared items from blocked accounts
if accountNickname != nickname:
if isBlocked(baseDir, nickname, domain,
accountNickname, domain, None):
continue
# actor who owns this share # actor who owns this share
owner = actor.split('/users/')[0] + '/users/' + nickname owner = actor.split('/users/')[0] + '/users/' + accountNickname
ctr = 0 ctr = 0
for itemID, item in sharesJson.items(): for itemID, item in sharesJson.items():
# assign owner to the item # assign owner to the item
@ -387,11 +394,15 @@ def sharesTimelineJson(actor: str, pageNumber: int, itemsPerPage: int,
ctr = 0 ctr = 0
for itemID, item in sharesJson.items(): for itemID, item in sharesJson.items():
# assign owner to the item # assign owner to the item
shareActor = '' if '--shareditems--' not in itemID:
if '--shareditems--' in itemID: continue
shareActor = itemID.split('--shareditems--')[0] shareActor = itemID.split('--shareditems--')[0]
shareActor = shareActor.replace('___', '://') shareActor = shareActor.replace('___', '://')
shareActor = shareActor.replace('--', '/') shareActor = shareActor.replace('--', '/')
shareNickname = getNicknameFromActor(shareActor)
if isBlocked(baseDir, nickname, domain,
shareNickname, federatedDomain, None):
continue
item['actor'] = shareActor item['actor'] = shareActor
item['shareId'] = itemID item['shareId'] = itemID
allSharesJson[str(item['published'])] = item allSharesJson[str(item['published'])] = item