2022-02-14 20:27:53 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AppealService < BaseService
|
|
|
|
def call(strike, text)
|
|
|
|
@strike = strike
|
|
|
|
@text = text
|
|
|
|
|
|
|
|
create_appeal!
|
|
|
|
notify_staff!
|
|
|
|
|
|
|
|
@appeal
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def create_appeal!
|
2022-05-26 20:08:12 +00:00
|
|
|
@appeal = Appeal.create!(
|
|
|
|
strike: @strike,
|
2022-02-14 20:27:53 +00:00
|
|
|
text: @text,
|
|
|
|
account: @strike.target_account
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def notify_staff!
|
2023-11-06 15:53:29 +00:00
|
|
|
User.those_who_can(:manage_appeals).includes(:account).find_each do |u|
|
2023-07-08 18:03:38 +00:00
|
|
|
AdminMailer.with(recipient: u.account).new_appeal(@appeal).deliver_later if u.allows_appeal_emails?
|
2022-02-14 20:27:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|