2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 11:57:29 +00:00
|
|
|
class FollowRemoteAccountService < BaseService
|
2016-10-12 20:07:00 +01:00
|
|
|
include OStatus2::MagicKey
|
|
|
|
|
2016-11-15 15:56:29 +00:00
|
|
|
DFRN_NS = 'http://purl.org/macgirvin/dfrn/1.0'
|
2016-10-12 21:55:00 +01:00
|
|
|
|
2016-02-24 11:57:29 +00:00
|
|
|
# Find or create a local account for a remote user.
|
|
|
|
# When creating, look up the user's webfinger and fetch all
|
|
|
|
# important information from their feed
|
|
|
|
# @param [String] uri User URI in the form of username@domain
|
|
|
|
# @return [Account]
|
2016-09-19 23:39:03 +01:00
|
|
|
def call(uri)
|
2016-02-22 15:00:20 +00:00
|
|
|
username, domain = uri.split('@')
|
2016-03-21 17:26:47 +00:00
|
|
|
|
2016-10-06 15:36:16 +01:00
|
|
|
return Account.find_local(username) if TagManager.instance.local_domain?(domain)
|
2016-03-21 17:26:47 +00:00
|
|
|
|
2016-09-04 20:15:52 +01:00
|
|
|
account = Account.find_remote(username, domain)
|
2016-09-19 23:39:03 +01:00
|
|
|
return account unless account.nil?
|
|
|
|
|
2016-11-03 15:57:44 +00:00
|
|
|
Rails.logger.debug "Looking up webfinger for #{uri}"
|
|
|
|
|
2016-02-22 17:10:30 +00:00
|
|
|
data = Goldfinger.finger("acct:#{uri}")
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2016-10-13 12:41:06 +01:00
|
|
|
raise Goldfinger::Error, 'Missing resource links' if data.link('http://schemas.google.com/g/2010#updates-from').nil? || data.link('salmon').nil? || data.link('http://webfinger.net/rel/profile-page').nil? || data.link('magic-public-key').nil?
|
|
|
|
|
2016-11-03 15:57:44 +00:00
|
|
|
confirmed_username, confirmed_domain = data.subject.gsub(/\Aacct:/, '').split('@')
|
|
|
|
|
|
|
|
return Account.find_local(confirmed_username) if TagManager.instance.local_domain?(confirmed_domain)
|
|
|
|
|
|
|
|
confirmed_account = Account.find_remote(confirmed_username, confirmed_domain)
|
|
|
|
return confirmed_account unless confirmed_account.nil?
|
|
|
|
|
|
|
|
Rails.logger.debug "Creating new remote account for #{uri}"
|
|
|
|
|
2017-01-23 16:38:38 +00:00
|
|
|
domain_block = DomainBlock.find_by(domain: domain)
|
|
|
|
|
2017-04-08 00:07:42 +01:00
|
|
|
account = Account.new(username: confirmed_username, domain: confirmed_domain)
|
2016-02-20 21:53:20 +00:00
|
|
|
account.remote_url = data.link('http://schemas.google.com/g/2010#updates-from').href
|
|
|
|
account.salmon_url = data.link('salmon').href
|
2016-02-23 18:17:37 +00:00
|
|
|
account.url = data.link('http://webfinger.net/rel/profile-page').href
|
2016-02-20 21:53:20 +00:00
|
|
|
account.public_key = magic_key_to_pem(data.link('magic-public-key').href)
|
|
|
|
account.private_key = nil
|
2017-01-23 16:38:38 +00:00
|
|
|
account.suspended = true if domain_block && domain_block.suspend?
|
|
|
|
account.silenced = true if domain_block && domain_block.silence?
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2017-04-05 20:41:50 +01:00
|
|
|
body, xml = get_feed(account.remote_url)
|
|
|
|
hubs = get_hubs(xml)
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2016-10-12 21:55:00 +01:00
|
|
|
account.uri = get_account_uri(xml)
|
2016-02-20 21:53:20 +00:00
|
|
|
account.hub_url = hubs.first.attribute('href').value
|
2016-02-22 17:10:30 +00:00
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
account.save!
|
2017-04-08 02:24:35 +01:00
|
|
|
get_profile(body, account)
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2016-11-15 15:56:29 +00:00
|
|
|
account
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def get_feed(url)
|
|
|
|
response = http_client.get(Addressable::URI.parse(url))
|
2017-04-05 20:41:50 +01:00
|
|
|
[response.to_s, Nokogiri::XML(response)]
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|
|
|
|
|
2016-10-12 21:55:00 +01:00
|
|
|
def get_hubs(xml)
|
|
|
|
hubs = xml.xpath('//xmlns:link[@rel="hub"]')
|
|
|
|
raise Goldfinger::Error, 'No PubSubHubbub hubs found' if hubs.empty? || hubs.first.attribute('href').nil?
|
|
|
|
hubs
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_account_uri(xml)
|
|
|
|
author_uri = xml.at_xpath('/xmlns:feed/xmlns:author/xmlns:uri')
|
|
|
|
|
|
|
|
if author_uri.nil?
|
|
|
|
owner = xml.at_xpath('/xmlns:feed').at_xpath('./dfrn:owner', dfrn: DFRN_NS)
|
|
|
|
author_uri = owner.at_xpath('./xmlns:uri') unless owner.nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
raise Goldfinger::Error, 'Author URI could not be found' if author_uri.nil?
|
|
|
|
author_uri.content
|
|
|
|
end
|
|
|
|
|
2017-04-05 20:41:50 +01:00
|
|
|
def get_profile(body, account)
|
|
|
|
RemoteProfileUpdateWorker.perform_async(account.id, body.force_encoding('UTF-8'), false)
|
2016-02-28 13:26:26 +00:00
|
|
|
end
|
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
def http_client
|
Fix #24 - Thread resolving for remote statuses
This is a big one, so let me enumerate:
Accounts as well as stream entry pages now contain Link headers that
reference the Atom feed and Webfinger URL for the former and Atom entry
for the latter. So you only need to HEAD those resources to get that
information, no need to download and parse HTML <link>s.
ProcessFeedService will now queue ThreadResolveWorker for each remote
status that it cannot find otherwise. Furthermore, entries are now
processed in reverse order (from bottom to top) in case a newer entry
references a chronologically previous one.
ThreadResolveWorker uses FetchRemoteStatusService to obtain a status
and attach the child status it was queued for to it.
FetchRemoteStatusService looks up the URL, first with a HEAD, tests
if it's an Atom feed, in which case it processes it directly. Next
for Link headers to the Atom feed, in which case that is fetched
and processed. Lastly if it's HTML, it is checked for <link>s to the Atom
feed, and if such is found, that is fetched and processed. The account for
the status is derived from author/name attribute in the XML and the hostname
in the URL (domain). FollowRemoteAccountService and ProcessFeedService
are used.
This means that potentially threads are resolved recursively until a dead-end
is encountered, however it is performed asynchronously over background jobs,
so it should be ok.
2016-09-21 00:34:14 +01:00
|
|
|
HTTP.timeout(:per_operation, write: 20, connect: 20, read: 50)
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|
|
|
|
end
|