Datetime in a certain timezone with Ecto
Ecto natively only supports naive_datetimes and utc_datetimes, which either
ignore timezones or enforce only UTC. Both are useful for certain usecases, but
not sufficient when needing to store a datetime for different timezones.
This library is supposed to help for the given use case, but not in the way e.g.
Calecto does it by implementing a custom Ecto.Type. It rather gives you tools
to set the correct values for multiple columns on a changeset and converting the
values back to a DateTime at a later time.
Timezone definitions change and do so even between storage and retrieval from a
database, which is especially problematic for points of time in the future. When a
calendar app stores an event at 10 o'clock in CET a year ahead of time and the
timezone definition is changed e.g. to no longer do a daylight savings time the
utc_datetime field in the database does no longer match the intended wall
time of 10 o'clock, but results in 9 o'clock when converted to CET. Ecto.Types
are not really well suited for dealing with that ambiguity, as values once
stored are meant to stay valid values. TzDatetime uses multiple columns, which
by themselves stay valid. The calculated DateTime based on those stored fields
might change though.
There is a simple answer: The ability to compare datetimes. Without a common timezone for datetimes comparison get unnecessarily tricky. And at least comparing to "now" is common enough to say most applications will actually need to compare datetimes in the db.
TzDatetime consists of two parts:
handle_datetime/2for handling changes to a "datetime".original_datetime/2for retrieving the original "datetime" in the stored timezone
For storing a "datetime" there are multiple fields required.
field :datetime, :utc_datetime
field :time_zone, :string
field :original_offset, :integer:datetime is the datetime in UTC, :time_zone is the input timezone and
:original_offset the offset of :time_zone at the time of persistance.
Those three fields together allow for comparing stored datetimes – all in UTC – while still allowing detection of a change in the offset for the stored time zone at the time the value is read.
Often the user input doesn't supply a datetime with time zone, but a string format
like ISO 8601. But even ISO 8601 formatted string will only include the offset,
but not the timezone name. Therefore the input for handle_datetime/2 does work
with a :naive_datetime in combination with the :time_zone field.
field :input_datetime, :naive_datetime, virtual: true
field :time_zone, :string # As listed prev.def changeset(schema, params) do
schema
|> cast(params, [:input_datetime, :time_zone])
|> validate_required([:input_datetime, :time_zone])
|> TzDatetime.handle_datetime()
endYou can customize the names for those fields by passing a keyword list
of [{name :: atom, custom_name :: atom}] as second parameter to handle_datetime/2.
Using a naive_datetime and a separate timezone as inputs results in some
complexity though. The input datetime might exist twice or might not exist in
the timezone. This is possible for the periods in time when a switch between
daylight savings time and standard time occurs.
When the clock is turned backwards a certain naive datetime and timezone might
result in two possible datetimes with different std_offsets.
When the clock is turned forward a certain naive datetime and timezone might result in no possible datetime, where elixir will supply the last possible datetime before the switch and the first possible datetime afterwards.
See DateTime.from_naive/3 for detailed examples on those cases.
The callbacks of the TzDatetime behaviour allow you to handle those cases
based on your business domains' requirements:
@impl TzDatetime
@spec when_ambiguous(Ecto.Changeset.t(), DateTime.t(), DateTime.t(), TzDatetime.fields) ::
Ecto.Changeset.t() | DateTime.t()
def when_ambiguous(_changeset, dt1, _dt2, _) do
# Implement your business logic
dt1
end
@impl TzDatetime
@spec when_gap(Ecto.Changeset.t(), DateTime.t(), DateTime.t(), TzDatetime.fields) ::
Ecto.Changeset.t() | DateTime.t()
def when_gap(changeset, _dt1, _dt2, fields) do
# Implement your business logic
add_error(changeset, fields.datetime, "does not exist for the selected timezone")
endhandle_datetime/2 will use the module of the changeset's data by default,
but you can also supply a different module using the :module key on the options.
As mentioned earlier the timezone definitions can change. Therefore
the datetime stored can diverge over time from the value originally intended.
By storing the offset used to convert to the utc value in the db
original_datetime/2 can detect if this did indeed happen or not. If a change
is detected two datetimes are returned, one with the changed offset and one with
the offset as stored in the db.
This can then be used to select between:
- the wall time should be kept and the utc value in the db shall be updated
- the point in time in utc is to be kept and the stored offset shall be updated
Which option is the correct one could be infered automatically per use case or even by notifying users about the change and letting them deal with it accordingly.
# When offset does still match
> original_datetime(schema)
{:ok, datetime}
# When offset does no longer match
> original_datetime(schema)
{:ambiguous, datetime_using_current_offset, datetime_using_stored_offset}
# Error cases:
# E.g. when tz no longer exists
> original_datetime(schema)
{:error, :time_zone_not_found}original_datetime/2 like handle_datetime/2 can receive a keyword list of
mappings for the field names for :datetime, :time_zone and :original_offset.
By default elixir does only support Etc/UTC as a timezone. To use this library
you likely need to install an alternative Calendar.TimeZoneDatabase implementation.
If available in Hex, the package can be installed
by adding tz_datetime to your list of dependencies in mix.exs:
def deps do
[
{:tz_datetime, "~> 0.1.2"}
]
endYou'll also need to configure elixir to use a timezone database, which supports
all the timezones you need to use. Elixir itself does only support Etc/UTC. For
other timezones look at tz_data or other
implementations of Calendar.TimeZoneDatabase.
Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/tz_datetime.