Merge branch 'cache-follow-state' into 'develop'
[akkoma] / lib / pleroma / digest_email_worker.ex
index 65013f77e1d5745806bd72dbdb098797cf3a773c..18e67d39b07cd5d7176f36c95cdd84b539f1299c 100644 (file)
@@ -1,8 +1,10 @@
 defmodule Pleroma.DigestEmailWorker do
   import Ecto.Query
 
-  def run do
-    config = Application.get_env(:pleroma, :email_notifications)[:digest]
+  @queue_name :digest_emails
+
+  def perform do
+    config = Pleroma.Config.get([:email_notifications, :digest])
     negative_interval = -Map.fetch!(config, :interval)
     inactivity_threshold = Map.fetch!(config, :inactivity_threshold)
     inactive_users_query = Pleroma.User.list_inactive_users_query(inactivity_threshold)
@@ -15,18 +17,19 @@ defmodule Pleroma.DigestEmailWorker do
       select: u
     )
     |> Pleroma.Repo.all()
-    |> run()
+    |> Enum.each(&PleromaJobQueue.enqueue(@queue_name, __MODULE__, [&1]))
   end
 
-  defp run([]), do: :ok
-
-  defp run([user | users]) do
+  @doc """
+  Send digest email to the given user.
+  Updates `last_digest_emailed_at` field for the user and returns the updated user.
+  """
+  @spec perform(Pleroma.User.t()) :: Pleroma.User.t()
+  def perform(user) do
     with %Swoosh.Email{} = email <- Pleroma.Emails.UserEmail.digest_email(user) do
       Pleroma.Emails.Mailer.deliver_async(email)
     end
 
     Pleroma.User.touch_last_digest_emailed_at(user)
-
-    run(users)
   end
 end