12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
# File 'lib/schedulable/acts_as_schedulable.rb', line 12
def acts_as_schedulable(name, options = {})
name||= :schedule
attribute = :date
has_one name, as: :schedulable, dependent: :destroy
accepts_nested_attributes_for name
if options[:occurrences]
if options[:occurrences].is_a?(String) || options[:occurrences].is_a?(Symbol)
occurrences_association = options[:occurrences].to_sym
options[:occurrences] = {}
else
occurrences_association = options[:occurrences][:name]
options[:occurrences].delete(:name)
end
options[:occurrences][:class_name] = occurrences_association.to_s.classify
options[:occurrences][:as]||= :schedulable
options[:occurrences][:dependent]||:destroy
options[:occurrences][:autosave]||= true
has_many occurrences_association, options[:occurrences]
occurrences_table_name = occurrences_association.to_s.tableize
remaining_occurrences_options = options[:occurrences].clone
remaining_occurrences_association = ("remaining_" << occurrences_association.to_s).to_sym
has_many remaining_occurrences_association, -> { where("#{occurrences_table_name}.date >= ?", Time.now).order('date ASC') }, remaining_occurrences_options
previous_occurrences_options = options[:occurrences].clone
previous_occurrences_association = ("previous_" << occurrences_association.to_s).to_sym
has_many previous_occurrences_association, -> { where("#{occurrences_table_name}.date < ?", Time.now).order('date DESC')}, previous_occurrences_options
ActsAsSchedulable.add_occurrences_association(self, occurrences_association)
after_save "build_#{occurrences_association}"
self.class.instance_eval do
define_method("build_#{occurrences_association}") do
schedulables = self.all
schedulables.each do |schedulable|
schedulable.send("build_#{occurrences_association}")
end
end
end
define_method "build_#{occurrences_association}_after_update" do
schedule = self.send(name)
if schedule.changes.any?
self.send("build_#{occurrences_association}")
end
end
define_method "build_#{occurrences_association}" do
schedule = self.send(name)
now = Time.now
occurrence_attribute = :date
schedulable = schedule.schedulable
terminating = schedule.rule != 'singular' && (schedule.until.present? || schedule.count.present? && schedule.count > 1)
max_period = Schedulable.config.max_build_period || 1.year
max_date = now + max_period
max_date = terminating ? [max_date, schedule.last.to_time].min : max_date
max_count = Schedulable.config.max_build_count || 100
max_count = terminating && schedule.remaining_occurrences.any? ? [max_count, schedule.remaining_occurrences.count].min : max_count
if schedule.rule != 'singular'
all_occurrences = schedule.occurrences_between(Time.now, max_date.to_time)
occurrences = []
all_occurrences.each_with_index do |occurrence_date, index|
if occurrence_date.present? && occurrence_date.to_time > now
if occurrence_date.to_time < max_date && index < max_count
occurrences << occurrence_date
else
max_date = [max_date, occurrence_date].min
end
end
end
else
d = schedule.date
t = schedule.time
dt = d + t.seconds_since_midnight.seconds
singular_date_time = (d + t.seconds_since_midnight.seconds).to_datetime
occurrences = [singular_date_time]
end
update_mode = Schedulable.config.update_mode || :datetime
if schedule.rule == 'singular'
update_mode = :index
end
occurrences_records = schedulable.send("remaining_#{occurrences_association}")
existing_record = nil
occurrences.each_with_index do |occurrence, index|
if update_mode == :index
existing_records = [occurrences_records[index]]
elsif update_mode == :datetime
existing_records = occurrences_records.select { |record|
record.date.to_datetime == occurrence.to_datetime
}
else
existing_records = []
end
if existing_records.any?
existing_records.each do |existing_record|
if !occurrences_records.update(existing_record.id, date: occurrence.to_datetime)
puts 'An error occurred while saving an existing occurrence record'
end
end
else
if !occurrences_records.create(date: occurrence.to_datetime)
puts 'An error occurred while creating an occurrence record'
end
end
end
occurrences_records = schedulable.send("remaining_#{occurrences_association}")
record_count = 0
occurrences_records.each do |occurrence_record|
if occurrence_record.date > now
if schedule.rule != 'singular' && (!schedule.occurs_on?(occurrence_record.date.to_date) || !schedule.occurring_at?(occurrence_record.date.to_time) || occurrence_record.date > max_date) || schedule.rule == 'singular' && record_count > 0
occurrences_records.destroy(occurrence_record)
end
record_count = record_count + 1
end
end
end
end
end
|