|
|
@ -6,25 +6,40 @@ class FollowService < BaseService |
|
|
|
# Follow a remote user, notify remote user about the follow |
|
|
|
# Follow a remote user, notify remote user about the follow |
|
|
|
# @param [Account] source_account From which to follow |
|
|
|
# @param [Account] source_account From which to follow |
|
|
|
# @param [String, Account] uri User URI to follow in the form of username@domain (or account record) |
|
|
|
# @param [String, Account] uri User URI to follow in the form of username@domain (or account record) |
|
|
|
def call(source_account, uri) |
|
|
|
def call(source_account, uri, reblogs: nil) |
|
|
|
|
|
|
|
reblogs = true if reblogs.nil? |
|
|
|
target_account = uri.is_a?(Account) ? uri : ResolveRemoteAccountService.new.call(uri) |
|
|
|
target_account = uri.is_a?(Account) ? uri : ResolveRemoteAccountService.new.call(uri) |
|
|
|
|
|
|
|
|
|
|
|
raise ActiveRecord::RecordNotFound if target_account.nil? || target_account.id == source_account.id || target_account.suspended? |
|
|
|
raise ActiveRecord::RecordNotFound if target_account.nil? || target_account.id == source_account.id || target_account.suspended? |
|
|
|
raise Mastodon::NotPermittedError if target_account.blocking?(source_account) || source_account.blocking?(target_account) |
|
|
|
raise Mastodon::NotPermittedError if target_account.blocking?(source_account) || source_account.blocking?(target_account) |
|
|
|
|
|
|
|
|
|
|
|
return if source_account.following?(target_account) || source_account.requested?(target_account) |
|
|
|
if source_account.following?(target_account) |
|
|
|
|
|
|
|
# We're already following this account, but we'll call follow! again to |
|
|
|
|
|
|
|
# make sure the reblogs status is set correctly. |
|
|
|
|
|
|
|
source_account.follow!(target_account, reblogs: reblogs) |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
elsif source_account.requested?(target_account) |
|
|
|
|
|
|
|
# This isn't managed by a method in AccountInteractions, so we modify it |
|
|
|
|
|
|
|
# ourselves if necessary. |
|
|
|
|
|
|
|
req = follow_requests.find_by(target_account: other_account) |
|
|
|
|
|
|
|
if req.show_reblogs != reblogs |
|
|
|
|
|
|
|
req.show_reblogs = reblogs |
|
|
|
|
|
|
|
req.save! |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
if target_account.locked? || target_account.activitypub? |
|
|
|
if target_account.locked? || target_account.activitypub? |
|
|
|
request_follow(source_account, target_account) |
|
|
|
request_follow(source_account, target_account, reblogs: reblogs) |
|
|
|
else |
|
|
|
else |
|
|
|
direct_follow(source_account, target_account) |
|
|
|
direct_follow(source_account, target_account, reblogs: reblogs) |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
private |
|
|
|
private |
|
|
|
|
|
|
|
|
|
|
|
def request_follow(source_account, target_account) |
|
|
|
def request_follow(source_account, target_account, reblogs: true) |
|
|
|
follow_request = FollowRequest.create!(account: source_account, target_account: target_account) |
|
|
|
follow_request = FollowRequest.create!(account: source_account, target_account: target_account, reblogs: reblogs) |
|
|
|
|
|
|
|
|
|
|
|
if target_account.local? |
|
|
|
if target_account.local? |
|
|
|
NotifyService.new.call(target_account, follow_request) |
|
|
|
NotifyService.new.call(target_account, follow_request) |
|
|
@ -38,8 +53,8 @@ class FollowService < BaseService |
|
|
|
follow_request |
|
|
|
follow_request |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def direct_follow(source_account, target_account) |
|
|
|
def direct_follow(source_account, target_account, reblogs: true) |
|
|
|
follow = source_account.follow!(target_account) |
|
|
|
follow = source_account.follow!(target_account, reblogs: reblogs) |
|
|
|
|
|
|
|
|
|
|
|
if target_account.local? |
|
|
|
if target_account.local? |
|
|
|
NotifyService.new.call(target_account, follow) |
|
|
|
NotifyService.new.call(target_account, follow) |
|
|
|