Vous pouvez convertir un BSON::Timestamp
à un BSON::ByteBuffer
en utilisant le #to_bson
méthode.
Vous pouvez ensuite convertir le BSON::ByteBuffer
à un entier (#get_int64
) qui représente le nombre de millisecondes depuis l'époque.
Ensuite, utilisez Time::at
pour convertir cet entier en Time
objet
date_time = DateTime.new(2021,8,30)
date_time.to_time
#=> 2021-08-30 00:00:00 +0000
date_time.to_time.to_i
#=> 1630281600
timestamp = BSON::Timestamp.from_bson(date_time.to_bson)
#=> #<BSON::Timestamp:0x00007fffe31da4a8 @seconds=379, @increment=2488994816>
timestamp.to_bson.get_int64 / 1000
#=> 1630281600
Time.at(timestamp.to_bson.get_int64 / 1000).utc
#=> 2021-08-30 00:00:00 UTC