2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 03:57:29 -08:00
|
|
|
class FollowService < BaseService
|
|
|
|
# Follow a remote user, notify remote user about the follow
|
|
|
|
# @param [Account] source_account From which to follow
|
|
|
|
# @param [String] uri User URI to follow in the form of username@domain
|
2016-02-22 07:00:20 -08:00
|
|
|
def call(source_account, uri)
|
2016-09-29 12:28:21 -07:00
|
|
|
target_account = follow_remote_account_service.call(uri)
|
2016-02-24 03:57:29 -08:00
|
|
|
|
2016-12-06 09:03:30 -08:00
|
|
|
raise ActiveRecord::RecordNotFound if target_account.nil? || target_account.id == source_account.id || target_account.suspended?
|
2016-12-22 12:34:19 -08:00
|
|
|
raise Mastodon::NotPermitted if target_account.blocking?(source_account)
|
2016-02-24 03:57:29 -08:00
|
|
|
|
2016-12-22 14:03:57 -08:00
|
|
|
if target_account.locked?
|
|
|
|
request_follow(source_account, target_account)
|
|
|
|
else
|
|
|
|
direct_follow(source_account, target_account)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def request_follow(source_account, target_account)
|
|
|
|
FollowRequest.create!(account: source_account, target_account: target_account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def direct_follow(source_account, target_account)
|
2016-02-24 03:57:29 -08:00
|
|
|
follow = source_account.follow!(target_account)
|
2016-09-07 17:40:51 -07:00
|
|
|
|
|
|
|
if target_account.local?
|
2016-11-19 15:33:02 -08:00
|
|
|
NotifyService.new.call(target_account, follow)
|
2016-09-07 17:40:51 -07:00
|
|
|
else
|
2016-09-29 12:28:21 -07:00
|
|
|
subscribe_service.call(target_account)
|
2016-09-07 17:40:51 -07:00
|
|
|
NotificationWorker.perform_async(follow.stream_entry.id, target_account.id)
|
|
|
|
end
|
|
|
|
|
2016-12-22 14:03:57 -08:00
|
|
|
FeedManager.instance.merge_into_timeline(target_account, source_account)
|
2016-11-28 04:36:47 -08:00
|
|
|
Pubsubhubbub::DistributionWorker.perform_async(follow.stream_entry.id)
|
|
|
|
|
2016-03-07 03:42:33 -08:00
|
|
|
follow
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
|
2016-09-10 09:36:48 -07:00
|
|
|
def redis
|
2016-11-15 07:56:29 -08:00
|
|
|
Redis.current
|
2016-09-10 09:36:48 -07:00
|
|
|
end
|
|
|
|
|
2016-02-22 07:00:20 -08:00
|
|
|
def follow_remote_account_service
|
2016-02-24 03:57:29 -08:00
|
|
|
@follow_remote_account_service ||= FollowRemoteAccountService.new
|
|
|
|
end
|
2016-09-19 15:39:03 -07:00
|
|
|
|
|
|
|
def subscribe_service
|
|
|
|
@subscribe_service ||= SubscribeService.new
|
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|