2014-11-22 00:33:16 +01:00
|
|
|
module FoodsoftDateUtil
|
|
|
|
# find next occurence given a recurring ical string and time
|
2021-03-01 15:27:26 +01:00
|
|
|
def self.next_occurrence(start = Time.now, from = start, options = {})
|
2015-10-23 14:53:01 +02:00
|
|
|
occ = nil
|
|
|
|
if options && options[:recurr]
|
2014-11-22 00:33:16 +01:00
|
|
|
schedule = IceCube::Schedule.new(start)
|
|
|
|
schedule.add_recurrence_rule rule_from(options[:recurr])
|
|
|
|
# @todo handle ical parse errors
|
|
|
|
occ = (schedule.next_occurrence(from).to_time rescue nil)
|
|
|
|
end
|
2015-10-23 14:53:01 +02:00
|
|
|
if options && options[:time] && occ
|
2014-11-22 00:33:16 +01:00
|
|
|
occ = occ.beginning_of_day.advance(seconds: Time.parse(options[:time]).seconds_since_midnight)
|
|
|
|
end
|
|
|
|
occ
|
|
|
|
end
|
|
|
|
|
|
|
|
# @param p [String, Symbol, Hash, IceCube::Rule] What to return a rule from.
|
|
|
|
# @return [IceCube::Rule] Recurring rule
|
|
|
|
def self.rule_from(p)
|
|
|
|
if p.is_a? String
|
|
|
|
IceCube::Rule.from_ical(p)
|
|
|
|
elsif p.is_a? Hash
|
|
|
|
IceCube::Rule.from_hash(p)
|
|
|
|
else
|
|
|
|
p
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|