View Javadoc

1   /**
2    * Copyright 2004-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.hr.time.calendar;
17  
18  import org.joda.time.DateTime;
19  import org.kuali.hr.time.service.base.TkServiceLocator;
20  
21  import java.util.ArrayList;
22  import java.util.List;
23  
24  public abstract class CalendarParent {
25      private List<CalendarWeek> weeks = new ArrayList<CalendarWeek>();
26      private CalendarEntries calendarEntry;
27      private DateTime beginDateTime;
28      private DateTime endDateTime;
29  
30      public CalendarParent(CalendarEntries calendarEntry) {
31          this.calendarEntry = calendarEntry;
32          if (calendarEntry != null) {
33              this.beginDateTime = calendarEntry.getBeginLocalDateTime().toDateTime(TkServiceLocator.getTimezoneService().getUserTimezoneWithFallback());
34              this.endDateTime = calendarEntry.getEndLocalDateTime().toDateTime(TkServiceLocator.getTimezoneService().getUserTimezoneWithFallback());
35          }
36      }
37  
38      protected CalendarParent() {
39      }
40  
41  
42      public DateTime getBeginDateTime() {
43          return beginDateTime;
44      }
45  
46      public void setBeginDateTime(DateTime beginDateTime) {
47          this.beginDateTime = beginDateTime;
48      }
49  
50      public DateTime getEndDateTime() {
51          return endDateTime;
52      }
53  
54      public void setEndDateTime(DateTime endDateTime) {
55          this.endDateTime = endDateTime;
56      }
57  
58      public CalendarEntries getCalendarEntry() {
59          return calendarEntry;
60      }
61  
62      public void setCalendarEntry(CalendarEntries calendarEntry) {
63          this.calendarEntry = calendarEntry;
64      }
65  
66      public List<CalendarWeek> getWeeks() {
67          return weeks;
68      }
69  
70      public void setWeeks(List<CalendarWeek> weeks) {
71          this.weeks = weeks;
72      }
73  
74      /**
75       * Provides the calendar title / heading. If the Pay Calendar entry spans
76       * multiple months, you get Abbreviated Month name + year of both the
77       * beginning month and the ending month.
78       *
79       * @return String for calendar title use.
80       */
81      public String getCalendarTitle() {
82          StringBuilder sb = new StringBuilder();
83  
84          if (getBeginDateTime().getMonthOfYear() == getEndDateTime().getMonthOfYear() ||
85                  (getBeginDateTime().getMonthOfYear() != getEndDateTime().getMonthOfYear()
86                          && getEndDateTime().getDayOfMonth() == 1 && getEndDateTime().getSecondOfDay() == 0)) {
87              sb.append(getBeginDateTime().toString("MMMM y"));
88          } else {
89              sb.append(getBeginDateTime().toString("MMM y"));
90              sb.append(" - ");
91              sb.append(getEndDateTime().toString("MMM y"));
92          }
93  
94          return sb.toString();
95      }
96  
97      /**
98       * Assumption of 7 "days" per week, or 7 "blocks" per row.
99       *
100      * @return A list of string titles for each row block (day)
101      */
102     public List<String> getCalendarDayHeadings() {
103         List<String> dayStrings = new ArrayList<String>(7);
104         // always render from Sunday
105         int firstDay = 0 - getBeginDateTime().getDayOfWeek();
106         int lastDay = firstDay + 7;
107 
108         if (getBeginDateTime().getMinuteOfDay() == 0) {
109             // "Standard" days.
110             for (int i = firstDay; i < lastDay; i++) {
111                 DateTime currDay = getBeginDateTime().plusDays(i);
112                 dayStrings.add(currDay.toString("E"));
113             }
114         } else {
115             // Day Split Strings
116             for (int i = firstDay; i < lastDay; i++) {
117                 StringBuilder builder = new StringBuilder("");
118                 DateTime currStart = getBeginDateTime().plusDays(i);
119                 DateTime currEnd = getBeginDateTime().plusDays(i);
120 
121                 builder.append(currStart.toString("E HH:mm"));
122                 builder.append(" - ");
123                 builder.append(currEnd.toString("E HH:mm"));
124 
125                 dayStrings.add(builder.toString());
126             }
127         }
128 
129         return dayStrings;
130     }
131 
132 }