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.admin.web;
17  
18  import javax.servlet.http.HttpServletRequest;
19  import javax.servlet.http.HttpServletResponse;
20  
21  import org.apache.commons.lang3.StringUtils;
22  import org.apache.struts.action.ActionForm;
23  import org.apache.struts.action.ActionForward;
24  import org.apache.struts.action.ActionMapping;
25  import org.kuali.hr.time.base.web.TkAction;
26  import org.kuali.hr.time.calendar.Calendar;
27  import org.kuali.hr.time.calendar.CalendarEntries;
28  import org.kuali.hr.time.service.base.TkServiceLocator;
29  import org.kuali.hr.time.util.TkConstants;
30  import org.kuali.rice.kim.api.identity.principal.Principal;
31  import org.kuali.rice.kim.api.services.KimApiServiceLocator;
32  
33  public class InitiateDocumentAction extends TkAction {
34  
35      public ActionForward initiateDocument(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
36      	InitiateDocumentForm initiateDocumentForm = (InitiateDocumentForm) form;
37      	String principalId = initiateDocumentForm.getPrincipalId();
38      	String hrCalendarEntriesId = initiateDocumentForm.getHrCalendarEntriesId();
39      	
40      	if (StringUtils.isNotBlank(principalId) && StringUtils.isNotBlank(hrCalendarEntriesId)) {
41      		Principal principal = KimApiServiceLocator.getIdentityService().getPrincipal(principalId);
42      		CalendarEntries calendarEntries = TkServiceLocator.getCalendarEntriesService().getCalendarEntries(hrCalendarEntriesId);
43      		
44      		if (principal != null && calendarEntries != null) {
45      			Calendar calendar = TkServiceLocator.getCalendarService().getCalendar(calendarEntries.getHrCalendarId());
46      			
47      			if (calendar != null) {
48      				if (StringUtils.equals(calendar.getCalendarTypes(), TkConstants.CALENDAR_TYPE_PAY)) {
49      					TkServiceLocator.getTimesheetService().openTimesheetDocument(principalId, calendarEntries);
50      				} else if (StringUtils.equals(calendar.getCalendarTypes(), TkConstants.CALENDAR_TYPE_LEAVE)) {
51      					TkServiceLocator.getLeaveCalendarService().openLeaveCalendarDocument(principalId, calendarEntries);
52      				}
53      			}
54      		}
55      	}
56      	
57      	return mapping.findForward("basic");
58      }
59      
60  }