azimlord

azimlord

Hi guys,

I’m having some trouble with utc_datetime.

So I have a form that accept start_time and end_time which both in utc_datetime and inside a bookings table.

The problem is that I’m in Malaysia so the booking that is created will be in UTC and when I convert it to "Asia/Kuala_Lumpur" using timex, it will show a different time.

Timex.Timezone.convert(booking.end_time, "Asia/Kuala_Lumpur")

For example:
start_time: 2019-09-08 22:00:00
end_time: 2019-09-08 23:00:00

when convert it using timex to "Asia/Kuala_Lumpur"
start_time: 2019-09-09 06:00:00
end_time: 2019-09-09 07:00:00

Now I see that I have 2 options:

  1. Use naive_datetime instead of utc_datetime and store the timezone in a separate column
  2. Manipulate the start_time and end_time from the form and shift it to the UTC timezone which I already tried and failed.
changeset
|> put_change(:start_time, Timex.shift(Timex.to_datetime(start_time, "Asia/Kuala_Lumpur"), "Etc/UTC"))
|> put_change(:end_time, Timex.shift(Timex.to_datetime(end_time, "Asia/Kuala_Lumpur"), "Etc/UTC"))

I’m not sure if I did it correctly or not and I’m not sure which is the best way

Thanks for your help in advance!

Showing Posts 1 to 10

dimitarvp

dimitarvp

I am not sure I understand your problem exactly.

  1. Why are you converting the time to your local time zone at all?
  2. You want your UI to show the times in your local timezone and not in UTC, is that it?
azimlord

azimlord OP

I’m sorry you don’t understand my question

I wanted to store the time correctly if using utc_datetime

I have a model that looks like this

schema "booking" do
    field :reference, :string
    field :status, :string
    field :start_time, :utc_datetime
    field :end_time, :utc_datetime

    timestamps()
  end

And I have a form which looks like this

    <div class='input-field col s12 m4'>
        <span>Start Time</span>
        <%= datetime_local_input f, :start_time %>
        <%= error_tag f, :start_time %>
    </div>
    <div class='input-field col s12 m4'>
        <span>End Time</span>
        <%= datetime_local_input f, :end_time %>
        <%= error_tag f, :end_time %>
    </div>

But when I store it to the database and show it on a page it will look like this
2019-09-08 22:00:00Z
And I try to set it to the local time and shift it to UTC time using Timex which I show from my initial post
So when I want to display it, I will convert it to display the correct time.

For example:
From the form it, I will select the time
start_time: 2019-09-08 20:00:00
end_time: 2019-09-08 21:00:00

And convert it to UTC and store it into the database, which will change the time to:
start_time: 2019-09-08 12:00:00Z
end_time: 2019-09-08 13:00:00Z

Where ever in the world, I will show the correct time depending on the timezone. For my timezone which is "Asia/Kuala_Lumpur" will convert it back to
start_time: 2019-09-08 20:00:00
end_time: 2019-09-08 21:00:00

This how I do it currently in elixir but does not work

changeset
|> put_change(:start_time, Timex.shift(Timex.to_datetime(start_time, "Asia/Kuala_Lumpur"), "Etc/UTC"))
|> put_change(:end_time, Timex.shift(Timex.to_datetime(end_time, "Asia/Kuala_Lumpur"), "Etc/UTC"))

I’m also not sure if this is a proper way to do it or not.

So I thought of another way which using the naive_datetime instead of utc_datetime and have another column in my table where it will store the timezone as well. The model should look like this

schema "booking" do
    field :reference, :string
    field :status, :string
    field :start_time, :naive_datetime
    field :end_time, :naive_datetime
    field :timezone, (something to represent timezone)

    timestamps()
  end

Hope you understand

LostKobrakai

LostKobrakai

The problem you’re facing is that the submitted value of a datetime_local_input does not include timezone information at all. It’ll send the server a (“naive”) iso8601 datetime without timezone information. It’s also unlikely to change. Your utc_datetime field will then assume it’s UTC, because that column is meant to only ever hold datetimes with UTC set as timezone.

