web-dev-qa-db-ja.com

Rails:タイムゾーンで#beginning_of_dayを取得する

Railsアプリケーションのデフォルトタイムゾーンを設定しています。Dateオブジェクトのインスタンスを作成しています。

ローカルタイムゾーンではなく、指定されたタイムゾーンで1日の始まりを返すようにDate#beginning_of_dayを作成するにはどうすればよいですか。

与えられた日付の指定されたタイムゾーンで一日の時間の始まりを取得する他の方法はありますか?

date = Date.new(2014,10,29)

zone = ActiveSupport::TimeZone.new('CET')
date.foo(zone) # should return "Wed, 29 Oct 2014 00:00:00 CET +01:00"

zone = ActiveSupport::TimeZone.new('UTC')
date.foo(zone) # should return "Wed, 29 Oct 2014 00:00:00 UTC +00:00"
22
Bogdan Gusiev
time_zone = Time.zone # any time zone really
time_zone.local(date.year, date.month, date.day)

問題は、ActiveSupport2.3でDate.beginning_of_dayTime.zoneを尊重しないことです。

比較 https://github.com/Rails/rails/blob/v2.3.11/activesupport/lib/active_support/core_ext/date/calculations.rb#L64 (AS 2.3)

https://github.com/Rails/rails/blob/master/activesupport/lib/active_support/core_ext/date/calculations.rb#L74 および https:// github。 com/Rails/rails/blob/master/activesupport/lib/active_support/core_ext/date/zones.rb#L7 (AS 3)

20
Leonid Shevtsov
DateTime.now.in_time_zone(Time.zone).beginning_of_day
43
Peder

Date#beginning_of_dayは常に00:00を返します。

しかし、私が理解しているように、あなたは現在のタイムゾーンが一日の始まりである間に他のタイムゾーンの時間を知りたいと思っています。

そう。あなたの現在の場所で一日の始まりを見つけましょう。フランスのパリだと想像してみてください。

bd = DateTime.now.in_time_zone('Paris').beginning_of_day
# or just
bd = DateTime.now.in_time_zone(1).beginning_of_day
#=> Thu, 24 Mar 2011 00:00:00 WET +01:00

さて、モスクワの何時かを調べましょう。

moscow_time = bd.in_time_zone("Moscow") # or in_time_zone(3)
#=> Thu, 24 Mar 2011 02:00:00 AST +03:00
london_time = bd.in_time_zone("London")
#=> Wed, 23 Mar 2011 23:00:00 GMT +00:00
kyiv_time = bd.in_time_zone("Kyiv")
#=> Thu, 24 Mar 2011 01:00:00 EET +02:00 

異なる形式の場合now日:

# You even shouldn't call now, because it by default will be 00:00
date = DateTime(2011, 1, 3).in_time_zone("-10")
# or
date = DateTime.new(2011,1,3,0,0,0,"-10")
# and same way as above
moscow_time = date.in_time_zone("Moscow") # or in_time_zone(3)

DateDateTimeに変換します

date = Date.new(2011,1,3).to_datetime.change(:offset => "EST")
9
fl00r

Pederの答えから離れて、PSTタイムゾーンで行ったことは次のとおりです。

DateTime.now.in_time_zone("Pacific Time (US & Canada)").beginning_of_day
3
Tim S
may2 = Date.new(2012,5,2)
midnight = Time.zone.local(may2.year,may2.month,may2.day).beginning_of_day

2012年5月2日水曜日00:00:00UTC +00:00

midnight = Time.zone.local(may2.year,may2.month,may2.day).in_time_zone("Moscow").beginning_of_day

=> 2012年5月2日水曜日00:00:00MSK +04:00

midnight = Time.zone.local(may2.year,may2.month,may2.day).in_time_zone("Alaska").beginning_of_day

=> 2012年5月1日火曜日00:00:00 AKDT -08:00

注意、それは間違った日です。

必要なのは、正しいタイムゾーンでTimeWithZoneを構築する方法です。

Time.zone="Alaska"
midnight = Time.zone.local(may2.year,may2.month,may2.day)

私が見る限り、私は自分がいるゾーンのsystemの概念を変更したので、これは本当に嫌いです。アイデアは、データベース検索を変更して、クライアント...だから、ゾーンを保存して復元する必要があります:

foo = Time.zone; Time.zone="Alaska"; midnight = Time.zone.local(may2.year,may2.month,may2.day); Time.zone = foo

TimeWithZone.new()を呼び出すことができるはずのようですが、その方法がわかりませんでした。

1
mcr

私はこの投稿が古いことを知っていますが、どうですか?

Time.zone.parse("12am")
1
Jason Galuten

Leonid Shevtsovが述べたように、ActiveSupport2.3ではDate.beginning_of_dayTime.zoneを尊重しません

Rails 4.0またはActiveSupport2.3を使用してスタックし、カスタム日付を使用する必要がある場合、私が使用した代替手段:

date = Date.new(2014,10,29)
date.to_time.change(hour: 0, min: 0, sec: 0).in_time_zone  #.beginning_of_day
date.to_time.change(hour: 23, min: 59, sec: 59).in_time_zone #.end_of_day

結果:

2.0.0-p247 :001 > date = Date.new(2014,10,29)
 => Wed, 29 Oct 2014 

2.0.0-p247 :002 > date.to_time.change(hour: 0, min: 0, sec: 0)
 => 2014-10-29 00:00:00 -0500 

2.0.0-p247 :003 > date.to_time.change(hour: 0, min: 0, sec: 0).in_time_zone
 => Wed, 29 Oct 2014 05:00:00 UTC +00:00 

2.0.0-p247 :004 > date.to_time.change(hour: 23, min: 59, sec: 59)
 => 2014-10-29 23:59:59 -0500 

2.0.0-p247 :005 > date.to_time.change(hour: 23, min: 59, sec: 59).in_time_zone
 => Thu, 30 Oct 2014 04:59:59 UTC +00:00 

.beginning_of_dayから.end_of_dayを使用した元の失敗したモデルスコープが機能しませんでした。

scope :on_day, ->(date) { where( created_at: date.beginning_of_day..date.end_of_day ) }

そして、これは私がRails 4.0にアップグレードできなかったので、それを修正したものです

scope :on_day, ->(date) { where( created_at: date.to_time.change(hour: 0, min: 0, sec: 0).in_time_zone..date.to_time.change(hour: 23, min: 59, sec: 59).in_time_zone ) }
0
Eric Wanchic
ActiveSupport::TimeZone['Europe/London'].parse('30.07.2013') # 2013-07-29 23:00:00 UTC 
ActiveSupport::TimeZone['Asia/Magadan'].parse('30.07.2013') # 2013-07-29 12:00:00 UTC
0
Dmitry Lihachev