2019-03-16 10:23:22 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Form::AccountBatch
|
|
|
|
include ActiveModel::Model
|
2019-04-06 15:53:45 +00:00
|
|
|
include Authorization
|
2019-06-04 21:11:18 +00:00
|
|
|
include Payloadable
|
2019-03-16 10:23:22 +00:00
|
|
|
|
|
|
|
attr_accessor :account_ids, :action, :current_account
|
|
|
|
|
|
|
|
def save
|
|
|
|
case action
|
2020-11-12 15:58:00 +00:00
|
|
|
when 'follow'
|
|
|
|
follow!
|
2019-03-16 10:23:22 +00:00
|
|
|
when 'unfollow'
|
|
|
|
unfollow!
|
|
|
|
when 'remove_from_followers'
|
|
|
|
remove_from_followers!
|
|
|
|
when 'block_domains'
|
|
|
|
block_domains!
|
2019-04-06 15:53:45 +00:00
|
|
|
when 'approve'
|
|
|
|
approve!
|
|
|
|
when 'reject'
|
|
|
|
reject!
|
2021-04-12 10:37:14 +00:00
|
|
|
when 'suppress_follow_recommendation'
|
|
|
|
suppress_follow_recommendation!
|
|
|
|
when 'unsuppress_follow_recommendation'
|
|
|
|
unsuppress_follow_recommendation!
|
2019-03-16 10:23:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-11-12 15:58:00 +00:00
|
|
|
def follow!
|
|
|
|
accounts.find_each do |target_account|
|
|
|
|
FollowService.new.call(current_account, target_account)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-16 10:23:22 +00:00
|
|
|
def unfollow!
|
|
|
|
accounts.find_each do |target_account|
|
|
|
|
UnfollowService.new.call(current_account, target_account)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_followers!
|
|
|
|
current_account.passive_relationships.where(account_id: account_ids).find_each do |follow|
|
|
|
|
reject_follow!(follow)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def block_domains!
|
|
|
|
AfterAccountDomainBlockWorker.push_bulk(account_domains) do |domain|
|
|
|
|
[current_account.id, domain]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def account_domains
|
2020-12-07 11:08:30 +00:00
|
|
|
accounts.group(:domain).pluck(:domain).compact
|
2019-03-16 10:23:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def accounts
|
|
|
|
Account.where(id: account_ids)
|
|
|
|
end
|
|
|
|
|
|
|
|
def reject_follow!(follow)
|
|
|
|
follow.destroy
|
|
|
|
|
|
|
|
return unless follow.account.activitypub?
|
|
|
|
|
2019-06-04 21:11:18 +00:00
|
|
|
ActivityPub::DeliveryWorker.perform_async(Oj.dump(serialize_payload(follow, ActivityPub::RejectFollowSerializer)), current_account.id, follow.account.inbox_url)
|
2019-03-16 10:23:22 +00:00
|
|
|
end
|
2019-04-06 15:53:45 +00:00
|
|
|
|
|
|
|
def approve!
|
|
|
|
users = accounts.includes(:user).map(&:user)
|
|
|
|
|
|
|
|
users.each { |user| authorize(user, :approve?) }
|
|
|
|
.each(&:approve!)
|
|
|
|
end
|
|
|
|
|
|
|
|
def reject!
|
|
|
|
records = accounts.includes(:user)
|
|
|
|
|
|
|
|
records.each { |account| authorize(account.user, :reject?) }
|
2020-09-15 12:37:58 +00:00
|
|
|
.each { |account| DeleteAccountService.new.call(account, reserve_email: false, reserve_username: false) }
|
2019-04-06 15:53:45 +00:00
|
|
|
end
|
2021-04-12 10:37:14 +00:00
|
|
|
|
|
|
|
def suppress_follow_recommendation!
|
|
|
|
authorize(:follow_recommendation, :suppress?)
|
|
|
|
|
|
|
|
accounts.each do |account|
|
|
|
|
FollowRecommendationSuppression.create(account: account)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsuppress_follow_recommendation!
|
|
|
|
authorize(:follow_recommendation, :unsuppress?)
|
|
|
|
|
|
|
|
FollowRecommendationSuppression.where(account_id: account_ids).destroy_all
|
|
|
|
end
|
2019-03-16 10:23:22 +00:00
|
|
|
end
|