| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2016-03-13 10:30:10 +00:00
										 |  |  | # Copyright (C) 2006-2016  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  | # modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  | # as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  | # of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  | # This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | # GNU General Public License for more details. | 
					
						
							| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  | # You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | # along with this program; if not, write to the Free Software | 
					
						
							|  |  |  | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module Redmine | 
					
						
							|  |  |  |   module Helpers | 
					
						
							| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  |     # Simple class to compute the start and end dates of a calendar | 
					
						
							|  |  |  |     class Calendar | 
					
						
							| 
									
										
										
										
											2009-02-21 11:04:50 +00:00
										 |  |  |       include Redmine::I18n | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  |       attr_reader :startdt, :enddt | 
					
						
							| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  |       def initialize(date, lang = current_language, period = :month) | 
					
						
							|  |  |  |         @date = date | 
					
						
							|  |  |  |         @events = [] | 
					
						
							|  |  |  |         @ending_events_by_days = {} | 
					
						
							|  |  |  |         @starting_events_by_days = {} | 
					
						
							| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  |         set_language_if_valid lang | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  |         case period | 
					
						
							|  |  |  |         when :month | 
					
						
							|  |  |  |           @startdt = Date.civil(date.year, date.month, 1) | 
					
						
							|  |  |  |           @enddt = (@startdt >> 1)-1
 | 
					
						
							|  |  |  |           # starts from the first day of the week | 
					
						
							|  |  |  |           @startdt = @startdt - (@startdt.cwday - first_wday)%7
 | 
					
						
							|  |  |  |           # ends on the last day of the week | 
					
						
							|  |  |  |           @enddt = @enddt + (last_wday - @enddt.cwday)%7
 | 
					
						
							|  |  |  |         when :week | 
					
						
							|  |  |  |           @startdt = date - (date.cwday - first_wday)%7
 | 
					
						
							|  |  |  |           @enddt = date + (last_wday - date.cwday)%7
 | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           raise 'Invalid period' | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  |       # Sets calendar events | 
					
						
							|  |  |  |       def events=(events) | 
					
						
							|  |  |  |         @events = events | 
					
						
							|  |  |  |         @ending_events_by_days = @events.group_by {|event| event.due_date} | 
					
						
							|  |  |  |         @starting_events_by_days = @events.group_by {|event| event.start_date} | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  |       # Returns events for the given day | 
					
						
							|  |  |  |       def events_on(day) | 
					
						
							|  |  |  |         ((@ending_events_by_days[day] || []) + (@starting_events_by_days[day] || [])).uniq | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  |       # Calendar current month | 
					
						
							|  |  |  |       def month | 
					
						
							|  |  |  |         @date.month | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  |       # Return the first day of week | 
					
						
							|  |  |  |       # 1 = Monday ... 7 = Sunday | 
					
						
							|  |  |  |       def first_wday | 
					
						
							| 
									
										
										
										
											2009-12-13 04:06:55 +00:00
										 |  |  |         case Setting.start_of_week.to_i | 
					
						
							|  |  |  |         when 1
 | 
					
						
							|  |  |  |           @first_dow ||= (1 - 1)%7 + 1
 | 
					
						
							| 
									
										
										
										
											2011-03-27 15:43:26 +00:00
										 |  |  |         when 6
 | 
					
						
							|  |  |  |           @first_dow ||= (6 - 1)%7 + 1
 | 
					
						
							| 
									
										
										
										
											2009-12-13 04:06:55 +00:00
										 |  |  |         when 7
 | 
					
						
							|  |  |  |           @first_dow ||= (7 - 1)%7 + 1
 | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           @first_dow ||= (l(:general_first_day_of_week).to_i - 1)%7 + 1
 | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  |       def last_wday | 
					
						
							|  |  |  |         @last_dow ||= (first_wday + 5)%7 + 1
 | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-09-01 02:05:11 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-10-07 20:07:11 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | end |