follow_service.rb 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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] :notify Whether to create notifications about new posts, defaults to false
  11. # @option [Boolean] :bypass_locked
  12. # @option [Boolean] :with_rate_limit
  13. def call(source_account, target_account, options = {})
  14. @source_account = source_account
  15. @target_account = ResolveAccountService.new.call(target_account, skip_webfinger: true)
  16. @options = { bypass_locked: false, with_rate_limit: false }.merge(options)
  17. raise ActiveRecord::RecordNotFound if following_not_possible?
  18. raise Mastodon::NotPermittedError if following_not_allowed?
  19. if @source_account.following?(@target_account)
  20. return change_follow_options!
  21. elsif @source_account.requested?(@target_account)
  22. return change_follow_request_options!
  23. end
  24. ActivityTracker.increment('activity:interactions')
  25. if (@target_account.locked? && !@options[:bypass_locked]) || @source_account.silenced? || @target_account.activitypub?
  26. request_follow!
  27. elsif @target_account.local?
  28. direct_follow!
  29. end
  30. end
  31. private
  32. def following_not_possible?
  33. @target_account.nil? || @target_account.id == @source_account.id || @target_account.suspended?
  34. end
  35. def following_not_allowed?
  36. @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)
  37. end
  38. def change_follow_options!
  39. @source_account.follow!(@target_account, reblogs: @options[:reblogs], notify: @options[:notify])
  40. end
  41. def change_follow_request_options!
  42. @source_account.request_follow!(@target_account, reblogs: @options[:reblogs], notify: @options[:notify])
  43. end
  44. def request_follow!
  45. follow_request = @source_account.request_follow!(@target_account, reblogs: @options[:reblogs], notify: @options[:notify], rate_limit: @options[:with_rate_limit])
  46. if @target_account.local?
  47. LocalNotificationWorker.perform_async(@target_account.id, follow_request.id, follow_request.class.name, :follow_request)
  48. elsif @target_account.activitypub?
  49. ActivityPub::DeliveryWorker.perform_async(build_json(follow_request), @source_account.id, @target_account.inbox_url)
  50. end
  51. follow_request
  52. end
  53. def direct_follow!
  54. follow = @source_account.follow!(@target_account, reblogs: @options[:reblogs], notify: @options[:notify], rate_limit: @options[:with_rate_limit])
  55. LocalNotificationWorker.perform_async(@target_account.id, follow.id, follow.class.name, :follow)
  56. MergeWorker.perform_async(@target_account.id, @source_account.id)
  57. follow
  58. end
  59. def build_json(follow_request)
  60. Oj.dump(serialize_payload(follow_request, ActivityPub::FollowSerializer))
  61. end
  62. end