zeus.ugent.be/lib/helpers/ical.rb

24 lines
513 B
Ruby
Raw Normal View History

2016-07-26 22:13:36 +00:00
module IcalHelper
def event_calendar
cal = Icalendar::Calendar.new
2016-08-23 18:21:02 +00:00
items.find_all('/events/*/*.md').each do |i|
cal.add_event(event_for(i))
end
2016-07-26 22:13:36 +00:00
cal.to_ical
end
2016-08-23 18:21:02 +00:00
def event_for(item)
2017-02-08 16:05:48 +00:00
e = Icalendar::Event.new
e.dtstart = item[:time]
e.dtend = item[:end] if item[:end]
e.summary = item[:title]
e.description = item[:description] + "\n\n" + item.reps[:text].compiled_content
e.location = item[:location]
e.url = @config[:base_url] + item.path
2016-07-26 22:13:36 +00:00
2017-02-08 16:05:48 +00:00
e
2016-07-26 22:13:36 +00:00
end
end