follow_service.rb 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # frozen_string_literal: true
  2. class FollowService < BaseService
  3. include Redisable
  4. include Payloadable
  5. include DomainControlHelper
  6. # Follow a remote user, notify remote user about the follow
  7. # @param [Account] source_account From which to follow
  8. # @param [Account] target_account Account to follow
  9. # @param [Hash] options
  10. # @option [Boolean] :reblogs Whether or not to show reblogs, defaults to true
  11. # @option [Boolean] :notify Whether to create notifications about new posts, defaults to false
  12. # @option [Boolean] :bypass_locked
  13. # @option [Boolean] :bypass_limit Allow following past the total follow number
  14. # @option [Boolean] :with_rate_limit
  15. def call(source_account, target_account, options = {})
  16. @source_account = source_account
  17. @target_account = target_account
  18. @options = { bypass_locked: false, bypass_limit: false, with_rate_limit: false }.merge(options)
  19. raise ActiveRecord::RecordNotFound if following_not_possible?
  20. raise Mastodon::NotPermittedError if following_not_allowed?
  21. if @source_account.following?(@target_account)
  22. return change_follow_options!
  23. elsif @source_account.requested?(@target_account)
  24. return change_follow_request_options!
  25. end
  26. ActivityTracker.increment('activity:interactions')
  27. # When an account follows someone for the first time, avoid showing
  28. # an empty home feed while the follow request is being processed
  29. # and the feeds are being merged
  30. mark_home_feed_as_partial! if @source_account.not_following_anyone?
  31. if (@target_account.locked? && !@options[:bypass_locked]) || @source_account.silenced? || @target_account.activitypub?
  32. request_follow!
  33. elsif @target_account.local?
  34. direct_follow!
  35. end
  36. end
  37. private
  38. def mark_home_feed_as_partial!
  39. redis.set("account:#{@source_account.id}:regeneration", true, nx: true, ex: 1.day.seconds)
  40. end
  41. def following_not_possible?
  42. @target_account.nil? || @target_account.id == @source_account.id || @target_account.suspended?
  43. end
  44. def following_not_allowed?
  45. domain_not_allowed?(@target_account.domain) || @target_account.blocking?(@source_account) || @source_account.blocking?(@target_account) || @target_account.moved? || (!@target_account.local? && @target_account.ostatus?) || @source_account.domain_blocking?(@target_account.domain)
  46. end
  47. def change_follow_options!
  48. @source_account.follow!(@target_account, reblogs: @options[:reblogs], notify: @options[:notify])
  49. end
  50. def change_follow_request_options!
  51. @source_account.request_follow!(@target_account, reblogs: @options[:reblogs], notify: @options[:notify])
  52. end
  53. def request_follow!
  54. follow_request = @source_account.request_follow!(@target_account, reblogs: @options[:reblogs], notify: @options[:notify], rate_limit: @options[:with_rate_limit], bypass_limit: @options[:bypass_limit])
  55. if @target_account.local?
  56. LocalNotificationWorker.perform_async(@target_account.id, follow_request.id, follow_request.class.name, 'follow_request')
  57. elsif @target_account.activitypub?
  58. ActivityPub::DeliveryWorker.perform_async(build_json(follow_request), @source_account.id, @target_account.inbox_url, { 'bypass_availability' => true })
  59. end
  60. follow_request
  61. end
  62. def direct_follow!
  63. follow = @source_account.follow!(@target_account, reblogs: @options[:reblogs], notify: @options[:notify], rate_limit: @options[:with_rate_limit], bypass_limit: @options[:bypass_limit])
  64. LocalNotificationWorker.perform_async(@target_account.id, follow.id, follow.class.name, 'follow')
  65. MergeWorker.perform_async(@target_account.id, @source_account.id)
  66. follow
  67. end
  68. def build_json(follow_request)
  69. Oj.dump(serialize_payload(follow_request, ActivityPub::FollowSerializer))
  70. end
  71. end