mirror of
https://github.com/plausible/analytics.git
synced 2024-11-27 17:23:00 +03:00
52 lines
1.6 KiB
Elixir
52 lines
1.6 KiB
Elixir
defmodule Plausible.Workers.NotifyAnnualRenewal do
|
|
use Plausible.Repo
|
|
use Oban.Worker, queue: :notify_annual_renewal
|
|
|
|
@yearly_plans Plausible.Billing.Plans.all_yearly_plan_ids()
|
|
|
|
@impl Oban.Worker
|
|
@doc """
|
|
Sends a notification at most 7 days and at least 1 day before the renewal of an annual subscription
|
|
"""
|
|
def perform(_job) do
|
|
users =
|
|
Repo.all(
|
|
from u in Plausible.Auth.User,
|
|
join: s in Plausible.Billing.Subscription,
|
|
on: s.user_id == u.id,
|
|
left_join: sent in "sent_renewal_notifications",
|
|
on: s.user_id == sent.user_id,
|
|
where: s.paddle_plan_id in @yearly_plans,
|
|
where:
|
|
s.next_bill_date > fragment("now()::date") and
|
|
s.next_bill_date <= fragment("now()::date + INTERVAL '7 days'"),
|
|
where: is_nil(sent.id) or sent.timestamp < fragment("now() - INTERVAL '1 month'"),
|
|
preload: [subscription: s]
|
|
)
|
|
|
|
for user <- users do
|
|
case user.subscription.status do
|
|
"active" ->
|
|
template = PlausibleWeb.Email.yearly_renewal_notification(user)
|
|
Plausible.Mailer.send_email(template)
|
|
|
|
"deleted" ->
|
|
template = PlausibleWeb.Email.yearly_expiration_notification(user)
|
|
Plausible.Mailer.send_email(template)
|
|
|
|
_ ->
|
|
Sentry.capture_message("Invalid subscription for renewal", user: user)
|
|
end
|
|
|
|
Repo.insert_all("sent_renewal_notifications", [
|
|
%{
|
|
user_id: user.id,
|
|
timestamp: NaiveDateTime.utc_now()
|
|
}
|
|
])
|
|
end
|
|
|
|
:ok
|
|
end
|
|
end
|