I’ve spent some time to code up and document how I’d handle those cases and hide a bit of the boilerplate necessary. Since elixir 1.8 elixir can finally handle the problem on it’s own with a timezone database configured.

azimlord

azimlord OP

I’m sorry if this is a stupid question

From the library that you make is to avoid the issue that mentions in this article How to save datetimes for future events - (when UTC is not the right answer). Correct?

I guess, with your solution, I need to add another 2 field, which is

schema "booking" do
    field :reference, :string
    field :status, :string
    field :start_time, :utc_datetime
    field :end_time, :utc_datetime
    field :time_zone, :string          #new field
    field :original_offset, :integer   #new field

    timestamps()
end

with that, then my changeset just need to do this

require TzDatetime
changeset
    |> TzDatetime.handle_datetime(input_datetime: :start_time, datetime: :start_time)
    |> TzDatetime.handle_datetime(input_datetime: :end_time, datetime: :end_time)

before storing it into the database

and for displaying

require TzDatetime
TzDatetime.original_datetime(booking, datetime: :start_time)

will get the correct datetime

But I’m not sure how to get the original_offset. Can you help me with this?
And I’m guessing that the time_zone will be the timezone that I wanted. eg: "Asia/Kuala_Lumpur"

If there’s anything wrong with what I’m saying, please do correct me.

LostKobrakai

LostKobrakai

You have it mostly correct.

TzDatetime.handle_datetime(cs, input_datetime: :start_time, datetime: :start_time)

I’d suggest a virtual field for the input separate to the field storing the utc_datetime, but this should work. Also you don’t need to require TzDatetime. There are no macros involved here so just calling the functions is enough.

The timezone field you’ll need to set somehow either by letting the user submit the value or adding it to the changeset based on other information your system has.

As for the original_offset: You shouldn’t need to care about that at all. It’s set by handle_datetime/2 and read by original_datetime/2. The latter will return different values if there’s a missmatch detected between the stored offset and the offset based on your current timezone database.

azimlord

azimlord OP

Having a bit issue

So I separate the field for input and the datetime like you suggested.

field :input_start_time, :naive_datetime, virtual: true
field :input_end_time, :naive_datetime, virtual: true

changeset
    |> TzDatetime.handle_datetime(input_datetime: :input_start_time, datetime: :start_time)
    |> TzDatetime.handle_datetime(input_datetime: :input_end_time, datetime: :end_time)

When I try to create a booking, the changes are as below

changes: %{
    input_end_time: ~N[2019-09-10 11:00:00],
    input_start_time: ~N[2019-09-10 10:00:00],
    time_zone: "Asia/Kuala_Lumpur"
  }

But it returns an error

** (exit) an exception was raised:
    ** (CaseClauseError) no case clause matching: {:error, :utc_only_time_zone_database}
        (tz_datetime) lib/tz_datetime.ex:190: TzDatetime.do_handle_datetime/3

Not sure what is going :confused:

LostKobrakai

LostKobrakai

Elixir itself only ships with a timezone database supporting UTC and nothing else. This is because updating the timezone db shouldn’t really be bound to the release cycles of elixir the language. Currently the only implementation for full timezone support ships with the tzdata library, which you’d need to install / configure.

azimlord

azimlord OP

Nice. I works! Thank you!

Convert the start_time and end_time using Timex, shows the correct time

Thank you very much! :grinning:

LostKobrakai

LostKobrakai

Please use original_datetime/2 to convert the utc_datetime back to your original timezone. It mostly does shift the timezone just like timex does, but you’ll be made aware if the timezone definitions changed to cause a different offset to the time when the datetime was stored. This will hardly ever happen for datetimes in the past, but is a valid problem to look for in future datetimes.

azimlord

azimlord OP

Noted. Changed the conversion using original_datetime/2.

Is there any other information that I should be aware of regarding the solution?
What ‘should I do’ and what ‘I should not do’?

Where Next? Top

Trending in Questions Top

Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Trolleger
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
matt-savvy
Anyone here using Honeybadger? My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of Bandit.HTTPError...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews