2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 06:57:29 -05:00
|
|
|
class FollowService < BaseService
|
2017-02-10 20:12:05 -05:00
|
|
|
include StreamEntryRenderer
|
|
|
|
|
2016-02-24 06:57:29 -05:00
|
|
|
# Follow a remote user, notify remote user about the follow
|
|
|
|
# @param [Account] source_account From which to follow
|
2017-09-10 03:58:38 -04:00
|
|
|
# @param [String, Account] uri User URI to follow in the form of username@domain (or account record)
|
2017-11-11 15:37:23 -05:00
|
|
|
# @param [true, false, nil] reblogs Whether or not to show reblogs, defaults to true
|
2017-11-09 09:41:10 -05:00
|
|
|
def call(source_account, uri, reblogs: nil)
|
|
|
|
reblogs = true if reblogs.nil?
|
2017-09-10 03:58:38 -04:00
|
|
|
target_account = uri.is_a?(Account) ? uri : ResolveRemoteAccountService.new.call(uri)
|
2016-02-24 06:57:29 -05:00
|
|
|
|
2016-12-06 12:03:30 -05:00
|
|
|
raise ActiveRecord::RecordNotFound if target_account.nil? || target_account.id == source_account.id || target_account.suspended?
|
2017-04-06 23:56:56 -04:00
|
|
|
raise Mastodon::NotPermittedError if target_account.blocking?(source_account) || source_account.blocking?(target_account)
|
2016-02-24 06:57:29 -05:00
|
|
|
|
2017-11-09 09:41:10 -05:00
|
|
|
if source_account.following?(target_account)
|
|
|
|
# We're already following this account, but we'll call follow! again to
|
|
|
|
# make sure the reblogs status is set correctly.
|
|
|
|
source_account.follow!(target_account, reblogs: reblogs)
|
|
|
|
return
|
|
|
|
elsif source_account.requested?(target_account)
|
|
|
|
# This isn't managed by a method in AccountInteractions, so we modify it
|
|
|
|
# ourselves if necessary.
|
|
|
|
req = follow_requests.find_by(target_account: other_account)
|
2017-11-11 15:37:23 -05:00
|
|
|
req.update!(show_reblogs: reblogs)
|
2017-11-09 09:41:10 -05:00
|
|
|
return
|
|
|
|
end
|
2017-06-04 21:24:18 -04:00
|
|
|
|
2017-08-12 18:44:41 -04:00
|
|
|
if target_account.locked? || target_account.activitypub?
|
2017-11-09 09:41:10 -05:00
|
|
|
request_follow(source_account, target_account, reblogs: reblogs)
|
2016-12-22 17:03:57 -05:00
|
|
|
else
|
2017-11-09 09:41:10 -05:00
|
|
|
direct_follow(source_account, target_account, reblogs: reblogs)
|
2016-12-22 17:03:57 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-11-09 09:41:10 -05:00
|
|
|
def request_follow(source_account, target_account, reblogs: true)
|
2017-11-10 21:11:10 -05:00
|
|
|
follow_request = FollowRequest.create!(account: source_account, target_account: target_account, show_reblogs: reblogs)
|
2017-02-10 20:12:05 -05:00
|
|
|
|
|
|
|
if target_account.local?
|
|
|
|
NotifyService.new.call(target_account, follow_request)
|
2017-08-12 18:44:41 -04:00
|
|
|
elsif target_account.ostatus?
|
2017-02-11 18:48:53 -05:00
|
|
|
NotificationWorker.perform_async(build_follow_request_xml(follow_request), source_account.id, target_account.id)
|
2017-02-11 08:12:29 -05:00
|
|
|
AfterRemoteFollowRequestWorker.perform_async(follow_request.id)
|
2017-08-12 18:44:41 -04:00
|
|
|
elsif target_account.activitypub?
|
|
|
|
ActivityPub::DeliveryWorker.perform_async(build_json(follow_request), source_account.id, target_account.inbox_url)
|
2017-02-10 20:12:05 -05:00
|
|
|
end
|
2016-12-26 15:52:03 -05:00
|
|
|
|
|
|
|
follow_request
|
2016-12-22 17:03:57 -05:00
|
|
|
end
|
|
|
|
|
2017-11-09 09:41:10 -05:00
|
|
|
def direct_follow(source_account, target_account, reblogs: true)
|
|
|
|
follow = source_account.follow!(target_account, reblogs: reblogs)
|
2016-09-07 20:40:51 -04:00
|
|
|
|
|
|
|
if target_account.local?
|
2016-11-19 18:33:02 -05:00
|
|
|
NotifyService.new.call(target_account, follow)
|
2016-09-07 20:40:51 -04:00
|
|
|
else
|
2017-05-04 20:23:01 -04:00
|
|
|
Pubsubhubbub::SubscribeWorker.perform_async(target_account.id) unless target_account.subscribed?
|
2017-02-11 18:48:53 -05:00
|
|
|
NotificationWorker.perform_async(build_follow_xml(follow), source_account.id, target_account.id)
|
2017-02-11 08:12:29 -05:00
|
|
|
AfterRemoteFollowWorker.perform_async(follow.id)
|
2016-09-07 20:40:51 -04:00
|
|
|
end
|
|
|
|
|
2017-01-23 15:29:34 -05:00
|
|
|
MergeWorker.perform_async(target_account.id, source_account.id)
|
2016-11-28 07:36:47 -05:00
|
|
|
|
2016-03-07 06:42:33 -05:00
|
|
|
follow
|
2016-02-22 10:00:20 -05:00
|
|
|
end
|
|
|
|
|
2016-09-10 12:36:48 -04:00
|
|
|
def redis
|
2016-11-15 10:56:29 -05:00
|
|
|
Redis.current
|
2016-09-10 12:36:48 -04:00
|
|
|
end
|
|
|
|
|
2017-02-11 18:48:53 -05:00
|
|
|
def build_follow_request_xml(follow_request)
|
2017-07-18 19:37:26 -04:00
|
|
|
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.follow_request_salmon(follow_request))
|
2016-02-24 06:57:29 -05:00
|
|
|
end
|
2016-09-19 18:39:03 -04:00
|
|
|
|
2017-02-11 18:48:53 -05:00
|
|
|
def build_follow_xml(follow)
|
2017-07-18 19:37:26 -04:00
|
|
|
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.follow_salmon(follow))
|
2016-09-19 18:39:03 -04:00
|
|
|
end
|
2017-08-12 18:44:41 -04:00
|
|
|
|
|
|
|
def build_json(follow_request)
|
2017-08-26 07:47:38 -04:00
|
|
|
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
2017-08-12 18:44:41 -04:00
|
|
|
follow_request,
|
|
|
|
serializer: ActivityPub::FollowSerializer,
|
|
|
|
adapter: ActivityPub::Adapter
|
2017-08-26 07:47:38 -04:00
|
|
|
).as_json).sign!(follow_request.account))
|
2017-08-12 18:44:41 -04:00
|
|
|
end
|
2016-02-22 10:00:20 -05:00
|
|
|
end
|