forked from indymedia/epicyon
Locate within announce cache
parent
2c30f76ce8
commit
8877202ac1
9
utils.py
9
utils.py
|
@ -170,14 +170,17 @@ def locatePost(baseDir: str,nickname: str,domain: str,postUrl: str,replies=False
|
||||||
# if this post in the shared inbox?
|
# if this post in the shared inbox?
|
||||||
handle='inbox@'+domain
|
handle='inbox@'+domain
|
||||||
boxName='inbox'
|
boxName='inbox'
|
||||||
postFilename=baseDir+'/accounts/'+nickname+'@'+domain+'/'+boxName+'/'+postUrl.replace('/','#')+'.'+extension
|
postUrl=postUrl.replace('/','#')
|
||||||
|
postFilename=baseDir+'/accounts/'+nickname+'@'+domain+'/'+boxName+'/'+postUrl+'.'+extension
|
||||||
if not os.path.isfile(postFilename):
|
if not os.path.isfile(postFilename):
|
||||||
boxName='outbox'
|
boxName='outbox'
|
||||||
postFilename=baseDir+'/accounts/'+nickname+'@'+domain+'/'+boxName+'/'+postUrl.replace('/','#')+'.'+extension
|
postFilename=baseDir+'/accounts/'+nickname+'@'+domain+'/'+boxName+'/'+postUrl+'.'+extension
|
||||||
if not os.path.isfile(postFilename):
|
if not os.path.isfile(postFilename):
|
||||||
# if this post in the inbox of the person?
|
# if this post in the inbox of the person?
|
||||||
boxName='inbox'
|
boxName='inbox'
|
||||||
postFilename=baseDir+'/accounts/'+nickname+'@'+domain+'/'+boxName+'/'+postUrl.replace('/','#')+'.'+extension
|
postFilename=baseDir+'/accounts/'+nickname+'@'+domain+'/'+boxName+'/'+postUrl+'.'+extension
|
||||||
|
if not os.path.isfile(postFilename):
|
||||||
|
postFilename=baseDir+'/cache/announce/'+nickname+'/'+postUrl+'.'+extension
|
||||||
if not os.path.isfile(postFilename):
|
if not os.path.isfile(postFilename):
|
||||||
postFilename=None
|
postFilename=None
|
||||||
return postFilename
|
return postFilename
|
||||||
|
|
Loading…
Reference in New Issue