bridgy-fed/webfinger.py

110 wiersze
3.4 KiB
Python
Czysty Zwykły widok Historia

2017-08-19 15:21:05 +00:00
"""Handles requests for WebFinger endpoints.
https://webfinger.net/
https://tools.ietf.org/html/rfc7033
2017-08-19 15:21:05 +00:00
Largely based on webfinger-unofficial/user.py.
TODO: test:
* /.well-known/webfinger
* acct: URI handling
* user URL that redirects
2017-08-19 15:21:05 +00:00
"""
import json
import logging
import urlparse
2017-08-19 15:21:05 +00:00
import appengine_config
from granary import microformats2
import mf2py
import mf2util
from oauth_dropins.webutil import handlers, util
import webapp2
import common
import models
2017-08-19 15:21:05 +00:00
class UserHandler(handlers.XrdOrJrdHandler):
"""Fetches a site's home page, converts its mf2 to WebFinger, and serves."""
2017-08-19 20:10:18 +00:00
JRD_TEMPLATE = False
2017-08-19 15:21:05 +00:00
def template_prefix(self):
return 'templates/webfinger_user'
def template_vars(self, acct):
username, domain = util.parse_acct_uri(acct)
2017-08-19 20:10:18 +00:00
url = 'http://%s/' % domain
# TODO: unify with activitypub
resp = common.requests_get(url)
mf2 = mf2py.parse(resp.text, url=resp.url)
# logging.debug('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))
if not hcard:
common.error(self, """\
Couldn't find a <a href="http://microformats.org/wiki/representative-hcard-parsing">\
representative h-card</a> on %s""" % resp.url)
uri = '%s@%s' % (username, domain)
2017-08-19 20:10:18 +00:00
key = models.MagicKey.get_or_create(uri)
props = hcard.get('properties', {})
urls = util.dedupe_urls(props.get('url', []) + [resp.url])
2017-08-19 20:10:18 +00:00
data = util.trim_nulls({
2017-08-19 20:10:18 +00:00
'subject': 'acct:' + uri,
'aliases': urls,
'magic_keys': [{'value': key.href()}],
'links': sum(([{
2017-08-19 20:10:18 +00:00
'rel': 'http://webfinger.net/rel/profile-page',
'type': 'text/html',
'href': url,
}, {
'rel': 'canonical_uri',
'type': 'text/html',
'href': url,
}] for url in urls), []) + [{
2017-08-19 20:10:18 +00:00
'rel': 'http://webfinger.net/rel/avatar',
'href': url,
2017-08-20 02:46:53 +00:00
} for url in props.get('photo', [])] + [{
'rel': 'http://schemas.google.com/g/2010#updates-from',
'href': 'https://granary-demo.appspot.com/url?input=html&output=atom&url=https://snarfed.org/&hub=https://snarfed.org/',
}, {
2017-08-19 20:10:18 +00:00
'rel': 'magic-public-key',
'href': key.href(),
2017-08-20 02:46:53 +00:00
}, {
'rel': 'salmon',
'href': '%s/@%s/salmon' % (self.request.host_url, domain),
2017-08-19 20:10:18 +00:00
}]
})
logging.info('Returning WebFinger data: %s', json.dumps(data, indent=2))
return data
2017-08-19 15:21:05 +00:00
class WebfingerHandler(UserHandler):
def is_jrd(self):
return True
def template_vars(self):
resource = util.get_required_param(self, 'resource')
# try:
# username, domain = util.parse_acct_uri(resource)
# url = 'http://%s/' % domain
# except ValueError:
# url = resource
# domain = urlparse.urlparse(url).netloc
# if not domain:
# common.error(self, 'No domain found in resource %s' % url)
return super(WebfingerHandler, self).template_vars(resource)
2017-08-19 15:21:05 +00:00
app = webapp2.WSGIApplication([
(r'/(?:acct)?@%s/?' % common.DOMAIN_RE, UserHandler),
('/.well-known/webfinger', WebfingerHandler),
2017-08-19 15:21:05 +00:00
] + handlers.HOST_META_ROUTES, debug=appengine_config.DEBUG)