You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.5 KiB

  1. # frozen_string_literal: true
  2. class FollowService < BaseService
  3. # Follow a remote user, notify remote user about the follow
  4. # @param [Account] source_account From which to follow
  5. # @param [String] uri User URI to follow in the form of username@domain
  6. def call(source_account, uri)
  7. target_account = follow_remote_account_service.call(uri)
  8. raise ActiveRecord::RecordNotFound if target_account.nil? || target_account.id == source_account.id
  9. follow = source_account.follow!(target_account)
  10. if target_account.local?
  11. NotificationMailer.follow(target_account, source_account).deliver_later unless target_account.blocking?(source_account)
  12. else
  13. subscribe_service.call(target_account)
  14. NotificationWorker.perform_async(follow.stream_entry.id, target_account.id)
  15. end
  16. merge_into_timeline(target_account, source_account)
  17. HubPingWorker.perform_async(source_account.id)
  18. follow
  19. end
  20. private
  21. def merge_into_timeline(from_account, into_account)
  22. timeline_key = FeedManager.instance.key(:home, into_account.id)
  23. from_account.statuses.find_each do |status|
  24. redis.zadd(timeline_key, status.id, status.id)
  25. end
  26. FeedManager.instance.trim(:home, into_account.id)
  27. FeedManager.instance.broadcast(into_account.id, type: 'merge')
  28. end
  29. def redis
  30. Redis.current
  31. end
  32. def follow_remote_account_service
  33. @follow_remote_account_service ||= FollowRemoteAccountService.new
  34. end
  35. def subscribe_service
  36. @subscribe_service ||= SubscribeService.new
  37. end
  38. end