mastodon/app/services/follow_remote_account_servi...

70 lines
2.1 KiB
Ruby
Raw Normal View History

2016-02-24 12:57:29 +01:00
class FollowRemoteAccountService < BaseService
include OStatus2::MagicKey
2016-02-24 12:57:29 +01: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]
def call(uri)
2016-02-22 16:00:20 +01:00
username, domain = uri.split('@')
2016-10-06 16:36:16 +02:00
return Account.find_local(username) if TagManager.instance.local_domain?(domain)
2016-10-09 14:48:43 +02:00
return nil if DomainBlock.blocked?(domain)
2016-09-04 21:15:52 +02:00
account = Account.find_remote(username, domain)
2016-02-20 22:53:20 +01:00
return account unless account.nil?
Rails.logger.debug "Creating new remote account for #{uri}"
account = Account.new(username: username, domain: domain)
2016-02-20 22:53:20 +01:00
2016-02-22 18:10:30 +01:00
data = Goldfinger.finger("acct:#{uri}")
2016-02-20 22:53:20 +01:00
account.remote_url = data.link('http://schemas.google.com/g/2010#updates-from').href
account.salmon_url = data.link('salmon').href
account.url = data.link('http://webfinger.net/rel/profile-page').href
2016-02-20 22:53:20 +01:00
account.public_key = magic_key_to_pem(data.link('magic-public-key').href)
account.private_key = nil
feed = get_feed(account.remote_url)
hubs = feed.xpath('//xmlns:link[@rel="hub"]')
if hubs.empty? || hubs.first.attribute('href').nil?
2016-09-29 21:28:21 +02:00
raise Goldfinger::Error, 'No PubSubHubbub hubs found'
end
if feed.at_xpath('/xmlns:feed/xmlns:author/xmlns:uri').nil?
2016-09-29 21:28:21 +02:00
raise Goldfinger::Error, 'No author URI found'
2016-09-17 16:36:10 +02:00
end
2016-02-20 22:53:20 +01:00
2016-02-22 18:10:30 +01:00
account.uri = feed.at_xpath('/xmlns:feed/xmlns:author/xmlns:uri').content
2016-02-20 22:53:20 +01:00
account.hub_url = hubs.first.attribute('href').value
2016-02-22 18:10:30 +01:00
get_profile(feed, account)
2016-02-20 22:53:20 +01:00
account.save!
2016-02-22 18:10:30 +01:00
return account
2016-02-20 22:53:20 +01:00
end
private
def get_feed(url)
response = http_client.get(Addressable::URI.parse(url))
Nokogiri::XML(response)
end
2016-02-22 18:10:30 +01:00
def get_profile(xml, account)
author = xml.at_xpath('/xmlns:feed/xmlns:author')
2016-09-29 21:28:21 +02:00
update_remote_profile_service.call(author, account)
2016-02-22 18:10:30 +01:00
end
def update_remote_profile_service
@update_remote_profile_service ||= UpdateRemoteProfileService.new
end
2016-02-20 22:53:20 +01:00
def http_client
HTTP.timeout(:per_operation, write: 20, connect: 20, read: 50)
2016-02-20 22:53:20 +01:00
end
end