summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/plugs/user_tracking_plug.ex
blob: c9a988f00394a4b6a45ef5ff6895aea2d02e9a0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.Plugs.UserTrackingPlug do
  alias Pleroma.User

  import Plug.Conn, only: [assign: 3]

  @update_interval :timer.hours(24)

  def init(opts), do: opts

  def call(%{assigns: %{user: %User{id: id} = user}} = conn, _) when not is_nil(id) do
    with true <- needs_update?(user),
         {:ok, user} <- User.update_last_active_at(user) do
      assign(conn, :user, user)
    else
      _ -> conn
    end
  end

  def call(conn, _), do: conn

  defp needs_update?(%User{last_active_at: nil}), do: true

  defp needs_update?(%User{last_active_at: last_active_at}) do
    NaiveDateTime.diff(NaiveDateTime.utc_now(), last_active_at, :millisecond) >= @update_interval
  end
end