epicyon/announce.py

128 lines
5.0 KiB
Python
Raw Normal View History

2019-07-02 09:25:29 +00:00
__filename__ = "announce.py"
__author__ = "Bob Mottram"
__license__ = "AGPL3+"
__version__ = "0.0.1"
__maintainer__ = "Bob Mottram"
__email__ = "bob@freedombone.net"
__status__ = "Production"
import json
import commentjson
from utils import getStatusNumber
from utils import createOutboxDir
2019-07-02 10:43:54 +00:00
from utils import urlPermitted
2019-07-11 17:55:10 +00:00
from utils import getNicknameFromActor
from utils import getDomainFromActor
from posts import sendSignedJson
2019-07-02 09:25:29 +00:00
2019-07-11 17:55:10 +00:00
def createAnnounce(session,baseDir: str,federationList: [], \
2019-07-03 09:40:27 +00:00
nickname: str, domain: str, port: int, \
2019-07-03 19:00:03 +00:00
toUrl: str, ccUrl: str, httpPrefix: str, \
2019-07-11 17:55:10 +00:00
objectUrl: str, saveToFile: bool, \
clientToServer: bool, \
sendThreads: [],postLog: [], \
personCache: {},cachedWebfingers: {}, \
debug: bool) -> {}:
2019-07-02 09:25:29 +00:00
"""Creates an announce message
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 09:25:29 +00:00
"""
2019-07-09 14:20:23 +00:00
if not urlPermitted(objectUrl,federationList,"inbox:write"):
2019-07-02 10:43:54 +00:00
return None
2019-07-11 17:55:10 +00:00
if ':' in domain:
domain=domain.split(':')[0]
fullDomain=domain
2019-07-02 09:25:29 +00:00
if port!=80 and port!=443:
2019-07-11 17:55:10 +00:00
fullDomain=domain+':'+str(port)
2019-07-02 09:25:29 +00:00
statusNumber,published = getStatusNumber()
2019-07-06 17:00:22 +00:00
newAnnounceId= \
2019-07-11 17:55:10 +00:00
httpPrefix+'://'+fullDomain+'/users/'+nickname+'/statuses/'+statusNumber
2019-07-02 09:25:29 +00:00
newAnnounce = {
2019-07-11 17:55:10 +00:00
'actor': httpPrefix+'://'+fullDomain+'/users/'+nickname,
'atomUri': httpPrefix+'://'+fullDomain+'/users/'+nickname+'/statuses/'+statusNumber,
2019-07-02 09:25:29 +00:00
'cc': [],
'id': newAnnounceId+'/activity',
'object': objectUrl,
'published': published,
'to': [toUrl],
'type': 'Announce'
}
if ccUrl:
if len(ccUrl)>0:
2019-07-11 17:55:10 +00:00
newAnnounce['cc']=[ccUrl]
2019-07-02 09:25:29 +00:00
if saveToFile:
2019-07-03 09:40:27 +00:00
outboxDir = createOutboxDir(nickname,domain,baseDir)
2019-07-02 09:25:29 +00:00
filename=outboxDir+'/'+newAnnounceId.replace('/','#')+'.json'
with open(filename, 'w') as fp:
commentjson.dump(newAnnounce, fp, indent=4, sort_keys=False)
2019-07-11 17:55:10 +00:00
announceNickname=None
announceDomain=None
announcePort=None
if '/users/' in objectUrl:
announceNickname=getNicknameFromActor(objectUrl)
announceDomain,announcePort=getDomainFromActor(objectUrl)
if announceNickname and announceDomain:
sendSignedJson(newAnnounce,session,baseDir, \
nickname,domain,port, \
announceNickname,announceDomain,announcePort, \
'https://www.w3.org/ns/activitystreams#Public', \
httpPrefix,True,clientToServer,federationList, \
sendThreads,postLog,cachedWebfingers,personCache,debug)
2019-07-02 09:25:29 +00:00
return newAnnounce
2019-07-11 17:55:10 +00:00
def announcePublic(session,baseDir: str,federationList: [], \
2019-07-03 19:00:03 +00:00
nickname: str, domain: str, port: int, httpPrefix: str, \
2019-07-11 17:55:10 +00:00
objectUrl: str,clientToServer: bool, \
sendThreads: [],postLog: [], \
personCache: {},cachedWebfingers: {}, \
debug: bool) -> {}:
2019-07-02 09:25:29 +00:00
"""Makes a public announcement
"""
fromDomain=domain
if port!=80 and port!=443:
2019-07-11 17:55:10 +00:00
if ':' not in domain:
fromDomain=domain+':'+str(port)
2019-07-02 09:25:29 +00:00
toUrl = 'https://www.w3.org/ns/activitystreams#Public'
2019-07-03 19:00:03 +00:00
ccUrl = httpPrefix + '://'+fromDomain+'/users/'+nickname+'/followers'
2019-07-11 17:55:10 +00:00
return createAnnounce(session,baseDir,federationList, \
nickname,domain,port, \
toUrl,ccUrl,httpPrefix, \
objectUrl,True,clientToServer, \
sendThreads,postLog, \
personCache,cachedWebfingers, \
debug)
2019-07-02 09:25:29 +00:00
2019-07-11 17:55:10 +00:00
def repeatPost(session,baseDir: str,federationList: [], \
2019-07-03 19:00:03 +00:00
nickname: str, domain: str, port: int, httpPrefix: str, \
2019-07-03 09:40:27 +00:00
announceNickname: str, announceDomain: str, \
2019-07-03 19:00:03 +00:00
announcePort: int, announceHttpsPrefix: str, \
2019-07-11 17:55:10 +00:00
announceStatusNumber: int,clientToServer: bool, \
sendThreads: [],postLog: [], \
personCache: {},cachedWebfingers: {}, \
debug: bool) -> {}:
2019-07-02 14:02:58 +00:00
"""Repeats a given status post
2019-07-02 09:52:37 +00:00
"""
announcedDomain=announceDomain
if announcePort!=80 and announcePort!=443:
2019-07-11 17:55:10 +00:00
if ':' not in announcedDomain:
announcedDomain=announcedDomain+':'+str(announcePort)
2019-07-02 09:52:37 +00:00
2019-07-03 19:00:03 +00:00
objectUrl = announceHttpsPrefix + '://'+announcedDomain+'/users/'+ \
2019-07-03 09:40:27 +00:00
announceNickname+'/statuses/'+str(announceStatusNumber)
2019-07-02 09:52:37 +00:00
2019-07-11 17:55:10 +00:00
return announcePublic(session,baseDir,federationList, \
nickname,domain,port,httpPrefix, \
objectUrl,clientToServer, \
sendThreads,postLog, \
personCache,cachedWebfingers, \
debug)
2019-07-02 09:52:37 +00:00