1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.kpme.tklm.time.service.mobile;
17
18 import java.util.ArrayList;
19 import java.util.HashMap;
20 import java.util.List;
21 import java.util.Map;
22
23 import org.apache.commons.lang.StringUtils;
24 import org.joda.time.DateTime;
25 import org.joda.time.LocalDate;
26 import org.kuali.kpme.core.api.assignment.Assignment;
27 import org.kuali.kpme.core.api.assignment.AssignmentDescriptionKey;
28 import org.kuali.kpme.core.api.calendar.entry.CalendarEntry;
29 import org.kuali.kpme.core.service.HrServiceLocator;
30 import org.kuali.kpme.core.util.HrContext;
31 import org.kuali.kpme.core.util.TKUtils;
32 import org.kuali.kpme.tklm.api.common.TkConstants;
33 import org.kuali.kpme.tklm.api.time.clocklog.ClockLog;
34 import org.kuali.kpme.tklm.api.time.mobile.TkMobileService;
35 import org.kuali.kpme.tklm.time.clocklog.exception.InvalidClockLogException;
36 import org.kuali.kpme.tklm.time.rules.timecollection.TimeCollectionRule;
37 import org.kuali.kpme.tklm.time.service.TkServiceLocator;
38 import org.kuali.kpme.tklm.time.timesheet.TimesheetDocument;
39 import org.kuali.rice.kew.api.exception.WorkflowException;
40
41 import com.google.gson.Gson;
42
43 public class TkMobileServiceImpl implements TkMobileService {
44
45 @Override
46 public String getClockEntryInfo(String principalId) {
47 ClockEntryInfo clockEntryInfo = new ClockEntryInfo();
48 ClockLog lastClockLog = TkServiceLocator.getClockLogService().getLastClockLog(principalId);
49 if(lastClockLog != null){
50 clockEntryInfo.setLastClockLogDescription(getLastClockLogDescription(principalId));
51 }
52 List<Assignment> assignments = HrServiceLocator.getAssignmentService().getAssignments(principalId, LocalDate.now());
53
54 for(Assignment assignment : assignments){
55 if(assignment.getJob() != null) {
56 TimeCollectionRule tcr = TkServiceLocator.getTimeCollectionRuleService().getTimeCollectionRule(assignment.getDept(), assignment.getWorkArea(), assignment.getJob().getHrPayType(), assignment.getGroupKeyCode(), LocalDate.now());
57 if(tcr == null || tcr.isClockUserFl()){
58 String key = new AssignmentDescriptionKey(assignment).toAssignmentKeyString();
59 String desc = assignment.getAssignmentDescription();
60 clockEntryInfo.getAssignKeyToAssignmentDescriptions().put(key, desc);
61 }
62 }
63 }
64 List<String> clockActions = getClockActions(principalId);
65 clockEntryInfo.setClockActions(clockActions);
66 return new Gson().toJson(clockEntryInfo);
67 }
68
69 @Override
70 public Map<String,List<String>> addClockAction(String principalId, String assignmentKey, String clockAction, String ipAddress) {
71 HashMap<String,List<String>> errorWarningMap = new HashMap<String,List<String>>();
72
73 Assignment assignment = HrServiceLocator.getAssignmentService().getAssignmentForTargetPrincipal(AssignmentDescriptionKey.get(assignmentKey), LocalDate.now());
74
75
76 HrContext.setTargetPrincipalId(principalId);
77
78 CalendarEntry calendarEntry = HrServiceLocator.getCalendarEntryService().getCurrentCalendarDates(principalId, new LocalDate().toDateTimeAtStartOfDay());
79 TimesheetDocument td;
80 try {
81 td = TkServiceLocator.getTimesheetService().openTimesheetDocument(principalId, calendarEntry);
82 } catch (WorkflowException e) {
83 throw new RuntimeException("Could not open timesheet");
84 }
85
86
87
88 try {
89 TkServiceLocator.getClockLogService().processClockLog(principalId, td.getDocumentId(), new DateTime(), assignment, td.getCalendarEntry(), ipAddress,
90 LocalDate.now(), getCurrentClockAction(), true);
91 }
92 catch (InvalidClockLogException e)
93 {
94 throw new RuntimeException("Could not take the action as Action taken from an invalid IP address.");
95 }
96
97
98
99 return errorWarningMap;
100 }
101
102 private String getLastClockLogDescription(String principalId){
103 ClockLog lastClockLog = TkServiceLocator.getClockLogService().getLastClockLog(principalId);
104 if(lastClockLog != null){
105 String lastClockDescription;
106 if(StringUtils.equals(lastClockLog.getClockAction(), "CI")){
107 lastClockDescription = "Clocked in since : ";
108 } else if(StringUtils.equals(lastClockLog.getClockAction(), "CO")){
109 lastClockDescription = "Clocked out since : ";
110 } else if(StringUtils.equals(lastClockLog.getClockAction(), "LI")){
111 lastClockDescription = "Returned from lunch since :";
112 } else {
113 lastClockDescription = "At lunch since :";
114 }
115
116
117 lastClockDescription += TKUtils.formatDateTimeLong(lastClockLog.getClockDateTime());
118 return lastClockDescription;
119 }
120 return "";
121 }
122
123 private List<String> getClockActions(String principalId){
124 ClockLog lastClockLog = TkServiceLocator.getClockLogService().getLastClockLog(principalId);
125 List<String> clockActions = new ArrayList<String>();
126 if(lastClockLog != null){
127 if(StringUtils.equals(lastClockLog.getClockAction(), "CI")){
128 clockActions.add("Clock Out");
129 clockActions.add("Lunch Out");
130 } else if(StringUtils.equals(lastClockLog.getClockAction(), "CO")){
131 clockActions.add("Clock In");
132 } else if(StringUtils.equals(lastClockLog.getClockAction(), "LI")){
133 clockActions.add("Clock Out");
134 } else {
135 clockActions.add("Lunch In");
136 }
137 }
138 return clockActions;
139 }
140
141 private String getCurrentClockAction() {
142 ClockLog lastClockLog = TkServiceLocator.getClockLogService().getLastClockLog(HrContext.getTargetPrincipalId());
143 String currentClockAction = "";
144 if(lastClockLog != null){
145 if(StringUtils.equals(lastClockLog.getClockAction(), TkConstants.CLOCK_IN)){
146 currentClockAction = TkConstants.CLOCK_OUT;
147 } else if(StringUtils.equals(lastClockLog.getClockAction(), TkConstants.CLOCK_OUT)){
148 currentClockAction = TkConstants.CLOCK_IN;
149 } else if(StringUtils.equals(lastClockLog.getClockAction(), TkConstants.LUNCH_IN)){
150 currentClockAction = TkConstants.LUNCH_OUT;
151 } else {
152 currentClockAction = TkConstants.LUNCH_IN;
153 }
154 }
155 return currentClockAction;
156 }
157
158 }