Current section

Files

Jump to
exq lib exq support time.ex
Raw

lib/exq/support/time.ex

defmodule Exq.Support.Time do
@moduledoc """
Helper functions for data and time.
"""
import DateTime, only: [utc_now: 0, to_unix: 2, from_unix!: 2]
def offset_from_now(offset) do
now_micro_sec = utc_now() |> to_unix(:microsecond)
now = now_micro_sec
from_unix!(round(now + offset * 1_000_000), :microsecond)
end
def time_to_score(time \\ utc_now()) do
time
|> unix_seconds
|> Float.to_string()
end
def unix_seconds(time \\ utc_now()) do
to_unix(time, :microsecond) / 1_000_000.0
end
def format_current_date(current_date) do
date_time =
%{current_date | microsecond: {0, 0}}
|> DateTime.to_string()
date =
current_date
|> DateTime.to_date()
|> Date.to_string()
{date_time, date}
end
end