2016-02-24 12:57:29 +01:00
|
|
|
class FollowRemoteAccountService < BaseService
|
|
|
|
# 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-20 00:39:03 +02:00
|
|
|
def call(uri)
|
2016-02-22 16:00:20 +01:00
|
|
|
username, domain = uri.split('@')
|
2016-03-21 18:26:47 +01:00
|
|
|
|
2016-09-08 02:40:51 +02:00
|
|
|
return Account.find_local(username) if domain == Rails.configuration.x.local_domain || domain.nil?
|
2016-03-21 18:26:47 +01:00
|
|
|
|
2016-09-04 21:15:52 +02:00
|
|
|
account = Account.find_remote(username, domain)
|
2016-02-20 22:53:20 +01:00
|
|
|
|
2016-09-20 00:39:03 +02: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
|
2016-02-23 19:17:37 +01:00
|
|
|
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"]')
|
|
|
|
|
2016-09-17 17:03:36 +02:00
|
|
|
if hubs.empty? || hubs.first.attribute('href').nil?
|
|
|
|
raise Goldfinger::Error, "No PubSubHubbub hubs found"
|
|
|
|
end
|
|
|
|
|
|
|
|
if feed.at_xpath('/xmlns:feed/xmlns:author/xmlns:uri').nil?
|
|
|
|
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-02-28 14:26:26 +01:00
|
|
|
update_remote_profile_service.(author, account)
|
2016-02-22 18:10:30 +01:00
|
|
|
end
|
|
|
|
|
2016-02-20 22:53:20 +01:00
|
|
|
def magic_key_to_pem(magic_key)
|
|
|
|
_, modulus, exponent = magic_key.split('.')
|
|
|
|
modulus, exponent = [modulus, exponent].map { |n| Base64.urlsafe_decode64(n).bytes.inject(0) { |num, byte| (num << 8) | byte } }
|
|
|
|
|
|
|
|
key = OpenSSL::PKey::RSA.new
|
|
|
|
key.n = modulus
|
2016-02-22 16:00:20 +01:00
|
|
|
key.e = exponent
|
2016-02-20 22:53:20 +01:00
|
|
|
|
|
|
|
key.to_pem
|
|
|
|
end
|
|
|
|
|
2016-02-28 14:26:26 +01:00
|
|
|
def update_remote_profile_service
|
|
|
|
@update_remote_profile_service ||= UpdateRemoteProfileService.new
|
|
|
|
end
|
|
|
|
|
2016-02-20 22:53:20 +01:00
|
|
|
def http_client
|
|
|
|
HTTP
|
|
|
|
end
|
|
|
|
end
|
2016-09-17 17:03:36 +02:00
|
|
|
|