2017-06-26 18:04:00 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AdminMailer < ApplicationMailer
|
2023-11-28 02:41:26 -05:00
|
|
|
layout 'admin_mailer'
|
|
|
|
|
2019-10-24 16:50:09 -04:00
|
|
|
helper :accounts
|
2022-10-08 10:45:40 -04:00
|
|
|
helper :languages
|
2017-06-30 07:40:43 -04:00
|
|
|
|
2023-07-08 14:03:38 -04:00
|
|
|
before_action :process_params
|
|
|
|
before_action :set_instance
|
|
|
|
|
|
|
|
default to: -> { @me.user_email }
|
|
|
|
|
|
|
|
def new_report(report)
|
|
|
|
@report = report
|
2017-06-26 18:04:00 -04:00
|
|
|
|
|
|
|
locale_for_account(@me) do
|
2023-07-08 14:03:38 -04:00
|
|
|
mail subject: default_i18n_subject(instance: @instance, id: @report.id)
|
2017-06-26 18:04:00 -04:00
|
|
|
end
|
|
|
|
end
|
2019-03-14 00:28:30 -04:00
|
|
|
|
2023-07-08 14:03:38 -04:00
|
|
|
def new_appeal(appeal)
|
|
|
|
@appeal = appeal
|
2022-02-14 15:27:53 -05:00
|
|
|
|
|
|
|
locale_for_account(@me) do
|
2023-07-08 14:03:38 -04:00
|
|
|
mail subject: default_i18n_subject(instance: @instance, username: @appeal.account.username)
|
2022-02-14 15:27:53 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-07-08 14:03:38 -04:00
|
|
|
def new_pending_account(user)
|
|
|
|
@account = user.account
|
2019-03-14 00:28:30 -04:00
|
|
|
|
|
|
|
locale_for_account(@me) do
|
2023-07-08 14:03:38 -04:00
|
|
|
mail subject: default_i18n_subject(instance: @instance, username: @account.username)
|
2019-03-14 00:28:30 -04:00
|
|
|
end
|
|
|
|
end
|
2019-08-05 13:54:29 -04:00
|
|
|
|
2023-07-08 14:03:38 -04:00
|
|
|
def new_trends(links, tags, statuses)
|
2022-02-24 18:34:14 -05:00
|
|
|
@links = links
|
|
|
|
@tags = tags
|
|
|
|
@statuses = statuses
|
2021-11-25 07:07:38 -05:00
|
|
|
|
|
|
|
locale_for_account(@me) do
|
2023-07-08 14:03:38 -04:00
|
|
|
mail subject: default_i18n_subject(instance: @instance)
|
2019-08-05 13:54:29 -04:00
|
|
|
end
|
|
|
|
end
|
2023-07-08 14:03:38 -04:00
|
|
|
|
2023-09-01 11:47:07 -04:00
|
|
|
def new_software_updates
|
2024-03-26 10:45:19 -04:00
|
|
|
@software_updates = SoftwareUpdate.all.to_a.sort_by(&:gem_version)
|
|
|
|
|
2023-09-01 11:47:07 -04:00
|
|
|
locale_for_account(@me) do
|
|
|
|
mail subject: default_i18n_subject(instance: @instance)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def new_critical_software_updates
|
2024-03-26 10:45:19 -04:00
|
|
|
@software_updates = SoftwareUpdate.where(urgent: true).to_a.sort_by(&:gem_version)
|
|
|
|
|
2024-09-19 09:38:32 -04:00
|
|
|
headers(
|
|
|
|
'Importance' => 'high',
|
|
|
|
'Priority' => 'urgent',
|
|
|
|
'X-Priority' => '1'
|
|
|
|
)
|
2023-09-01 11:47:07 -04:00
|
|
|
|
|
|
|
locale_for_account(@me) do
|
|
|
|
mail subject: default_i18n_subject(instance: @instance)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-02-21 12:45:06 -05:00
|
|
|
def auto_close_registrations
|
|
|
|
locale_for_account(@me) do
|
|
|
|
mail subject: default_i18n_subject(instance: @instance)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-07-08 14:03:38 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def process_params
|
|
|
|
@me = params[:recipient]
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_instance
|
|
|
|
@instance = Rails.configuration.x.local_domain
|
|
|
|
end
|
2017-06-26 18:04:00 -04:00
|
|
|
end
|