|
|
@ -6,9 +6,12 @@ class UnfollowService < BaseService
|
|
|
|
# Unfollow and notify the remote user
|
|
|
|
# Unfollow and notify the remote user
|
|
|
|
# @param [Account] source_account Where to unfollow from
|
|
|
|
# @param [Account] source_account Where to unfollow from
|
|
|
|
# @param [Account] target_account Which to unfollow
|
|
|
|
# @param [Account] target_account Which to unfollow
|
|
|
|
def call(source_account, target_account)
|
|
|
|
# @param [Hash] options
|
|
|
|
|
|
|
|
# @option [Boolean] :skip_unmerge
|
|
|
|
|
|
|
|
def call(source_account, target_account, options = {})
|
|
|
|
@source_account = source_account
|
|
|
|
@source_account = source_account
|
|
|
|
@target_account = target_account
|
|
|
|
@target_account = target_account
|
|
|
|
|
|
|
|
@options = options
|
|
|
|
|
|
|
|
|
|
|
|
unfollow! || undo_follow_request!
|
|
|
|
unfollow! || undo_follow_request!
|
|
|
|
end
|
|
|
|
end
|
|
|
@ -21,9 +24,11 @@ class UnfollowService < BaseService
|
|
|
|
return unless follow
|
|
|
|
return unless follow
|
|
|
|
|
|
|
|
|
|
|
|
follow.destroy!
|
|
|
|
follow.destroy!
|
|
|
|
|
|
|
|
|
|
|
|
create_notification(follow) if !@target_account.local? && @target_account.activitypub?
|
|
|
|
create_notification(follow) if !@target_account.local? && @target_account.activitypub?
|
|
|
|
create_reject_notification(follow) if @target_account.local? && !@source_account.local? && @source_account.activitypub?
|
|
|
|
create_reject_notification(follow) if @target_account.local? && !@source_account.local? && @source_account.activitypub?
|
|
|
|
UnmergeWorker.perform_async(@target_account.id, @source_account.id)
|
|
|
|
UnmergeWorker.perform_async(@target_account.id, @source_account.id) unless @options[:skip_unmerge]
|
|
|
|
|
|
|
|
|
|
|
|
follow
|
|
|
|
follow
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
@ -33,7 +38,9 @@ class UnfollowService < BaseService
|
|
|
|
return unless follow_request
|
|
|
|
return unless follow_request
|
|
|
|
|
|
|
|
|
|
|
|
follow_request.destroy!
|
|
|
|
follow_request.destroy!
|
|
|
|
|
|
|
|
|
|
|
|
create_notification(follow_request) unless @target_account.local?
|
|
|
|
create_notification(follow_request) unless @target_account.local?
|
|
|
|
|
|
|
|
|
|
|
|
follow_request
|
|
|
|
follow_request
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|