philomena/lib/philomena_web/views/profile/alias_view.ex

25 lines
702 B
Elixir
Raw Normal View History

2019-12-17 03:26:43 +01:00
defmodule PhilomenaWeb.Profile.AliasView do
use PhilomenaWeb, :view
def younger_than_7_days?(user),
do: younger_than_time_offset?(user, -7*24*60*60)
def younger_than_14_days?(user),
do: younger_than_time_offset?(user, -14*24*60*60)
def currently_banned?(%{bans: bans}) do
now = DateTime.utc_now()
Enum.any?(bans, &DateTime.diff(&1.valid_until, now) >= 0)
end
def previously_banned?(%{bans: []}), do: false
def previously_banned?(_user), do: true
defp younger_than_time_offset?(%{created_at: created_at}, time_offset) do
time_ago = NaiveDateTime.utc_now() |> NaiveDateTime.add(-time_offset, :second)
NaiveDateTime.diff(created_at, time_ago) >= 0
end
end