mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
25 lines
702 B
Elixir
25 lines
702 B
Elixir
|
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
|