2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 22:57:29 +11:00
|
|
|
class FollowService < BaseService
|
2017-02-11 12:12:05 +11:00
|
|
|
include StreamEntryRenderer
|
|
|
|
|
2016-02-24 22:57:29 +11:00
|
|
|
# Follow a remote user, notify remote user about the follow
|
|
|
|
# @param [Account] source_account From which to follow
|
2017-09-10 17:58:38 +10:00
|
|
|
# @param [String, Account] uri User URI to follow in the form of username@domain (or account record)
|
2016-02-23 02:00:20 +11:00
|
|
|
def call(source_account, uri)
|
2017-09-10 17:58:38 +10:00
|
|
|
target_account = uri.is_a?(Account) ? uri : ResolveRemoteAccountService.new.call(uri)
|
2016-02-24 22:57:29 +11:00
|
|
|
|
2016-12-07 04:03:30 +11:00
|
|
|
raise ActiveRecord::RecordNotFound if target_account.nil? || target_account.id == source_account.id || target_account.suspended?
|
2017-04-07 13:56:56 +10:00
|
|
|
raise Mastodon::NotPermittedError if target_account.blocking?(source_account) || source_account.blocking?(target_account)
|
2016-02-24 22:57:29 +11:00
|
|
|
|
2017-09-09 10:02:44 +10:00
|
|
|
return if source_account.following?(target_account) || source_account.requested?(target_account)
|
2017-06-05 11:24:18 +10:00
|
|
|
|
2017-08-13 08:44:41 +10:00
|
|
|
if target_account.locked? || target_account.activitypub?
|
2016-12-23 09:03:57 +11:00
|
|
|
request_follow(source_account, target_account)
|
|
|
|
else
|
|
|
|
direct_follow(source_account, target_account)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def request_follow(source_account, target_account)
|
2016-12-27 07:52:03 +11:00
|
|
|
follow_request = FollowRequest.create!(account: source_account, target_account: target_account)
|
2017-02-11 12:12:05 +11:00
|
|
|
|
|
|
|
if target_account.local?
|
|
|
|
NotifyService.new.call(target_account, follow_request)
|
2017-08-13 08:44:41 +10:00
|
|
|
elsif target_account.ostatus?
|
2017-02-12 10:48:53 +11:00
|
|
|
NotificationWorker.perform_async(build_follow_request_xml(follow_request), source_account.id, target_account.id)
|
2017-02-12 00:12:29 +11:00
|
|
|
AfterRemoteFollowRequestWorker.perform_async(follow_request.id)
|
2017-08-13 08:44:41 +10:00
|
|
|
elsif target_account.activitypub?
|
|
|
|
ActivityPub::DeliveryWorker.perform_async(build_json(follow_request), source_account.id, target_account.inbox_url)
|
2017-02-11 12:12:05 +11:00
|
|
|
end
|
2016-12-27 07:52:03 +11:00
|
|
|
|
|
|
|
follow_request
|
2016-12-23 09:03:57 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def direct_follow(source_account, target_account)
|
2016-02-24 22:57:29 +11:00
|
|
|
follow = source_account.follow!(target_account)
|
2016-09-08 10:40:51 +10:00
|
|
|
|
|
|
|
if target_account.local?
|
2016-11-20 10:33:02 +11:00
|
|
|
NotifyService.new.call(target_account, follow)
|
2016-09-08 10:40:51 +10:00
|
|
|
else
|
2017-05-05 10:23:01 +10:00
|
|
|
Pubsubhubbub::SubscribeWorker.perform_async(target_account.id) unless target_account.subscribed?
|
2017-02-12 10:48:53 +11:00
|
|
|
NotificationWorker.perform_async(build_follow_xml(follow), source_account.id, target_account.id)
|
2017-02-12 00:12:29 +11:00
|
|
|
AfterRemoteFollowWorker.perform_async(follow.id)
|
2016-09-08 10:40:51 +10:00
|
|
|
end
|
|
|
|
|
2017-01-24 07:29:34 +11:00
|
|
|
MergeWorker.perform_async(target_account.id, source_account.id)
|
2016-11-28 23:36:47 +11:00
|
|
|
|
2016-03-07 22:42:33 +11:00
|
|
|
follow
|
2016-02-23 02:00:20 +11:00
|
|
|
end
|
|
|
|
|
2016-09-11 02:36:48 +10:00
|
|
|
def redis
|
2016-11-16 02:56:29 +11:00
|
|
|
Redis.current
|
2016-09-11 02:36:48 +10:00
|
|
|
end
|
|
|
|
|
2017-02-12 10:48:53 +11:00
|
|
|
def build_follow_request_xml(follow_request)
|
2017-07-19 09:37:26 +10:00
|
|
|
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.follow_request_salmon(follow_request))
|
2016-02-24 22:57:29 +11:00
|
|
|
end
|
2016-09-20 08:39:03 +10:00
|
|
|
|
2017-02-12 10:48:53 +11:00
|
|
|
def build_follow_xml(follow)
|
2017-07-19 09:37:26 +10:00
|
|
|
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.follow_salmon(follow))
|
2016-09-20 08:39:03 +10:00
|
|
|
end
|
2017-08-13 08:44:41 +10:00
|
|
|
|
|
|
|
def build_json(follow_request)
|
2017-08-26 21:47:38 +10:00
|
|
|
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
2017-08-13 08:44:41 +10:00
|
|
|
follow_request,
|
|
|
|
serializer: ActivityPub::FollowSerializer,
|
|
|
|
adapter: ActivityPub::Adapter
|
2017-08-26 21:47:38 +10:00
|
|
|
).as_json).sign!(follow_request.account))
|
2017-08-13 08:44:41 +10:00
|
|
|
end
|
2016-02-23 02:00:20 +11:00
|
|
|
end
|