The code powering m.abunchtell.com https://m.abunchtell.com
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

52 lignes
1.4 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 || target_account.suspended?
  9. follow = source_account.follow!(target_account)
  10. if target_account.local?
  11. NotifyService.new.call(target_account, follow)
  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. Pubsubhubbub::DistributionWorker.perform_async(follow.stream_entry.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. end
  28. def redis
  29. Redis.current
  30. end
  31. def follow_remote_account_service
  32. @follow_remote_account_service ||= FollowRemoteAccountService.new
  33. end
  34. def subscribe_service
  35. @subscribe_service ||= SubscribeService.new
  36. end
  37. end