2020-01-26 20:36:50 +00:00
|
|
|
defmodule Mobilizon.Web.Email.Admin do
|
2019-07-23 11:49:22 +00:00
|
|
|
@moduledoc """
|
2019-09-07 21:58:53 +00:00
|
|
|
Handles emails sent to admins.
|
2019-07-23 11:49:22 +00:00
|
|
|
"""
|
|
|
|
|
2022-04-05 10:16:22 +00:00
|
|
|
use Phoenix.Swoosh, view: Mobilizon.Web.EmailView
|
2019-09-07 21:58:53 +00:00
|
|
|
|
2020-01-26 20:36:50 +00:00
|
|
|
import Mobilizon.Web.Gettext
|
2019-09-07 21:58:53 +00:00
|
|
|
|
2019-09-17 00:45:32 +00:00
|
|
|
alias Mobilizon.Config
|
2019-07-23 11:49:22 +00:00
|
|
|
alias Mobilizon.Reports.Report
|
2019-09-07 21:58:53 +00:00
|
|
|
alias Mobilizon.Users.User
|
2019-07-23 11:49:22 +00:00
|
|
|
|
2021-07-27 17:47:54 +00:00
|
|
|
alias Mobilizon.Web.Email
|
2019-09-17 00:45:32 +00:00
|
|
|
|
2022-04-05 10:16:22 +00:00
|
|
|
@spec report(User.t(), Report.t()) :: Swoosh.Email.t()
|
2021-10-05 13:29:06 +00:00
|
|
|
def report(%User{email: email} = user, %Report{} = report) do
|
|
|
|
locale = Map.get(user, :locale, "en")
|
2020-01-28 18:18:33 +00:00
|
|
|
Gettext.put_locale(locale)
|
2019-07-23 11:49:22 +00:00
|
|
|
|
2019-09-07 21:58:53 +00:00
|
|
|
subject =
|
|
|
|
gettext(
|
2019-09-23 17:33:58 +00:00
|
|
|
"New report on Mobilizon instance %{instance}",
|
|
|
|
instance: Config.instance_name()
|
2019-09-07 21:58:53 +00:00
|
|
|
)
|
|
|
|
|
2022-04-05 10:16:22 +00:00
|
|
|
[to: email, subject: subject]
|
|
|
|
|> Email.base_email()
|
|
|
|
|> render_body(:report, %{locale: locale, subject: subject, report: report})
|
2019-07-23 11:49:22 +00:00
|
|
|
end
|
2022-01-14 17:10:50 +00:00
|
|
|
|
2022-04-05 10:16:22 +00:00
|
|
|
@spec user_email_change_old(User.t(), String.t()) :: Swoosh.Email.t()
|
2022-01-14 17:10:50 +00:00
|
|
|
def user_email_change_old(
|
|
|
|
%User{
|
|
|
|
locale: user_locale,
|
|
|
|
email: new_email
|
|
|
|
},
|
|
|
|
old_email
|
|
|
|
) do
|
|
|
|
Gettext.put_locale(user_locale)
|
|
|
|
|
|
|
|
subject =
|
|
|
|
gettext(
|
|
|
|
"An administrator manually changed the email attached to your account on %{instance}",
|
|
|
|
instance: Config.instance_name()
|
|
|
|
)
|
|
|
|
|
2022-04-05 10:16:22 +00:00
|
|
|
[to: old_email, subject: subject]
|
|
|
|
|> Email.base_email()
|
|
|
|
|> render_body(:admin_user_email_changed_old, %{
|
|
|
|
locale: user_locale,
|
|
|
|
subject: subject,
|
|
|
|
new_email: new_email,
|
|
|
|
old_email: old_email,
|
|
|
|
offer_unsupscription: false
|
|
|
|
})
|
2022-01-14 17:10:50 +00:00
|
|
|
end
|
|
|
|
|
2022-04-05 10:16:22 +00:00
|
|
|
@spec user_email_change_new(User.t(), String.t()) :: Swoosh.Email.t()
|
2022-01-14 17:10:50 +00:00
|
|
|
def user_email_change_new(
|
|
|
|
%User{
|
|
|
|
locale: user_locale,
|
|
|
|
email: new_email
|
|
|
|
},
|
|
|
|
old_email
|
|
|
|
) do
|
|
|
|
Gettext.put_locale(user_locale)
|
|
|
|
|
|
|
|
subject =
|
|
|
|
gettext(
|
|
|
|
"An administrator manually changed the email attached to your account on %{instance}",
|
|
|
|
instance: Config.instance_name()
|
|
|
|
)
|
|
|
|
|
2022-04-05 10:16:22 +00:00
|
|
|
[to: old_email, subject: subject]
|
|
|
|
|> Email.base_email()
|
|
|
|
|> render_body(:admin_user_email_changed_new, %{
|
|
|
|
locale: user_locale,
|
|
|
|
subject: subject,
|
|
|
|
new_email: new_email,
|
|
|
|
old_email: old_email,
|
|
|
|
offer_unsupscription: false
|
|
|
|
})
|
2022-01-14 17:10:50 +00:00
|
|
|
end
|
|
|
|
|
2022-04-05 10:16:22 +00:00
|
|
|
@spec user_role_change(User.t(), atom()) :: Swoosh.Email.t()
|
2022-01-14 17:10:50 +00:00
|
|
|
def user_role_change(
|
|
|
|
%User{
|
|
|
|
locale: user_locale,
|
|
|
|
email: email,
|
|
|
|
role: new_role
|
|
|
|
},
|
|
|
|
old_role
|
|
|
|
) do
|
|
|
|
Gettext.put_locale(user_locale)
|
|
|
|
|
|
|
|
subject =
|
|
|
|
gettext(
|
|
|
|
"An administrator updated your role on %{instance}",
|
|
|
|
instance: Config.instance_name()
|
|
|
|
)
|
|
|
|
|
2022-04-05 10:16:22 +00:00
|
|
|
[to: email, subject: subject]
|
|
|
|
|> Email.base_email()
|
|
|
|
|> render_body(:admin_user_role_changed, %{
|
|
|
|
locale: user_locale,
|
|
|
|
subject: subject,
|
|
|
|
old_role: old_role,
|
|
|
|
new_role: new_role,
|
|
|
|
offer_unsupscription: false
|
|
|
|
})
|
2022-01-14 17:10:50 +00:00
|
|
|
end
|
|
|
|
|
2022-04-05 10:16:22 +00:00
|
|
|
@spec user_confirmation(User.t()) :: Swoosh.Email.t()
|
2022-01-14 17:10:50 +00:00
|
|
|
def user_confirmation(%User{
|
|
|
|
locale: user_locale,
|
|
|
|
email: email
|
|
|
|
}) do
|
|
|
|
Gettext.put_locale(user_locale)
|
|
|
|
|
|
|
|
subject =
|
|
|
|
gettext(
|
|
|
|
"An administrator confirmed your account on %{instance}",
|
|
|
|
instance: Config.instance_name()
|
|
|
|
)
|
|
|
|
|
2022-04-05 10:16:22 +00:00
|
|
|
[to: email, subject: subject]
|
|
|
|
|> Email.base_email()
|
|
|
|
|> render_body(:admin_user_confirmation, %{
|
|
|
|
locale: user_locale,
|
|
|
|
subject: subject,
|
|
|
|
offer_unsupscription: false
|
|
|
|
})
|
2022-01-14 17:10:50 +00:00
|
|
|
end
|
2019-07-23 11:49:22 +00:00
|
|
|
end
|