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

34 lines
805 B
Ruby
Raw Normal View History

2016-09-13 16:12:52 +00:00
require 'uri'
2016-08-23 23:01:17 +00:00
module EventsHelper
def all_events
2017-01-27 17:13:12 +00:00
@items.find_all('/events/*/*.md').sort_by { |x| x[:time] }
2016-10-03 13:15:48 +00:00
end
def upcoming_events
2016-10-05 22:39:12 +00:00
all_events.reject { |x| x[:time] <= Date.today }
2016-10-03 13:15:48 +00:00
end
def past_events
all_events.reject { |x| x[:time] > Date.today }.reverse
2016-08-23 23:01:17 +00:00
end
def grouped_events
@items.find_all('/events/*/*/main.md')
end
def sub_events(grouped_event)
if grouped_event.identifier =~ /main.md/
query = grouped_event.identifier.to_s.split('/')[0..-2].join('/') + '/*'
@items.find_all(query).reject do |i|
i.identifier =~ /main.md/
end
else
[]
end
end
2016-09-13 16:12:52 +00:00
def locationlink(location)
"https://www.google.com/maps/embed/v1/place?key=AIzaSyBDTmw7LtDG28o9QjCnNucAJv2zTZpLjJU&q=#{URI.escape(location)}" if location
end
2016-08-23 23:01:17 +00:00
end