2017-08-13 07:12:16 +00:00
|
|
|
"""Handles requests for ActivityPub endpoints: actors, inbox, etc.
|
|
|
|
"""
|
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
|
|
|
|
import appengine_config
|
|
|
|
|
2017-09-28 14:25:21 +00:00
|
|
|
from granary import as2, microformats2
|
2017-08-13 07:12:16 +00:00
|
|
|
import mf2py
|
|
|
|
import mf2util
|
2017-08-13 21:49:35 +00:00
|
|
|
from oauth_dropins.webutil import util
|
2017-08-13 07:12:16 +00:00
|
|
|
import webapp2
|
|
|
|
|
2017-08-15 06:07:24 +00:00
|
|
|
import common
|
2017-10-16 14:13:43 +00:00
|
|
|
from models import MagicKey
|
2017-08-15 06:07:24 +00:00
|
|
|
|
2017-10-17 05:21:13 +00:00
|
|
|
SUPPORTED_TYPES = (
|
|
|
|
'Announce',
|
|
|
|
'Article',
|
|
|
|
'Audio',
|
|
|
|
'Image',
|
|
|
|
'Like',
|
|
|
|
'Note',
|
|
|
|
'Video',
|
|
|
|
)
|
2017-08-15 06:07:24 +00:00
|
|
|
|
2017-10-20 14:13:04 +00:00
|
|
|
|
2017-08-13 07:12:16 +00:00
|
|
|
class ActorHandler(webapp2.RequestHandler):
|
|
|
|
"""Serves /[DOMAIN], fetches its mf2, converts to AS Actor, and serves it."""
|
|
|
|
|
|
|
|
def get(self, domain):
|
2017-08-19 19:29:10 +00:00
|
|
|
url = 'http://%s/' % domain
|
2017-08-15 06:07:24 +00:00
|
|
|
resp = common.requests_get(url)
|
2017-08-13 07:12:16 +00:00
|
|
|
mf2 = mf2py.parse(resp.text, url=resp.url)
|
|
|
|
logging.info('Parsed mf2 for %s: %s', resp.url, json.dumps(mf2, indent=2))
|
|
|
|
|
|
|
|
hcard = mf2util.representative_hcard(mf2, resp.url)
|
|
|
|
logging.info('Representative h-card: %s', json.dumps(hcard, indent=2))
|
2017-08-19 20:31:06 +00:00
|
|
|
if not hcard:
|
2017-10-15 23:57:33 +00:00
|
|
|
common.error(self, """\
|
2017-08-19 20:31:06 +00:00
|
|
|
Couldn't find a <a href="http://microformats.org/wiki/representative-hcard-parsing">\
|
|
|
|
representative h-card</a> on %s""" % resp.url)
|
2017-08-13 07:12:16 +00:00
|
|
|
|
2017-10-10 00:29:50 +00:00
|
|
|
key = MagicKey.get_or_create(domain)
|
2017-10-01 14:01:35 +00:00
|
|
|
obj = common.postprocess_as2(as2.from_as1(microformats2.json_to_object(hcard)),
|
|
|
|
key=key)
|
2017-08-13 07:12:16 +00:00
|
|
|
obj.update({
|
2017-09-30 14:56:40 +00:00
|
|
|
'inbox': '%s/%s/inbox' % (appengine_config.HOST_URL, domain),
|
2017-08-13 07:12:16 +00:00
|
|
|
})
|
|
|
|
logging.info('Returning: %s', json.dumps(obj, indent=2))
|
|
|
|
|
|
|
|
self.response.headers.update({
|
2017-10-20 14:13:04 +00:00
|
|
|
'Content-Type': common.CONTENT_TYPE_AS2,
|
2017-08-13 07:12:16 +00:00
|
|
|
'Access-Control-Allow-Origin': '*',
|
|
|
|
})
|
|
|
|
self.response.write(json.dumps(obj, indent=2))
|
|
|
|
|
|
|
|
|
2017-08-13 21:49:35 +00:00
|
|
|
class InboxHandler(webapp2.RequestHandler):
|
|
|
|
"""Accepts POSTs to /[DOMAIN]/inbox and converts to outbound webmentions."""
|
|
|
|
|
|
|
|
def post(self, domain):
|
|
|
|
logging.info('Got: %s', self.request.body)
|
2017-10-13 06:14:46 +00:00
|
|
|
|
|
|
|
# parse and validate AS2 activity
|
2017-08-13 21:49:35 +00:00
|
|
|
try:
|
2017-10-11 05:42:19 +00:00
|
|
|
activity = json.loads(self.request.body)
|
|
|
|
assert activity
|
2017-10-17 14:46:42 +00:00
|
|
|
except (TypeError, ValueError, AssertionError):
|
|
|
|
common.error(self, "Couldn't parse body as JSON", exc_info=True)
|
2017-10-17 05:21:13 +00:00
|
|
|
|
|
|
|
type = activity.get('type')
|
|
|
|
if type not in SUPPORTED_TYPES:
|
|
|
|
common.error(self, 'Sorry, %s activities are not supported yet.' % type,
|
|
|
|
status=501)
|
2017-08-13 21:49:35 +00:00
|
|
|
|
2017-10-01 14:01:35 +00:00
|
|
|
# TODO: verify signature if there is one
|
|
|
|
|
2017-10-13 06:14:46 +00:00
|
|
|
# fetch actor if necessary so we have name, profile photo, etc
|
2017-10-16 14:13:43 +00:00
|
|
|
if activity.get('type') in ('Like', 'Announce'):
|
2017-10-13 06:14:46 +00:00
|
|
|
actor = activity.get('actor')
|
|
|
|
if actor:
|
2017-10-20 14:13:04 +00:00
|
|
|
activity['actor'] = common.get_as2(actor)
|
2017-10-13 06:14:46 +00:00
|
|
|
|
|
|
|
# send webmentions to each target
|
2017-10-16 14:13:43 +00:00
|
|
|
as1 = as2.to_as1(activity)
|
|
|
|
common.send_webmentions(self, as1, protocol='activitypub',
|
|
|
|
source_as2=json.dumps(activity))
|
2017-08-13 21:49:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
app = webapp2.WSGIApplication([
|
2017-09-03 19:54:10 +00:00
|
|
|
(r'/%s/?' % common.DOMAIN_RE, ActorHandler),
|
|
|
|
(r'/%s/inbox' % common.DOMAIN_RE, InboxHandler),
|
2017-08-13 21:49:35 +00:00
|
|
|
], debug=appengine_config.DEBUG)
|