follow_service.rb 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # frozen_string_literal: true
  2. class FollowService < BaseService
  3. include Redisable
  4. include Payloadable
  5. # Follow a remote user, notify remote user about the follow
  6. # @param [Account] source_account From which to follow
  7. # @param [String, Account] uri User URI to follow in the form of username@domain (or account record)
  8. # @param [Hash] options
  9. # @option [Boolean] :reblogs Whether or not to show reblogs, defaults to true
  10. # @option [Boolean] :bypass_locked
  11. # @option [Boolean] :with_rate_limit
  12. def call(source_account, target_account, options = {})
  13. @source_account = source_account
  14. @target_account = ResolveAccountService.new.call(target_account, skip_webfinger: true)
  15. @options = { reblogs: true, bypass_locked: false, with_rate_limit: false }.merge(options)
  16. raise ActiveRecord::RecordNotFound if following_not_possible?
  17. raise Mastodon::NotPermittedError if following_not_allowed?
  18. if @source_account.following?(@target_account)
  19. return change_follow_options!
  20. elsif @source_account.requested?(@target_account)
  21. return change_follow_request_options!
  22. end
  23. ActivityTracker.increment('activity:interactions')
  24. if (@target_account.locked? && !@options[:bypass_locked]) || @source_account.silenced? || @target_account.activitypub?
  25. request_follow!
  26. elsif @target_account.local?
  27. direct_follow!
  28. end
  29. end
  30. private
  31. def following_not_possible?
  32. @target_account.nil? || @target_account.id == @source_account.id || @target_account.suspended?
  33. end
  34. def following_not_allowed?
  35. @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)
  36. end
  37. def change_follow_options!
  38. @source_account.follow!(@target_account, reblogs: @options[:reblogs])
  39. end
  40. def change_follow_request_options!
  41. @source_account.request_follow!(@target_account, reblogs: @options[:reblogs])
  42. end
  43. def request_follow!
  44. follow_request = @source_account.request_follow!(@target_account, reblogs: @options[:reblogs], rate_limit: @options[:with_rate_limit])
  45. if @target_account.local?
  46. LocalNotificationWorker.perform_async(@target_account.id, follow_request.id, follow_request.class.name)
  47. elsif @target_account.activitypub?
  48. ActivityPub::DeliveryWorker.perform_async(build_json(follow_request), @source_account.id, @target_account.inbox_url)
  49. end
  50. follow_request
  51. end
  52. def direct_follow!
  53. follow = @source_account.follow!(@target_account, reblogs: @options[:reblogs], rate_limit: @options[:with_rate_limit])
  54. LocalNotificationWorker.perform_async(@target_account.id, follow.id, follow.class.name)
  55. MergeWorker.perform_async(@target_account.id, @source_account.id)
  56. follow
  57. end
  58. def build_json(follow_request)
  59. Oj.dump(serialize_payload(follow_request, ActivityPub::FollowSerializer))
  60. end
  61. end