Check that calendar event does not already exist

main2
Bob Mottram 2019-10-11 17:20:16 +01:00
parent da7d9b4ea4
commit 44d7c791b4
1 changed files with 6 additions and 2 deletions

View File

@ -1387,11 +1387,15 @@ def inboxUpdateCalendar(baseDir: str,handle: str,postJsonObject: {}) -> None:
if not os.path.isdir(calendarPath+'/'+str(eventYear)):
os.mkdir(calendarPath+'/'+str(eventYear))
calendarFilename=calendarPath+'/'+str(eventYear)+'/'+str(eventMonthNumber)+'.txt'
postId=postJsonObject['id'].replace('/','#')
if os.path.isfile(calendarFilename):
if postId in open(calendarFilename).read():
return
calendarFile=open(calendarFilename,'a+')
if calendarFile:
calendarFile.write(postJsonObject['id'].replace('/','#')+'\n')
calendarFile.write(postId+'\n')
calendarFile.close()
def inboxAfterCapabilities(session,keyId: str,handle: str,messageJson: {}, \
baseDir: str,httpPrefix: str,sendThreads: [], \
postLog: [],cachedWebfingers: {},personCache: {}, \