epicyon/acceptreject.py

226 lines
8.7 KiB
Python
Raw Normal View History

2020-03-22 20:36:19 +00:00
__filename__="acceptreject.py"
__author__="Bob Mottram"
__license__="AGPL3+"
__version__="1.1.0"
__maintainer__="Bob Mottram"
__email__="bob@freedombone.net"
__status__="Production"
2019-07-02 11:31:26 +00:00
2020-03-01 00:04:27 +00:00
import os
2019-07-02 11:31:26 +00:00
import json
2019-07-07 11:53:32 +00:00
from capabilities import capabilitiesAccept
from capabilities import capabilitiesGrantedSave
2019-07-02 11:31:26 +00:00
from utils import getStatusNumber
from utils import createOutboxDir
from utils import urlPermitted
2019-07-06 15:17:21 +00:00
from utils import getDomainFromActor
from utils import getNicknameFromActor
from utils import domainPermitted
2019-07-06 19:24:52 +00:00
from utils import followPerson
2019-07-02 11:31:26 +00:00
2019-07-09 14:20:23 +00:00
def createAcceptReject(baseDir: str,federationList: [], \
2019-07-06 17:00:22 +00:00
nickname: str,domain: str,port: int, \
toUrl: str,ccUrl: str,httpPrefix: str, \
2019-07-07 11:53:32 +00:00
objectJson: {},ocapJson,acceptType: str) -> {}:
2019-07-06 17:00:22 +00:00
"""Accepts or rejects something (eg. a follow request or offer)
2019-07-02 11:31:26 +00:00
Typically toUrl will be https://www.w3.org/ns/activitystreams#Public
2019-07-06 17:00:22 +00:00
and ccUrl might be a specific person favorited or repeated and
the followers url objectUrl is typically the url of the message,
corresponding to url or atomUri in createPostBase
2019-07-02 11:31:26 +00:00
"""
2019-07-06 19:24:52 +00:00
if not objectJson.get('actor'):
return None
2019-07-09 14:20:23 +00:00
if not urlPermitted(objectJson['actor'],federationList,"inbox:write"):
2019-07-02 11:31:26 +00:00
return None
if port:
if port!=80 and port!=443:
if ':' not in domain:
domain=domain+':'+str(port)
2019-07-02 11:31:26 +00:00
2020-03-22 20:36:19 +00:00
newAccept={
2019-08-18 11:07:06 +00:00
"@context": "https://www.w3.org/ns/activitystreams",
2019-07-02 11:31:26 +00:00
'type': acceptType,
2019-07-03 19:00:03 +00:00
'actor': httpPrefix+'://'+domain+'/users/'+nickname,
2019-07-02 11:31:26 +00:00
'to': [toUrl],
'cc': [],
2019-07-06 19:24:52 +00:00
'object': objectJson
2019-07-02 11:31:26 +00:00
}
if ccUrl:
if len(ccUrl)>0:
2019-07-19 18:18:06 +00:00
newAccept['cc']=[ccUrl]
2019-07-07 11:53:32 +00:00
# attach capabilities for follow accept
if ocapJson:
newAccept['capabilities']=ocapJson
2019-07-02 11:31:26 +00:00
return newAccept
2019-07-09 14:20:23 +00:00
def createAccept(baseDir: str,federationList: [], \
2019-07-06 17:00:22 +00:00
nickname: str,domain: str,port: int, \
toUrl: str,ccUrl: str,httpPrefix: str, \
2019-11-03 15:27:29 +00:00
objectJson: {}, \
acceptedCaps=["inbox:write","objects:read"]) -> {}:
2019-07-07 11:53:32 +00:00
# create capabilities accept
2019-11-03 15:27:29 +00:00
ocapNew= \
capabilitiesAccept(baseDir,httpPrefix, \
nickname,domain,port,toUrl,True,acceptedCaps)
2019-07-09 14:20:23 +00:00
return createAcceptReject(baseDir,federationList, \
2019-07-06 17:00:22 +00:00
nickname,domain,port, \
toUrl,ccUrl,httpPrefix, \
2019-07-07 11:53:32 +00:00
objectJson,ocapNew,'Accept')
2019-07-02 11:31:26 +00:00
2019-07-09 14:20:23 +00:00
def createReject(baseDir: str,federationList: [], \
2019-07-06 17:00:22 +00:00
nickname: str,domain: str,port: int, \
toUrl: str,ccUrl: str,httpPrefix: str, \
2019-07-06 19:24:52 +00:00
objectJson: {}) -> {}:
2019-07-09 14:20:23 +00:00
return createAcceptReject(baseDir,federationList, \
2019-07-06 17:00:22 +00:00
nickname,domain,port, \
toUrl,ccUrl, \
2019-07-07 11:53:32 +00:00
httpPrefix,objectJson,None,'Reject')
2019-07-06 19:24:52 +00:00
def acceptFollow(baseDir: str,domain : str,messageJson: {}, \
2019-07-09 14:20:23 +00:00
federationList: [],debug : bool) -> None:
2019-07-20 08:33:18 +00:00
"""Receiving a follow Accept activity
"""
2019-07-06 19:24:52 +00:00
if not messageJson.get('object'):
return
if not messageJson['object'].get('type'):
2020-03-22 21:16:02 +00:00
return
2019-11-12 14:18:23 +00:00
if not messageJson['object']['type']=='Follow':
return
if debug:
print('DEBUG: receiving Follow activity')
2019-07-06 19:24:52 +00:00
if not messageJson['object'].get('actor'):
2019-11-12 14:18:23 +00:00
print('DEBUG: no actor in Follow activity')
2019-07-06 19:24:52 +00:00
return
# no, this isn't a mistake
if not messageJson['object'].get('object'):
2019-11-12 14:18:23 +00:00
print('DEBUG: no object within Follow activity')
2020-03-22 21:16:02 +00:00
return
2019-07-07 13:53:12 +00:00
if not messageJson.get('to'):
if debug:
print('DEBUG: No "to" parameter in follow Accept')
return
2019-07-06 19:24:52 +00:00
if debug:
print('DEBUG: follow Accept received')
thisActor=messageJson['object']['actor']
nickname=getNicknameFromActor(thisActor)
2019-09-02 09:43:43 +00:00
if not nickname:
print('WARN: no nickname found in '+thisActor)
return
2019-07-06 19:24:52 +00:00
acceptedDomain,acceptedPort=getDomainFromActor(thisActor)
if not acceptedDomain:
if debug:
print('DEBUG: domain not found in '+thisActor)
return
if not nickname:
if debug:
2020-03-22 21:16:02 +00:00
print('DEBUG: nickname not found in '+thisActor)
2019-07-06 19:24:52 +00:00
return
if acceptedPort:
2019-11-03 15:27:29 +00:00
if '/'+acceptedDomain+':'+str(acceptedPort)+'/users/'+nickname not in thisActor:
2019-07-06 19:24:52 +00:00
if debug:
2019-07-07 13:53:12 +00:00
print('Port: '+str(acceptedPort))
2019-11-03 15:27:29 +00:00
print('Expected: /'+acceptedDomain+':'+str(acceptedPort)+ \
'/users/'+nickname)
2019-07-07 13:53:12 +00:00
print('Actual: '+thisActor)
2019-07-06 19:24:52 +00:00
print('DEBUG: unrecognized actor '+thisActor)
return
else:
2019-07-07 13:53:12 +00:00
if not '/'+acceptedDomain+'/users/'+nickname in thisActor:
2019-07-06 19:24:52 +00:00
if debug:
2019-07-07 13:53:12 +00:00
print('Expected: /'+acceptedDomain+'/users/'+nickname)
print('Actual: '+thisActor)
2019-07-06 19:24:52 +00:00
print('DEBUG: unrecognized actor '+thisActor)
2020-03-22 21:16:02 +00:00
return
2019-07-06 19:24:52 +00:00
followedActor=messageJson['object']['object']
followedDomain,port=getDomainFromActor(followedActor)
if not followedDomain:
2020-03-30 19:09:45 +00:00
print('DEBUG: no domain found within Follow activity object '+ \
followedActor)
2019-07-06 19:24:52 +00:00
return
followedDomainFull=followedDomain
if port:
followedDomainFull=followedDomain+':'+str(port)
followedNickname=getNicknameFromActor(followedActor)
if not followedNickname:
2020-03-30 19:09:45 +00:00
print('DEBUG: no nickname found within Follow activity object '+ \
followedActor)
2019-07-06 19:24:52 +00:00
return
2019-07-07 11:53:32 +00:00
2019-07-16 22:57:45 +00:00
acceptedDomainFull=acceptedDomain
if acceptedPort:
acceptedDomainFull=acceptedDomain+':'+str(acceptedPort)
2019-07-07 11:53:32 +00:00
# are capabilities attached? If so then store them
2019-07-07 16:06:38 +00:00
if messageJson.get('capabilities'):
if isinstance(messageJson['capabilities'], dict):
2019-07-07 15:51:04 +00:00
capabilitiesGrantedSave(baseDir, \
2019-07-07 16:06:38 +00:00
nickname,acceptedDomainFull, \
messageJson['capabilities'])
2019-07-07 11:53:32 +00:00
# has this person already been unfollowed?
2020-03-30 19:09:45 +00:00
unfollowedFilename= \
baseDir+'/accounts/'+nickname+'@'+acceptedDomainFull+'/unfollowed.txt'
if os.path.isfile(unfollowedFilename):
if followedNickname+'@'+followedDomainFull in open(unfollowedFilename).read():
if debug:
print('DEBUG: follow accept arrived for '+ \
nickname+'@'+acceptedDomainFull+ \
' from '+followedNickname+'@'+followedDomainFull+ \
' but they have been unfollowed')
2020-03-22 21:16:02 +00:00
return
2019-07-07 13:53:12 +00:00
if followPerson(baseDir, \
2019-07-16 22:57:45 +00:00
nickname,acceptedDomainFull, \
followedNickname,followedDomainFull, \
2019-07-06 19:24:52 +00:00
federationList,debug):
if debug:
2019-11-03 15:27:29 +00:00
print('DEBUG: '+nickname+'@'+acceptedDomainFull+ \
' followed '+followedNickname+'@'+followedDomainFull)
2019-07-06 19:24:52 +00:00
else:
if debug:
2019-11-03 15:27:29 +00:00
print('DEBUG: Unable to create follow - '+ \
nickname+'@'+acceptedDomain+' -> '+ \
followedNickname+'@'+followedDomain)
2019-07-06 15:17:21 +00:00
2019-07-06 19:24:52 +00:00
def receiveAcceptReject(session,baseDir: str, \
httpPrefix: str,domain :str,port: int, \
2019-07-06 17:00:22 +00:00
sendThreads: [],postLog: [],cachedWebfingers: {}, \
personCache: {},messageJson: {},federationList: [], \
2019-07-09 14:20:23 +00:00
debug : bool) -> bool:
2019-07-06 15:17:21 +00:00
"""Receives an Accept or Reject within the POST section of HTTPServer
"""
if messageJson['type']!='Accept' and messageJson['type']!='Reject':
return False
if not messageJson.get('actor'):
if debug:
print('DEBUG: '+messageJson['type']+' has no actor')
return False
2019-10-17 22:26:47 +00:00
if '/users/' not in messageJson['actor'] and \
'/channel/' not in messageJson['actor'] and \
'/profile/' not in messageJson['actor']:
2019-07-06 15:17:21 +00:00
if debug:
2019-11-03 15:27:29 +00:00
print('DEBUG: "users" or "profile" missing from actor in '+ \
messageJson['type']+'. Assuming single user instance.')
2019-07-06 15:17:21 +00:00
domain,tempPort=getDomainFromActor(messageJson['actor'])
if not domainPermitted(domain,federationList):
if debug:
2019-11-03 15:27:29 +00:00
print('DEBUG: '+messageJson['type']+ \
' from domain not permitted - '+domain)
2019-07-06 15:17:21 +00:00
return False
nickname=getNicknameFromActor(messageJson['actor'])
if not nickname:
# single user instance
nickname='dev'
2019-07-06 15:17:21 +00:00
if debug:
2019-11-03 15:27:29 +00:00
print('DEBUG: '+messageJson['type']+ \
2020-03-30 19:09:45 +00:00
' does not contain a nickname. '+ \
'Assuming single user instance.')
2019-07-06 15:17:21 +00:00
handle=nickname.lower()+'@'+domain.lower()
2019-07-20 08:33:18 +00:00
# receive follow accept
2019-07-09 14:20:23 +00:00
acceptFollow(baseDir,domain,messageJson,federationList,debug)
2019-07-06 15:17:21 +00:00
if debug:
print('DEBUG: Uh, '+messageJson['type']+', I guess')
return True