2016-02-24 06:57:29 -05: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 10:00:20 -05:00
|
|
|
def call(source_account, uri)
|
2016-09-29 15:28:21 -04:00
|
|
|
target_account = follow_remote_account_service.call(uri)
|
2016-02-24 06:57:29 -05:00
|
|
|
|
2016-10-06 15:33:33 -04:00
|
|
|
raise ActiveRecord::RecordNotFound if target_account.nil? || target_account.id == source_account.id
|
2016-02-24 06:57:29 -05:00
|
|
|
|
|
|
|
follow = source_account.follow!(target_account)
|
2016-09-07 20:40:51 -04:00
|
|
|
|
|
|
|
if target_account.local?
|
2016-10-03 12:49:52 -04:00
|
|
|
NotificationMailer.follow(target_account, source_account).deliver_later unless target_account.blocking?(source_account)
|
2016-09-07 20:40:51 -04:00
|
|
|
else
|
2016-09-29 15:28:21 -04:00
|
|
|
subscribe_service.call(target_account)
|
2016-09-07 20:40:51 -04:00
|
|
|
NotificationWorker.perform_async(follow.stream_entry.id, target_account.id)
|
|
|
|
end
|
|
|
|
|
2016-09-10 12:36:48 -04:00
|
|
|
merge_into_timeline(target_account, source_account)
|
2016-10-05 07:50:21 -04:00
|
|
|
HubPingWorker.perform_async(source_account.id)
|
2016-03-07 06:42:33 -05:00
|
|
|
follow
|
2016-02-22 10:00:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2016-09-10 12:36:48 -04:00
|
|
|
def merge_into_timeline(from_account, into_account)
|
|
|
|
timeline_key = FeedManager.instance.key(:home, into_account.id)
|
|
|
|
|
|
|
|
from_account.statuses.find_each do |status|
|
|
|
|
redis.zadd(timeline_key, status.id, status.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
FeedManager.instance.trim(:home, into_account.id)
|
2016-09-12 12:22:43 -04:00
|
|
|
FeedManager.instance.broadcast(into_account.id, type: 'merge')
|
2016-09-10 12:36:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def redis
|
|
|
|
$redis
|
|
|
|
end
|
|
|
|
|
2016-02-22 10:00:20 -05:00
|
|
|
def follow_remote_account_service
|
2016-02-24 06:57:29 -05:00
|
|
|
@follow_remote_account_service ||= FollowRemoteAccountService.new
|
|
|
|
end
|
2016-09-19 18:39:03 -04:00
|
|
|
|
|
|
|
def subscribe_service
|
|
|
|
@subscribe_service ||= SubscribeService.new
|
|
|
|
end
|
2016-02-22 10:00:20 -05:00
|
|
|
end
|