Handling recurring events in rails.
The schedulable plugin depends on the ice_cube scheduling-library:
gem 'ice_cube'
Install schedule migration and model
rails g schedulable:install
Create your event model
rails g scaffold Event name:string
Configure your model to be schedulable:
# app/models/event.rb
class Event < ActiveRecord::Base
acts_as_schedulable
end
This will add an association named 'schedule' that holds the schedule information.
Now you're ready to setup form fields for the schedule association using the fields_for-form_helper.
The schedule object respects the following attributes:
Name | Type | Description |
---|---|---|
rule | String | One of 'singular', 'daily', 'weekly', 'monthly' |
date | Date | The date-attribute is used for singular events and also as startdate of the schedule |
time | Time | The time-attribute is used for singular events and also as starttime of the schedule |
days | Array | An array of weekday-names, i.e. ['monday', 'wednesday'] |
day_of_week | Hash | A hash of weekday-names, containing arrays with indices, i.e. {:monday => [1, -1]} ('every first and last monday in month') |
interval | Integer | Specifies the interval of the recurring rule, i.e. every two weeks |
until | Date | Specifies the enddate of the schedule. Required for terminating events. |
count | Integer | Specifies the total number of occurrences. Required for terminating events. |
A custom input for simple_form is provided with the plugin
rails g schedulable:simple_form
-# app/views/events/_form.html.haml
.form-inputs
= f.input :name
= f.input :schedule, as: :schedule
# app/controllers/event_controller.rb
def event_params
params.require(:event).permit(:name, schedule_attributes: Schedulable::ScheduleSupport.param_names)
end
The schedulable plugin uses ice_cube for calculating occurrences. You can access ice_cube-methods via the schedule association:
# prints all occurrences of the event until one year from now
puts @event.schedule.occurrences(Time.now + 1.year)
# export to ical
puts @event.schedule.to_ical
See https://github.com/seejohnrun/ice_cube for more information.
We need to have the occurrences persisted because we want to query the database for all occurrences of all instances of an event model or need to add additional attributes and functionality, such as allowing users to attend to a specific occurrence of an event. The schedulable gem handles this for you. Your occurrence model must include an attribute of type 'datetime' with name 'date' as well as a reference to your event model to setup up the association properly:
rails g model EventOccurrence event_id:integer date:datetime
# app/models/event_occurrence.rb
class EventOccurrence < ActiveRecord::Base
belongs_to :event
end
Then you can simply declare your occurrences with the acts_as_schedule-method like this:
# app/models/event.rb
class Event < ActiveRecord::Base
acts_as_schedulable occurrences: :event_occurrences
end
This will add a has_many-association with the name 'event_occurences' to your event-model. Instances of remaining occurrences are built when the schedule is saved. If the schedule has changed, the occurrences will be rebuilt if dates have also changed. Otherwise the time of the occurrence record will be adjusted to the new time. As in real life, previous occurrences will always stay untouched.
An event is terminating if an until- or count-attribute has been specified. Since non-terminating events have infinite occurrences, we cannot build all occurrences at once ;-) So we need to limit the number of occurrences in the database. By default this will be one year from now. This can be configured via the 'build_max_count' and 'build_max_period'-options. See notes on configuration.
Since we cannot build all occurrences at once, we will need a task that adds occurrences as time goes by. Schedulable comes with a rake-task that performs an update on all scheduled occurrences.
rake schedulable:build_occurrences
You may add the task to crontab. With the 'whenever' gem this can be easily achieved.
gem 'whenever', :require => false
Create the 'whenever'-configuration file:
wheneverize .
Open up the file 'config/schedule.rb' and add the job:
set :environment, "development"
set :output, {:error => "log/cron_error_log.log", :standard => "log/cron_log.log"}
every 1.day do
rake "schedulable:build_occurrences"
end
Write to the crontab:
whenever -w
Generate the configuration file
rails g schedulable:config
Open 'config/initializers/schedulable.rb' and edit options as you need:
Schedulable.configure do |config|
config.max_build_count = 0
config.max_build_period = 1.year
end