analytics/lib/workers/send_check_stats_emails.ex
Uku Taht e71de6dc1f
Invitations (#1122)
* Invite existing user to a site

* Add invitation flow for non-existing users

* Accept and reject invitations

* Use invitation flow for existing users

* Locking mechanism for sites

* Authorization for site settings

* Show usage based on site ownership

* Add ability to remove members from a site

* Do not show settings link to viewer roles

* Ability to remove invitations

* Remove `Plausible.Sites.count_for/1`

* Fix tests

* Do not show the trial banner after the trial

* Correct trial emails

* Transfer ownership

* Send invitation email to existing user

* Add invitation email flows

* Add plug for role-based authorization

* Rename AuthorizeStatsPlug -> AuthorizeSiteAccess

* Add email flow for ownership transfer

* Fix URLs in emails

* Fix small copy issues

* Make 'People' its own section in site settings

* Notify user via email if their access has been removed

* Check site lock status when invitation is accepted

* Check lock status when user subscribes

* Make sure only admins and owners can create shared links

* Changelog

* Add LockSites to daily cron

* Clean invitations after 48 hours

* Add notices about expiry

* Add invitation expired page

* Add doc link
2021-06-16 15:00:07 +03:00

42 lines
1.1 KiB
Elixir

defmodule Plausible.Workers.SendCheckStatsEmails do
use Plausible.Repo
use Oban.Worker, queue: :check_stats_emails
@impl Oban.Worker
def perform(_job) do
q =
from(u in Plausible.Auth.User,
left_join: ce in "check_stats_emails",
on: ce.user_id == u.id,
where: is_nil(ce.id),
where:
u.inserted_at > fragment("(now() at time zone 'utc') - '14 days'::interval") and
u.inserted_at < fragment("(now() at time zone 'utc') - '7 days'::interval") and
u.last_seen < fragment("(now() at time zone 'utc') - '7 days'::interval"),
preload: [sites: :weekly_report]
)
for user <- Repo.all(q) do
enabled_report = Enum.any?(user.sites, fn site -> site.weekly_report end)
if Plausible.Auth.has_active_sites?(user) && !enabled_report do
send_check_stats_email(user)
end
end
:ok
end
defp send_check_stats_email(user) do
PlausibleWeb.Email.check_stats_email(user)
|> Plausible.Mailer.send_email()
Repo.insert_all("check_stats_emails", [
%{
user_id: user.id,
timestamp: NaiveDateTime.utc_now()
}
])
end
end