mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-24 23:01:20 +00:00
34 lines
653 B
Ruby
34 lines
653 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddAccountsToListService < BaseService
|
||
|
def call(list, accounts)
|
||
|
@list = list
|
||
|
@accounts = accounts
|
||
|
|
||
|
return if @accounts.empty?
|
||
|
|
||
|
update_list!
|
||
|
merge_into_list!
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def update_list!
|
||
|
ApplicationRecord.transaction do
|
||
|
@accounts.each do |account|
|
||
|
@list.accounts << account
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def merge_into_list!
|
||
|
MergeWorker.push_bulk(merge_account_ids) do |account_id|
|
||
|
[account_id, @list.id, 'list']
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def merge_account_ids
|
||
|
ListAccount.where(list: @list, account: @accounts).where.not(follow_id: nil).pluck(:account_id)
|
||
|
end
|
||
|
end
|