Class: GCal4Ruby::Recurrence
- Inherits:
-
Object
- Object
- GCal4Ruby::Recurrence
- Includes:
- RiCal
- Defined in:
- lib/gcal4ruby/recurrence.rb
Overview
The Recurrence class stores information on an Event’s recurrence. The class implements the RFC 2445 iCalendar recurrence description.
Instance Attribute Summary collapse
-
#all_day ⇒ Object
True if the event is all day (i.e. no start/end time).
-
#end ⇒ Object
The event end date/time.
-
#event ⇒ Object
the event reference.
-
#frequency ⇒ Object
The event frequency.
-
#repeat_until ⇒ Object
The date until which the event will be repeated.
-
#rrule ⇒ Object
Returns the value of attribute rrule.
-
#start ⇒ Object
The event start date/time.
Instance Method Summary collapse
-
#initialize(vars = {}) ⇒ Recurrence
constructor
Accepts an optional attributes hash or a string containing a properly formatted ISO 8601 recurrence rule.
-
#load(rec) ⇒ Object
Accepts a string containing a properly formatted ISO 8601 recurrence rule and loads it into the recurrence object.
- #to_clio_s ⇒ Object
-
#to_s ⇒ Object
Returns a string with the correctly formatted ISO 8601 recurrence rule.
Constructor Details
#initialize(vars = {}) ⇒ Recurrence
Accepts an optional attributes hash or a string containing a properly formatted ISO 8601 recurrence rule. Returns a new Recurrence object
35 36 37 38 39 40 41 42 43 44 |
# File 'lib/gcal4ruby/recurrence.rb', line 35 def initialize(vars = {}) if vars.is_a? Hash vars.each do |key, value| self.send("#{key}=", value) end elsif vars.is_a? String self.load(vars) end @all_day ||= false end |
Instance Attribute Details
#all_day ⇒ Object
True if the event is all day (i.e. no start/end time)
30 31 32 |
# File 'lib/gcal4ruby/recurrence.rb', line 30 def all_day @all_day end |
#end ⇒ Object
The event end date/time
22 23 24 |
# File 'lib/gcal4ruby/recurrence.rb', line 22 def end @end end |
#event ⇒ Object
the event reference
24 25 26 |
# File 'lib/gcal4ruby/recurrence.rb', line 24 def event @event end |
#frequency ⇒ Object
The event frequency
28 29 30 |
# File 'lib/gcal4ruby/recurrence.rb', line 28 def frequency @frequency end |
#repeat_until ⇒ Object
The date until which the event will be repeated
26 27 28 |
# File 'lib/gcal4ruby/recurrence.rb', line 26 def repeat_until @repeat_until end |
#rrule ⇒ Object
Returns the value of attribute rrule.
32 33 34 |
# File 'lib/gcal4ruby/recurrence.rb', line 32 def rrule @rrule end |
#start ⇒ Object
The event start date/time
20 21 22 |
# File 'lib/gcal4ruby/recurrence.rb', line 20 def start @start end |
Instance Method Details
#load(rec) ⇒ Object
Accepts a string containing a properly formatted ISO 8601 recurrence rule and loads it into the recurrence object
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 |
# File 'lib/gcal4ruby/recurrence.rb', line 47 def load(rec) rec = "BEGIN:VEVENT\n#{rec}" unless (rec.starts_with? "BEGIN:VEVENT") rec = "#{rec}END:VEVENT\n" unless (rec.ends_with? "END:VEVENT\n") @rrule = RiCal.parse_string(rec) if @rrule.is_a? Array @rrule = @rrule.first end # attrs = rec.split("\n") # attrs.each do |val| # key, value = val.split(":") # case key # when 'DTSTART' # @start = Time.parse_complete(value) # when 'DTSTART;VALUE=DATE' # @start = Time.parse(value) # @all_day = true # when 'DTSTART;VALUE=DATE-TIME' # @start = Time.parse_complete(value) # when 'DTEND' # @end = Time.parse_complete(value) # when 'DTEND;VALUE=DATE' # @end = Time.parse(value) # when 'DTEND;VALUE=DATE-TIME' # @end = Time.parse_complete(value) # when 'RRULE' # vals = value.split(";") # key = '' # by = '' # int = nil # vals.each do |rr| # a, h = rr.split("=") # case a # when 'FREQ' # key = h.downcase.capitalize # when 'INTERVAL' # int = h # when 'UNTIL' # @repeat_until = Time.parse(value) # else # by = h.split(",") # end # end # @frequency = {key => by} # @frequency.merge({'interval' => int}) if int # end # end end |
#to_clio_s ⇒ Object
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/gcal4ruby/recurrence.rb', line 153 def to_clio_s # output = "" # if @frequency # f = 'FREQ=' # i = '' # by = '' # @frequency.each do |key, v| # if v.is_a?(Array) # if v.size > 0 # value = v.join(",") # else # value = nil # end # else # value = v # end # f += "#{key.upcase};" if key != 'interval' # case key.downcase # when "secondly" # by += "BYSECOND=#{value};" # when "minutely" # by += "BYMINUTE=#{value};" # when "hourly" # by += "BYHOUR=#{value};" # when "weekly" # by += "BYDAY=#{value};" if value # when "monthly" # by += "BYDAY=#{value};" # when "yearly" # by += "BYYEARDAY=#{value};" # when 'interval' # i += "INTERVAL=#{value};" # end # end # output += f+i+by # end # if @repeat_until # output += "UNTIL=#{@repeat_until.strftime("%Y%m%d")}" # end end |
#to_s ⇒ Object
Returns a string with the correctly formatted ISO 8601 recurrence rule
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 |
# File 'lib/gcal4ruby/recurrence.rb', line 97 def to_s return @rrule.to_s.gsub("BEGIN:VEVENT\n","").gsub("END:VEVENT\n","") # # output = '' # if @all_day # output += "DTSTART;VALUE=DATE:#{@start.utc.strftime("%Y%m%d")}\n" # else # output += "DTSTART;VALUE=DATE-TIME:#{@start.complete}\n" # end # if @all_day # output += "DTEND;VALUE=DATE:#{@end.utc.strftime("%Y%m%d")}\n" # else # output += "DTEND;VALUE=DATE-TIME:#{@end.complete}\n" # end # output += "RRULE:" # if @frequency # f = 'FREQ=' # i = '' # by = '' # @frequency.each do |key, v| # if v.is_a?(Array) # if v.size > 0 # value = v.join(",") # else # value = nil # end # else # value = v # end # f += "#{key.upcase};" if key != 'interval' # case key.downcase # when "secondly" # by += "BYSECOND=#{value};" # when "minutely" # by += "BYMINUTE=#{value};" # when "hourly" # by += "BYHOUR=#{value};" # when "weekly" # by += "BYDAY=#{value};" if value # when "monthly" # by += "BYDAY=#{value};" # when "yearly" # by += "BYYEARDAY=#{value};" # when 'interval' # i += "INTERVAL=#{value};" # end # end # output += f+i+by # end # if @repeat_until # output += "UNTIL=#{@repeat_until.strftime("%Y%m%d")}" # end # # output += "\n" end |