2020-07-03 19:21:48 +00:00
|
|
|
__filename__ = "followingCalendar.py"
|
|
|
|
__author__ = "Bob Mottram"
|
|
|
|
__license__ = "AGPL3+"
|
2021-01-26 10:07:42 +00:00
|
|
|
__version__ = "1.2.0"
|
2020-07-03 19:21:48 +00:00
|
|
|
__maintainer__ = "Bob Mottram"
|
|
|
|
__email__ = "bob@freedombone.net"
|
|
|
|
__status__ = "Production"
|
2021-06-15 15:08:12 +00:00
|
|
|
__module_group__ = "Calendar"
|
2020-07-03 19:21:48 +00:00
|
|
|
|
|
|
|
import os
|
2021-06-26 14:21:24 +00:00
|
|
|
|
|
|
|
|
2021-07-13 21:59:53 +00:00
|
|
|
def _dirAcct(baseDir: str, nickname: str, domain: str) -> str:
|
|
|
|
return baseDir + '/accounts/' + nickname + '@' + domain
|
|
|
|
|
2021-07-18 09:55:49 +00:00
|
|
|
|
2021-06-26 14:21:24 +00:00
|
|
|
def _portDomainRemove(domain: str) -> str:
|
|
|
|
"""If the domain has a port appended then remove it
|
|
|
|
eg. mydomain.com:80 becomes mydomain.com
|
|
|
|
same as removeDomainPort in utils.py
|
|
|
|
"""
|
|
|
|
if ':' in domain:
|
|
|
|
if domain.startswith('did:'):
|
|
|
|
return domain
|
|
|
|
domain = domain.split(':')[0]
|
|
|
|
return domain
|
2020-07-03 19:21:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
def receivingCalendarEvents(baseDir: str, nickname: str, domain: str,
|
|
|
|
followingNickname: str,
|
|
|
|
followingDomain: str) -> bool:
|
|
|
|
"""Returns true if receiving calendar events from the given
|
|
|
|
account from following.txt
|
|
|
|
"""
|
2020-07-11 22:39:30 +00:00
|
|
|
if followingNickname == nickname and followingDomain == domain:
|
|
|
|
# reminder post
|
|
|
|
return True
|
2021-07-13 21:59:53 +00:00
|
|
|
calendarFilename = \
|
|
|
|
_dirAcct(baseDir, nickname, domain) + '/followingCalendar.txt'
|
2020-07-03 19:21:48 +00:00
|
|
|
handle = followingNickname + '@' + followingDomain
|
|
|
|
if not os.path.isfile(calendarFilename):
|
2021-07-13 21:59:53 +00:00
|
|
|
followingFilename = \
|
|
|
|
_dirAcct(baseDir, nickname, domain) + '/following.txt'
|
2020-07-03 19:35:32 +00:00
|
|
|
if not os.path.isfile(followingFilename):
|
|
|
|
return False
|
|
|
|
# create a new calendar file from the following file
|
2021-06-21 22:52:04 +00:00
|
|
|
with open(followingFilename, 'r') as followingFile:
|
|
|
|
followingHandles = followingFile.read()
|
2021-06-21 22:53:04 +00:00
|
|
|
with open(calendarFilename, 'w+') as fp:
|
|
|
|
fp.write(followingHandles)
|
2020-07-03 19:21:48 +00:00
|
|
|
return handle + '\n' in open(calendarFilename).read()
|
|
|
|
|
|
|
|
|
2020-12-22 18:06:23 +00:00
|
|
|
def _receiveCalendarEvents(baseDir: str, nickname: str, domain: str,
|
|
|
|
followingNickname: str,
|
|
|
|
followingDomain: str,
|
|
|
|
add: bool) -> None:
|
2020-07-03 19:21:48 +00:00
|
|
|
"""Adds or removes a handle from the following.txt list into a list
|
|
|
|
indicating whether to receive calendar events from that account
|
|
|
|
"""
|
|
|
|
# check that a following file exists
|
2021-06-26 14:21:24 +00:00
|
|
|
domain = _portDomainRemove(domain)
|
2021-07-13 21:59:53 +00:00
|
|
|
followingFilename = _dirAcct(baseDir, nickname, domain) + '/following.txt'
|
2020-07-03 19:21:48 +00:00
|
|
|
if not os.path.isfile(followingFilename):
|
2020-09-03 12:16:24 +00:00
|
|
|
print("WARN: following.txt doesn't exist for " +
|
|
|
|
nickname + '@' + domain)
|
2020-07-03 19:21:48 +00:00
|
|
|
return
|
|
|
|
handle = followingNickname + '@' + followingDomain
|
|
|
|
|
|
|
|
# check that you are following this handle
|
|
|
|
if handle + '\n' not in open(followingFilename).read():
|
2020-09-03 12:16:24 +00:00
|
|
|
print('WARN: ' + handle + ' is not in ' + followingFilename)
|
2020-07-03 19:21:48 +00:00
|
|
|
return
|
|
|
|
|
2021-07-13 21:59:53 +00:00
|
|
|
calendarFilename = \
|
|
|
|
_dirAcct(baseDir, nickname, domain) + '/followingCalendar.txt'
|
2020-07-03 19:21:48 +00:00
|
|
|
|
|
|
|
# get the contents of the calendar file, which is
|
|
|
|
# a set of handles
|
|
|
|
followingHandles = ''
|
|
|
|
if os.path.isfile(calendarFilename):
|
2020-09-03 12:16:24 +00:00
|
|
|
print('Calendar file exists')
|
2021-06-21 22:52:04 +00:00
|
|
|
with open(calendarFilename, 'r') as calendarFile:
|
|
|
|
followingHandles = calendarFile.read()
|
2020-07-03 19:21:48 +00:00
|
|
|
else:
|
|
|
|
# create a new calendar file from the following file
|
2020-09-03 12:16:24 +00:00
|
|
|
print('Creating calendar file ' + calendarFilename)
|
2021-06-21 22:52:04 +00:00
|
|
|
followingHandles = ''
|
|
|
|
with open(followingFilename, 'r') as followingFile:
|
|
|
|
followingHandles = followingFile.read()
|
2020-09-03 12:16:24 +00:00
|
|
|
if add:
|
2021-06-21 22:53:04 +00:00
|
|
|
with open(calendarFilename, 'w+') as fp:
|
|
|
|
fp.write(followingHandles + handle + '\n')
|
2020-07-03 19:21:48 +00:00
|
|
|
|
|
|
|
# already in the calendar file?
|
|
|
|
if handle + '\n' in followingHandles:
|
2020-09-03 12:16:24 +00:00
|
|
|
print(handle + ' exists in followingCalendar.txt')
|
2020-07-03 19:21:48 +00:00
|
|
|
if add:
|
|
|
|
# already added
|
|
|
|
return
|
|
|
|
# remove from calendar file
|
|
|
|
followingHandles = followingHandles.replace(handle + '\n', '')
|
2021-06-21 22:53:04 +00:00
|
|
|
with open(calendarFilename, 'w+') as fp:
|
|
|
|
fp.write(followingHandles)
|
2020-07-03 19:21:48 +00:00
|
|
|
else:
|
2020-09-03 12:16:24 +00:00
|
|
|
print(handle + ' not in followingCalendar.txt')
|
2020-07-03 19:21:48 +00:00
|
|
|
# not already in the calendar file
|
|
|
|
if add:
|
|
|
|
# append to the list of handles
|
|
|
|
followingHandles += handle + '\n'
|
2021-06-21 22:53:04 +00:00
|
|
|
with open(calendarFilename, 'w+') as fp:
|
|
|
|
fp.write(followingHandles)
|
2020-07-03 19:21:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
def addPersonToCalendar(baseDir: str, nickname: str, domain: str,
|
|
|
|
followingNickname: str,
|
|
|
|
followingDomain: str) -> None:
|
2020-12-22 18:06:23 +00:00
|
|
|
_receiveCalendarEvents(baseDir, nickname, domain,
|
|
|
|
followingNickname, followingDomain, True)
|
2020-07-03 19:21:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
def removePersonFromCalendar(baseDir: str, nickname: str, domain: str,
|
|
|
|
followingNickname: str,
|
|
|
|
followingDomain: str) -> None:
|
2020-12-22 18:06:23 +00:00
|
|
|
_receiveCalendarEvents(baseDir, nickname, domain,
|
|
|
|
followingNickname, followingDomain, False)
|