2017-10-10 14:42:10 +00:00
|
|
|
# coding=utf-8
|
|
|
|
"""Renders mf2 proxy pages based on stored Responses."""
|
2019-04-16 15:02:19 +00:00
|
|
|
import datetime
|
2017-10-10 14:42:10 +00:00
|
|
|
import json
|
|
|
|
|
|
|
|
import appengine_config
|
|
|
|
|
2017-10-15 17:50:01 +00:00
|
|
|
from granary import as2, atom, microformats2
|
2019-04-16 15:02:19 +00:00
|
|
|
from oauth_dropins.webutil.handlers import memcache_response, ModernHandler
|
2017-10-10 14:42:10 +00:00
|
|
|
from oauth_dropins.webutil import util
|
|
|
|
import webapp2
|
|
|
|
|
|
|
|
from models import Response
|
|
|
|
|
2019-04-16 15:02:19 +00:00
|
|
|
CACHE_TIME = datetime.timedelta(minutes=15)
|
|
|
|
|
2017-10-10 14:42:10 +00:00
|
|
|
|
|
|
|
class RenderHandler(ModernHandler):
|
|
|
|
"""Fetches a stored Response and renders it as HTML."""
|
|
|
|
|
2019-04-16 15:02:19 +00:00
|
|
|
@memcache_response(CACHE_TIME)
|
2017-10-10 14:42:10 +00:00
|
|
|
def get(self):
|
|
|
|
source = util.get_required_param(self, 'source')
|
|
|
|
target = util.get_required_param(self, 'target')
|
|
|
|
|
|
|
|
id = '%s %s' % (source, target)
|
|
|
|
resp = Response.get_by_id(id)
|
|
|
|
if not resp:
|
|
|
|
self.abort(404, 'No stored response for %s' % id)
|
|
|
|
|
|
|
|
if resp.source_mf2:
|
|
|
|
as1 = microformats2.json_to_object(json.loads(resp.source_mf2))
|
|
|
|
elif resp.source_as2:
|
|
|
|
as1 = as2.to_as1(json.loads(resp.source_as2))
|
|
|
|
elif resp.source_atom:
|
2017-10-15 17:50:01 +00:00
|
|
|
as1 = atom.atom_to_activity(resp.source_atom)
|
2017-10-10 14:42:10 +00:00
|
|
|
else:
|
|
|
|
self.abort(404, 'Stored response for %s has no data' % id)
|
|
|
|
|
2019-04-17 15:44:26 +00:00
|
|
|
# add HTML meta redirect to source page. should trigger for end users in
|
|
|
|
# browsers but not for webmention receivers (hopefully).
|
|
|
|
html = microformats2.activities_to_html([as1])
|
|
|
|
utf8 = '<meta charset="utf-8">'
|
|
|
|
refresh = '<meta http-equiv="refresh" content="0;url=%s">' % source
|
|
|
|
html = html.replace(utf8, utf8 + '\n' + refresh)
|
|
|
|
|
|
|
|
self.response.write(html)
|
2017-10-10 14:42:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
app = webapp2.WSGIApplication([
|
|
|
|
('/render', RenderHandler),
|
|
|
|
], debug=appengine_config.DEBUG)
|