mirror of https://gitlab.com/bashrc2/epicyon
Check if avatar image exists when entering person options
parent
a3c3389741
commit
04e80de244
15
cache.py
15
cache.py
|
@ -13,6 +13,21 @@ from utils import saveJson
|
|||
from utils import getFileCaseInsensitive
|
||||
|
||||
|
||||
def removePersonFromCache(baseDir: str, personUrl: str,
|
||||
personCache: {}) -> bool:
|
||||
"""Removes an actor from the cache
|
||||
"""
|
||||
cacheFilename = baseDir + '/cache/actors/' + \
|
||||
personUrl.replace('/', '#')+'.json'
|
||||
if os.path.isfile(cacheFilename):
|
||||
try:
|
||||
os.remove(cacheFilename)
|
||||
except BaseException:
|
||||
pass
|
||||
if personCache.get(personUrl):
|
||||
del personCache[personUrl]
|
||||
|
||||
|
||||
def storePersonInCache(baseDir: str, personUrl: str,
|
||||
personJson: {}, personCache: {},
|
||||
allowWriteToFile: bool) -> None:
|
||||
|
|
12
daemon.py
12
daemon.py
|
@ -20,6 +20,7 @@ import pyqrcode
|
|||
# for saving images
|
||||
from hashlib import sha256
|
||||
from hashlib import sha1
|
||||
from siteactive import siteIsActive
|
||||
from session import createSession
|
||||
from webfinger import webfingerMeta
|
||||
from webfinger import webfingerNodeInfo
|
||||
|
@ -228,6 +229,7 @@ from content import extractMediaInFormPOST
|
|||
from content import saveMediaInFormPOST
|
||||
from content import extractTextFieldsInPOST
|
||||
from media import removeMetaData
|
||||
from cache import removePersonFromCache
|
||||
from cache import storePersonInCache
|
||||
from cache import getPersonFromCache
|
||||
from httpsig import verifyPostHeaders
|
||||
|
@ -5488,6 +5490,16 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
PGPfingerprint = getPGPfingerprint(actorJson)
|
||||
if actorJson.get('alsoKnownAs'):
|
||||
alsoKnownAs = actorJson['alsoKnownAs']
|
||||
|
||||
# check if the avatar image exists and if not then update
|
||||
# the actor cache
|
||||
if optionsProfileUrl:
|
||||
if self.server.domainFull not in optionsProfileUrl:
|
||||
if not siteIsActive(optionsProfileUrl, 3):
|
||||
removePersonFromCache(self.server.baseDir,
|
||||
optionsActor,
|
||||
self.server.personCache)
|
||||
|
||||
msg = htmlPersonOptions(self.server.defaultTimeline,
|
||||
self.server.cssCache,
|
||||
self.server.translate,
|
||||
|
|
Loading…
Reference in New Issue