mirror of
https://github.com/plausible/analytics.git
synced 2024-11-24 04:32:57 +03:00
4d97583331
Fixes #1545
64 lines
1.9 KiB
Elixir
64 lines
1.9 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
|
|
current_subscriptions =
|
|
from(
|
|
s in Plausible.Billing.Subscription,
|
|
group_by: s.user_id,
|
|
select: %{
|
|
user_id: s.user_id,
|
|
inserted_at: max(s.inserted_at)
|
|
}
|
|
)
|
|
|
|
users =
|
|
Repo.all(
|
|
from u in Plausible.Auth.User,
|
|
join: cs in subquery(current_subscriptions),
|
|
on: cs.user_id == u.id,
|
|
join: s in Plausible.Billing.Subscription,
|
|
on: s.inserted_at == cs.inserted_at,
|
|
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_safe(template)
|
|
|
|
"deleted" ->
|
|
template = PlausibleWeb.Email.yearly_expiration_notification(user)
|
|
Plausible.Mailer.send_email_safe(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
|