| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
package org.kuali.rice.kew.actionlist.dao.impl; |
| 18 | |
|
| 19 | |
import java.sql.Timestamp; |
| 20 | |
import java.util.*; |
| 21 | |
|
| 22 | |
import javax.persistence.EntityManager; |
| 23 | |
import javax.persistence.PersistenceContext; |
| 24 | |
|
| 25 | |
import org.apache.commons.lang.StringUtils; |
| 26 | |
import org.kuali.rice.core.jpa.criteria.Criteria; |
| 27 | |
import org.kuali.rice.core.jpa.criteria.QueryByCriteria; |
| 28 | |
import org.kuali.rice.core.util.OrmUtils; |
| 29 | |
import org.kuali.rice.kew.actionitem.ActionItem; |
| 30 | |
import org.kuali.rice.kew.actionitem.ActionItemActionListExtension; |
| 31 | |
import org.kuali.rice.kew.actionitem.OutboxItemActionListExtension; |
| 32 | |
import org.kuali.rice.kew.actionlist.ActionListFilter; |
| 33 | |
import org.kuali.rice.kew.actionlist.dao.ActionListDAO; |
| 34 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
| 35 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
| 36 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValueActionListExtension; |
| 37 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
| 38 | |
import org.kuali.rice.kew.util.KEWConstants; |
| 39 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
| 40 | |
|
| 41 | |
|
| 42 | |
|
| 43 | |
|
| 44 | |
|
| 45 | |
|
| 46 | 0 | public class ActionListDAOJpaImpl implements ActionListDAO { |
| 47 | |
|
| 48 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(ActionListDAOJpaImpl.class); |
| 49 | |
|
| 50 | |
@PersistenceContext(unitName="kew-unit") |
| 51 | |
private EntityManager entityManager; |
| 52 | |
|
| 53 | |
public Collection<ActionItem> getActionList(String principalId, ActionListFilter filter) { |
| 54 | 0 | return toActionItemActionListExtensions(getActionItemsInActionList(ActionItem.class, principalId, filter)); |
| 55 | |
} |
| 56 | |
|
| 57 | |
|
| 58 | |
|
| 59 | |
|
| 60 | |
|
| 61 | |
|
| 62 | |
|
| 63 | |
private Collection<ActionItem> toActionItemActionListExtensions( |
| 64 | |
Collection<ActionItem> actionItems) { |
| 65 | 0 | List<ActionItem> actionItemActionListExtensions = new ArrayList<ActionItem>(); |
| 66 | 0 | for(ActionItem actionItem:actionItems){ |
| 67 | 0 | actionItemActionListExtensions.add(toActionItemActionListExtension(actionItem)); |
| 68 | |
} |
| 69 | 0 | return actionItemActionListExtensions; |
| 70 | |
} |
| 71 | |
|
| 72 | |
|
| 73 | |
|
| 74 | |
|
| 75 | |
|
| 76 | |
|
| 77 | |
|
| 78 | |
private ActionItemActionListExtension toActionItemActionListExtension( |
| 79 | |
ActionItem actionItem) { |
| 80 | |
|
| 81 | 0 | if(actionItem==null){ |
| 82 | 0 | return null; |
| 83 | |
} |
| 84 | |
|
| 85 | 0 | ActionItemActionListExtension actionItemExt = new ActionItemActionListExtension(); |
| 86 | |
|
| 87 | 0 | actionItemExt.setActionItemId(actionItem.getActionItemId()); |
| 88 | 0 | actionItemExt.setPrincipalId(actionItem.getPrincipalId()); |
| 89 | 0 | actionItemExt.setDateAssigned(actionItem.getDateAssigned()); |
| 90 | 0 | actionItemExt.setActionRequestCd(actionItem.getActionRequestCd()); |
| 91 | 0 | actionItemExt.setActionRequestId(actionItem.getActionRequestId()); |
| 92 | 0 | actionItemExt.setRouteHeaderId(actionItem.getRouteHeaderId()); |
| 93 | 0 | actionItemExt.setResponsibilityId(actionItem.getResponsibilityId()); |
| 94 | 0 | actionItemExt.setGroupId(actionItem.getGroupId()); |
| 95 | 0 | actionItemExt.setRoleName(actionItem.getRoleName()); |
| 96 | 0 | actionItemExt.setDocTitle(actionItem.getDocTitle()); |
| 97 | 0 | actionItemExt.setDocLabel(actionItem.getDocLabel()); |
| 98 | 0 | actionItemExt.setDocHandlerURL(actionItem.getDocHandlerURL()); |
| 99 | 0 | actionItemExt.setDocName(actionItem.getDocName()); |
| 100 | 0 | actionItemExt.setDelegatorWorkflowId(actionItem.getDelegatorWorkflowId()); |
| 101 | 0 | actionItemExt.setDelegatorGroupId(actionItem.getDelegatorGroupId()); |
| 102 | 0 | actionItemExt.setDelegationType(actionItem.getDelegationType()); |
| 103 | 0 | actionItemExt.setLockVerNbr(actionItem.getLockVerNbr()); |
| 104 | 0 | actionItemExt.setRouteHeader(toDocumentRouteHeaderValueActionListExtension(actionItem.getRouteHeader())); |
| 105 | |
|
| 106 | |
|
| 107 | |
|
| 108 | |
|
| 109 | |
|
| 110 | |
|
| 111 | |
|
| 112 | |
|
| 113 | |
|
| 114 | |
|
| 115 | |
|
| 116 | |
|
| 117 | 0 | return actionItemExt; |
| 118 | |
} |
| 119 | |
|
| 120 | |
|
| 121 | |
|
| 122 | |
|
| 123 | |
|
| 124 | |
|
| 125 | |
|
| 126 | |
private DocumentRouteHeaderValueActionListExtension toDocumentRouteHeaderValueActionListExtension( |
| 127 | |
DocumentRouteHeaderValue routeHeader) { |
| 128 | |
|
| 129 | 0 | if(routeHeader==null){ |
| 130 | 0 | return null; |
| 131 | |
} |
| 132 | |
|
| 133 | 0 | DocumentRouteHeaderValueActionListExtension extension = new DocumentRouteHeaderValueActionListExtension(); |
| 134 | |
|
| 135 | 0 | extension.setRouteHeaderId(routeHeader.getRouteHeaderId()); |
| 136 | 0 | extension.setDocumentTypeId(routeHeader.getDocumentTypeId()); |
| 137 | 0 | extension.setDocRouteStatus(routeHeader.getDocRouteStatus()); |
| 138 | 0 | extension.setDocRouteLevel(routeHeader.getDocRouteLevel()); |
| 139 | 0 | extension.setStatusModDate(routeHeader.getStatusModDate()); |
| 140 | 0 | extension.setCreateDate(routeHeader.getCreateDate()); |
| 141 | 0 | extension.setApprovedDate(routeHeader.getApprovedDate()); |
| 142 | 0 | extension.setFinalizedDate(routeHeader.getFinalizedDate()); |
| 143 | 0 | extension.setRouteStatusDate(routeHeader.getRouteStatusDate()); |
| 144 | 0 | extension.setRouteLevelDate(routeHeader.getRouteLevelDate()); |
| 145 | 0 | extension.setDocTitle(routeHeader.getDocTitle()); |
| 146 | 0 | extension.setAppDocId(routeHeader.getAppDocId()); |
| 147 | 0 | extension.setDocVersion(routeHeader.getDocVersion()); |
| 148 | 0 | extension.setInitiatorWorkflowId(routeHeader.getInitiatorWorkflowId()); |
| 149 | 0 | extension.setVersionNumber(routeHeader.getVersionNumber()); |
| 150 | 0 | extension.setAppDocStatus(routeHeader.getAppDocStatus()); |
| 151 | 0 | extension.setAppDocStatusDate(routeHeader.getAppDocStatusDate()); |
| 152 | |
|
| 153 | 0 | return extension; |
| 154 | |
} |
| 155 | |
|
| 156 | |
public Collection<ActionItem> getActionListForSingleDocument(Long routeHeaderId) { |
| 157 | 0 | LOG.debug("getting action list for route header id " + routeHeaderId); |
| 158 | 0 | Criteria crit = new Criteria(ActionItem.class.getName()); |
| 159 | 0 | crit.eq("routeHeader.routeHeaderId", routeHeaderId); |
| 160 | 0 | Collection<ActionItem> collection = new QueryByCriteria(entityManager, crit).toQuery().getResultList(); |
| 161 | 0 | LOG.debug("found " + collection.size() + " action items for route header id " + routeHeaderId); |
| 162 | 0 | return toActionItemActionListExtensions(createActionListForRouteHeader(collection)); |
| 163 | |
} |
| 164 | |
|
| 165 | |
private Criteria setUpActionListCriteria(Class objectsToRetrieve, String principalId, ActionListFilter filter) { |
| 166 | 0 | LOG.debug("setting up Action List criteria"); |
| 167 | 0 | Criteria crit = new Criteria(objectsToRetrieve.getName()); |
| 168 | 0 | boolean filterOn = false; |
| 169 | 0 | String filteredByItems = ""; |
| 170 | |
|
| 171 | 0 | if (filter.getActionRequestCd() != null && !"".equals(filter.getActionRequestCd().trim()) && !filter.getActionRequestCd().equals(KEWConstants.ALL_CODE)) { |
| 172 | 0 | if (filter.isExcludeActionRequestCd()) { |
| 173 | 0 | crit.ne("actionRequestCd", filter.getActionRequestCd()); |
| 174 | |
} else { |
| 175 | 0 | crit.eq("actionRequestCd", filter.getActionRequestCd()); |
| 176 | |
} |
| 177 | 0 | filteredByItems += filteredByItems.length() > 0 ? ", " : ""; |
| 178 | 0 | filteredByItems += "Action Requested"; |
| 179 | |
} |
| 180 | |
|
| 181 | 0 | if (filter.getCreateDateFrom() != null || filter.getCreateDateTo() != null) { |
| 182 | 0 | if (filter.isExcludeCreateDate()) { |
| 183 | 0 | if (filter.getCreateDateFrom() != null && filter.getCreateDateTo() != null) { |
| 184 | 0 | crit.notBetween("routeHeader.createDate", new Timestamp(beginningOfDay(filter.getCreateDateFrom()).getTime()), new Timestamp(endOfDay(filter.getCreateDateTo()).getTime())); |
| 185 | 0 | } else if (filter.getCreateDateFrom() != null && filter.getCreateDateTo() == null) { |
| 186 | 0 | crit.lte("routeHeader.createDate", new Timestamp(beginningOfDay(filter.getCreateDateFrom()).getTime())); |
| 187 | 0 | } else if (filter.getCreateDateFrom() == null && filter.getCreateDateTo() != null) { |
| 188 | 0 | crit.gte("routeHeader.createDate", new Timestamp(endOfDay(filter.getCreateDateTo()).getTime())); |
| 189 | |
} |
| 190 | |
} else { |
| 191 | 0 | if (filter.getCreateDateFrom() != null && filter.getCreateDateTo() != null) { |
| 192 | 0 | crit.between("routeHeader.createDate", new Timestamp(beginningOfDay(filter.getCreateDateFrom()).getTime()), new Timestamp(endOfDay(filter.getCreateDateTo()).getTime())); |
| 193 | 0 | } else if (filter.getCreateDateFrom() != null && filter.getCreateDateTo() == null) { |
| 194 | 0 | crit.gte("routeHeader.createDate", new Timestamp(beginningOfDay(filter.getCreateDateFrom()).getTime())); |
| 195 | 0 | } else if (filter.getCreateDateFrom() == null && filter.getCreateDateTo() != null) { |
| 196 | 0 | crit.lte("routeHeader.createDate", new Timestamp(endOfDay(filter.getCreateDateTo()).getTime())); |
| 197 | |
} |
| 198 | |
} |
| 199 | 0 | filteredByItems += filteredByItems.length() > 0 ? ", " : ""; |
| 200 | 0 | filteredByItems += "Date Created"; |
| 201 | |
} |
| 202 | |
|
| 203 | 0 | if (filter.getDocRouteStatus() != null && !"".equals(filter.getDocRouteStatus().trim()) && !filter.getDocRouteStatus().equals(KEWConstants.ALL_CODE)) { |
| 204 | 0 | if (filter.isExcludeRouteStatus()) { |
| 205 | 0 | crit.ne("routeHeader.docRouteStatus", filter.getDocRouteStatus()); |
| 206 | |
} else { |
| 207 | 0 | crit.eq("routeHeader.docRouteStatus", filter.getDocRouteStatus()); |
| 208 | |
} |
| 209 | 0 | filteredByItems += filteredByItems.length() > 0 ? ", " : ""; |
| 210 | 0 | filteredByItems += "Document Route Status"; |
| 211 | |
} |
| 212 | |
|
| 213 | 0 | if (filter.getDocumentTitle() != null && !"".equals(filter.getDocumentTitle().trim())) { |
| 214 | 0 | String docTitle = filter.getDocumentTitle(); |
| 215 | 0 | if (docTitle.trim().endsWith("*")) { |
| 216 | 0 | docTitle = docTitle.substring(0, docTitle.length() - 1); |
| 217 | |
} |
| 218 | |
|
| 219 | 0 | if (filter.isExcludeDocumentTitle()) { |
| 220 | 0 | crit.notLike("docTitle", "%" + docTitle + "%"); |
| 221 | |
} else { |
| 222 | 0 | crit.like("docTitle", "%" + docTitle + "%"); |
| 223 | |
} |
| 224 | 0 | filteredByItems += filteredByItems.length() > 0 ? ", " : ""; |
| 225 | 0 | filteredByItems += "Document Title"; |
| 226 | |
} |
| 227 | |
|
| 228 | 0 | if (filter.getDocumentType() != null && !"".equals(filter.getDocumentType().trim())) { |
| 229 | 0 | if (filter.isExcludeDocumentType()) { |
| 230 | 0 | crit.notLike("docName", "%" + filter.getDocumentType() + "%"); |
| 231 | |
} else { |
| 232 | 0 | String documentTypeName = filter.getDocumentType(); |
| 233 | 0 | DocumentType documentType = KEWServiceLocator.getDocumentTypeService().findByName(documentTypeName); |
| 234 | 0 | if (documentType == null) { |
| 235 | 0 | crit.like("docName", "%" + filter.getDocumentType() + "%"); |
| 236 | |
} else { |
| 237 | |
|
| 238 | 0 | Criteria docTypeCrit = new Criteria(objectsToRetrieve.getName()); |
| 239 | 0 | constructDocumentTypeCriteria(objectsToRetrieve.getName(), docTypeCrit, documentType); |
| 240 | 0 | crit.and(docTypeCrit); |
| 241 | |
} |
| 242 | |
} |
| 243 | 0 | filteredByItems += filteredByItems.length() > 0 ? ", " : ""; |
| 244 | 0 | filteredByItems += "Document Type"; |
| 245 | |
} |
| 246 | |
|
| 247 | 0 | if (filter.getLastAssignedDateFrom() != null || filter.getLastAssignedDateTo() != null) { |
| 248 | 0 | if (filter.isExcludeLastAssignedDate()) { |
| 249 | 0 | if (filter.getLastAssignedDateFrom() != null && filter.getLastAssignedDateTo() != null) { |
| 250 | 0 | crit.notBetween("dateAssigned", new Timestamp(beginningOfDay(filter.getLastAssignedDateFrom()).getTime()), new Timestamp(endOfDay(filter.getLastAssignedDateTo()).getTime())); |
| 251 | 0 | } else if (filter.getLastAssignedDateFrom() != null && filter.getLastAssignedDateTo() == null) { |
| 252 | 0 | crit.lte("dateAssigned", new Timestamp(beginningOfDay(filter.getLastAssignedDateFrom()).getTime())); |
| 253 | 0 | } else if (filter.getLastAssignedDateFrom() == null && filter.getLastAssignedDateTo() != null) { |
| 254 | 0 | crit.gte("dateAssigned", new Timestamp(endOfDay(filter.getLastAssignedDateTo()).getTime())); |
| 255 | |
} |
| 256 | |
} else { |
| 257 | 0 | if (filter.getLastAssignedDateFrom() != null && filter.getLastAssignedDateTo() != null) { |
| 258 | 0 | crit.between("dateAssigned", new Timestamp(beginningOfDay(filter.getLastAssignedDateFrom()).getTime()), new Timestamp(endOfDay(filter.getLastAssignedDateTo()).getTime())); |
| 259 | 0 | } else if (filter.getLastAssignedDateFrom() != null && filter.getLastAssignedDateTo() == null) { |
| 260 | 0 | crit.gte("dateAssigned", new Timestamp(beginningOfDay(filter.getLastAssignedDateFrom()).getTime())); |
| 261 | 0 | } else if (filter.getLastAssignedDateFrom() == null && filter.getLastAssignedDateTo() != null) { |
| 262 | 0 | crit.lte("dateAssigned", new Timestamp(endOfDay(filter.getLastAssignedDateTo()).getTime())); |
| 263 | |
} |
| 264 | |
} |
| 265 | 0 | filteredByItems += filteredByItems.length() > 0 ? ", " : ""; |
| 266 | 0 | filteredByItems += "Date Last Assigned"; |
| 267 | |
} |
| 268 | |
|
| 269 | 0 | filter.setGroupId(null); |
| 270 | 0 | if (filter.getGroupIdString() != null && !"".equals(filter.getGroupIdString().trim()) && !filter.getGroupIdString().trim().equals(KEWConstants.NO_FILTERING)) { |
| 271 | 0 | filter.setGroupId(filter.getGroupId()); |
| 272 | 0 | if (filter.isExcludeGroupId()) { |
| 273 | 0 | Criteria critNotEqual = new Criteria(objectsToRetrieve.getName()); |
| 274 | 0 | critNotEqual.ne("groupId", filter.getGroupId()); |
| 275 | 0 | Criteria critNull = new Criteria(objectsToRetrieve.getName()); |
| 276 | 0 | critNull.isNull("groupId"); |
| 277 | 0 | critNotEqual.or(critNull); |
| 278 | 0 | crit.and(critNotEqual); |
| 279 | 0 | } else { |
| 280 | 0 | crit.eq("groupId", filter.getGroupId()); |
| 281 | |
} |
| 282 | 0 | filteredByItems += filteredByItems.length() > 0 ? ", " : ""; |
| 283 | 0 | filteredByItems += "Action Request Workgroup"; |
| 284 | |
} |
| 285 | |
|
| 286 | 0 | if (filteredByItems.length() > 0) { |
| 287 | 0 | filterOn = true; |
| 288 | |
} |
| 289 | |
|
| 290 | 0 | boolean addedDelegationCriteria = false; |
| 291 | 0 | if (StringUtils.isBlank(filter.getDelegationType()) && StringUtils.isBlank(filter.getPrimaryDelegateId()) && StringUtils.isBlank(filter.getDelegatorId())) { |
| 292 | 0 | crit.eq("principalId", principalId); |
| 293 | 0 | addedDelegationCriteria = true; |
| 294 | 0 | } else if ((StringUtils.isNotBlank(filter.getDelegationType()) && KEWConstants.DELEGATION_PRIMARY.equals(filter.getDelegationType())) |
| 295 | |
|| StringUtils.isNotBlank(filter.getPrimaryDelegateId())) { |
| 296 | |
|
| 297 | 0 | if ((StringUtils.isBlank(filter.getPrimaryDelegateId())) || (filter.getPrimaryDelegateId().trim().equals(KEWConstants.ALL_CODE))) { |
| 298 | |
|
| 299 | 0 | Criteria userCrit = new Criteria(objectsToRetrieve.getName()); |
| 300 | 0 | Criteria groupCrit = new Criteria(objectsToRetrieve.getName()); |
| 301 | 0 | Criteria orCrit = new Criteria(objectsToRetrieve.getName()); |
| 302 | 0 | userCrit.eq("delegatorWorkflowId", principalId); |
| 303 | |
|
| 304 | 0 | List<String> userGroupIds = new ArrayList<String>(); |
| 305 | 0 | for(String id:KIMServiceLocator.getIdentityManagementService().getGroupIdsForPrincipal(principalId)){ |
| 306 | 0 | userGroupIds.add(id); |
| 307 | |
} |
| 308 | 0 | if (!userGroupIds.isEmpty()) { |
| 309 | 0 | groupCrit.in("delegatorGroupId", userGroupIds); |
| 310 | |
} |
| 311 | 0 | orCrit.or(userCrit); |
| 312 | 0 | orCrit.or(groupCrit); |
| 313 | 0 | crit.and(orCrit); |
| 314 | 0 | crit.eq("delegationType", KEWConstants.DELEGATION_PRIMARY); |
| 315 | 0 | filter.setDelegationType(KEWConstants.DELEGATION_PRIMARY); |
| 316 | 0 | filter.setExcludeDelegationType(false); |
| 317 | 0 | addToFilterDescription(filteredByItems, "Primary Delegator Id"); |
| 318 | 0 | addedDelegationCriteria = true; |
| 319 | 0 | filterOn = true; |
| 320 | 0 | } else if (!filter.getPrimaryDelegateId().trim().equals(KEWConstants.PRIMARY_DELEGATION_DEFAULT)) { |
| 321 | |
|
| 322 | 0 | crit.eq("principalId", filter.getPrimaryDelegateId()); |
| 323 | 0 | Criteria userCrit = new Criteria(objectsToRetrieve.getName()); |
| 324 | 0 | Criteria groupCrit = new Criteria(objectsToRetrieve.getName()); |
| 325 | 0 | Criteria orCrit = new Criteria(objectsToRetrieve.getName()); |
| 326 | 0 | userCrit.eq("delegatorWorkflowId", principalId); |
| 327 | 0 | List<String> userGroupIds = new ArrayList<String>(); |
| 328 | 0 | for(String id:KIMServiceLocator.getIdentityManagementService().getGroupIdsForPrincipal(principalId)){ |
| 329 | 0 | userGroupIds.add(id); |
| 330 | |
} |
| 331 | 0 | if (!userGroupIds.isEmpty()) { |
| 332 | 0 | groupCrit.in("delegatorGroupId", userGroupIds); |
| 333 | |
} |
| 334 | 0 | orCrit.or(userCrit); |
| 335 | 0 | orCrit.or(groupCrit); |
| 336 | 0 | crit.and(orCrit); |
| 337 | 0 | crit.eq("delegationType", KEWConstants.DELEGATION_PRIMARY); |
| 338 | 0 | filter.setDelegationType(KEWConstants.DELEGATION_PRIMARY); |
| 339 | 0 | filter.setExcludeDelegationType(false); |
| 340 | 0 | addToFilterDescription(filteredByItems, "Primary Delegator Id"); |
| 341 | 0 | addedDelegationCriteria = true; |
| 342 | 0 | filterOn = true; |
| 343 | |
} |
| 344 | |
} |
| 345 | 0 | if (!addedDelegationCriteria && ( (StringUtils.isNotBlank(filter.getDelegationType()) && KEWConstants.DELEGATION_SECONDARY.equals(filter.getDelegationType())) |
| 346 | |
|| StringUtils.isNotBlank(filter.getDelegatorId()) )) { |
| 347 | |
|
| 348 | 0 | crit.eq("principalId", principalId); |
| 349 | 0 | if (StringUtils.isBlank(filter.getDelegatorId())) { |
| 350 | 0 | filter.setDelegationType(KEWConstants.DELEGATION_SECONDARY); |
| 351 | |
|
| 352 | 0 | if (!filter.isExcludeDelegationType()) { |
| 353 | 0 | crit.eq("delegationType", KEWConstants.DELEGATION_SECONDARY); |
| 354 | 0 | addToFilterDescription(filteredByItems, "Secondary Delegator Id"); |
| 355 | 0 | addedDelegationCriteria = true; |
| 356 | 0 | filterOn = true; |
| 357 | |
} |
| 358 | 0 | } else if (filter.getDelegatorId().trim().equals(KEWConstants.ALL_CODE)) { |
| 359 | |
|
| 360 | 0 | crit.eq("delegationType", KEWConstants.DELEGATION_SECONDARY); |
| 361 | 0 | filter.setDelegationType(KEWConstants.DELEGATION_SECONDARY); |
| 362 | 0 | filter.setExcludeDelegationType(false); |
| 363 | 0 | addToFilterDescription(filteredByItems, "Secondary Delegator Id"); |
| 364 | 0 | addedDelegationCriteria = true; |
| 365 | 0 | filterOn = true; |
| 366 | 0 | } else if (!filter.getDelegatorId().trim().equals( |
| 367 | |
KEWConstants.DELEGATION_DEFAULT)) { |
| 368 | |
|
| 369 | 0 | filter.setDelegationType(KEWConstants.DELEGATION_SECONDARY); |
| 370 | 0 | filter.setExcludeDelegationType(false); |
| 371 | 0 | Criteria userCrit = new Criteria(objectsToRetrieve.getName()); |
| 372 | 0 | Criteria groupCrit = new Criteria(objectsToRetrieve.getName()); |
| 373 | 0 | if (filter.isExcludeDelegatorId()) { |
| 374 | 0 | Criteria userNull = new Criteria(objectsToRetrieve.getName()); |
| 375 | 0 | userCrit.ne("delegatorWorkflowId", filter.getDelegatorId()); |
| 376 | 0 | userNull.isNull("delegatorWorkflowId"); |
| 377 | 0 | userCrit.or(userNull); |
| 378 | 0 | Criteria groupNull = new Criteria(objectsToRetrieve.getName()); |
| 379 | 0 | groupCrit.ne("delegatorGroupId", filter.getDelegatorId()); |
| 380 | 0 | groupNull.isNull("delegatorGroupId"); |
| 381 | 0 | groupCrit.or(groupNull); |
| 382 | 0 | crit.and(userCrit); |
| 383 | 0 | crit.and(groupCrit); |
| 384 | 0 | } else { |
| 385 | 0 | userCrit.eq("delegatorWorkflowId", filter.getDelegatorId()); |
| 386 | 0 | groupCrit.eq("delegatorGroupId", filter.getDelegatorId()); |
| 387 | 0 | userCrit.or(groupCrit); |
| 388 | 0 | crit.and(userCrit); |
| 389 | |
} |
| 390 | 0 | addToFilterDescription(filteredByItems, "Secondary Delegator Id"); |
| 391 | 0 | addedDelegationCriteria = true; |
| 392 | 0 | filterOn = true; |
| 393 | |
} |
| 394 | |
} |
| 395 | |
|
| 396 | |
|
| 397 | 0 | if (!addedDelegationCriteria) { |
| 398 | 0 | crit.eq("principalId", principalId); |
| 399 | 0 | filter.setDelegationType(KEWConstants.DELEGATION_SECONDARY); |
| 400 | 0 | filter.setExcludeDelegationType(true); |
| 401 | 0 | Criteria critNotEqual = new Criteria(objectsToRetrieve.getName()); |
| 402 | 0 | Criteria critNull = new Criteria(objectsToRetrieve.getName()); |
| 403 | 0 | critNotEqual.ne("delegationType", KEWConstants.DELEGATION_SECONDARY); |
| 404 | 0 | critNull.isNull("delegationType"); |
| 405 | 0 | critNotEqual.or(critNull); |
| 406 | 0 | crit.and(critNotEqual); |
| 407 | |
} |
| 408 | |
|
| 409 | |
|
| 410 | 0 | if (! "".equals(filteredByItems)) { |
| 411 | 0 | filteredByItems = "Filtered by " + filteredByItems; |
| 412 | |
} |
| 413 | 0 | filter.setFilterLegend(filteredByItems); |
| 414 | 0 | filter.setFilterOn(filterOn); |
| 415 | |
|
| 416 | 0 | LOG.debug("returning from Action List criteria"); |
| 417 | 0 | return crit; |
| 418 | |
} |
| 419 | |
|
| 420 | |
private void constructDocumentTypeCriteria(String entityName, Criteria criteria, DocumentType documentType) { |
| 421 | |
|
| 422 | 0 | Criteria docTypeBaseCrit = new Criteria(entityName); |
| 423 | 0 | docTypeBaseCrit.eq("docName", documentType.getName()); |
| 424 | 0 | criteria.or(docTypeBaseCrit); |
| 425 | 0 | Collection children = documentType.getChildrenDocTypes(); |
| 426 | 0 | if (children != null) { |
| 427 | 0 | for (Iterator iterator = children.iterator(); iterator.hasNext();) { |
| 428 | 0 | DocumentType childDocumentType = (DocumentType) iterator.next(); |
| 429 | 0 | constructDocumentTypeCriteria(entityName, criteria, childDocumentType); |
| 430 | 0 | } |
| 431 | |
} |
| 432 | 0 | } |
| 433 | |
|
| 434 | |
private void addToFilterDescription(String filterDescription, String labelToAdd) { |
| 435 | 0 | filterDescription += filterDescription.length() > 0 ? ", " : ""; |
| 436 | 0 | filterDescription += labelToAdd; |
| 437 | 0 | } |
| 438 | |
|
| 439 | |
private static final String ACTION_LIST_COUNT_QUERY = "select count(distinct(ai.doc_hdr_id)) from krew_actn_itm_t ai where ai.PRNCPL_ID = ? and (ai.dlgn_typ is null or ai.dlgn_typ = 'P')"; |
| 440 | |
|
| 441 | |
public int getCount(final String workflowId) { |
| 442 | |
|
| 443 | 0 | javax.persistence.Query q = entityManager.createNativeQuery(ACTION_LIST_COUNT_QUERY); |
| 444 | 0 | q.setParameter(1, workflowId); |
| 445 | 0 | Number result = (Number)q.getSingleResult(); |
| 446 | 0 | return result.intValue(); |
| 447 | |
} |
| 448 | |
|
| 449 | |
|
| 450 | |
|
| 451 | |
|
| 452 | |
|
| 453 | |
|
| 454 | |
|
| 455 | |
|
| 456 | |
private <T extends ActionItem> Collection<T> createActionListForUser(Collection<T> actionItems) { |
| 457 | 0 | Map<Long, T> actionItemMap = new HashMap<Long, T>(); |
| 458 | 0 | ActionListPriorityComparator comparator = new ActionListPriorityComparator(); |
| 459 | 0 | for (T potentialActionItem: actionItems) { |
| 460 | 0 | T existingActionItem = actionItemMap.get(potentialActionItem.getRouteHeaderId()); |
| 461 | 0 | if (existingActionItem == null || comparator.compare(potentialActionItem, existingActionItem) > 0) { |
| 462 | 0 | actionItemMap.put(potentialActionItem.getRouteHeaderId(), potentialActionItem); |
| 463 | |
} |
| 464 | 0 | } |
| 465 | 0 | return actionItemMap.values(); |
| 466 | |
} |
| 467 | |
|
| 468 | |
|
| 469 | |
|
| 470 | |
|
| 471 | |
|
| 472 | |
|
| 473 | |
|
| 474 | |
|
| 475 | |
private Collection<ActionItem> createActionListForRouteHeader(Collection<ActionItem> actionItems) { |
| 476 | 0 | Map<String, ActionItem> actionItemMap = new HashMap<String, ActionItem>(); |
| 477 | 0 | ActionListPriorityComparator comparator = new ActionListPriorityComparator(); |
| 478 | 0 | for (ActionItem potentialActionItem: actionItems) { |
| 479 | 0 | ActionItem existingActionItem = actionItemMap.get(potentialActionItem.getPrincipalId()); |
| 480 | 0 | if (existingActionItem == null || comparator.compare(potentialActionItem, existingActionItem) > 0) { |
| 481 | 0 | actionItemMap.put(potentialActionItem.getPrincipalId(), potentialActionItem); |
| 482 | |
} |
| 483 | 0 | } |
| 484 | 0 | return actionItemMap.values(); |
| 485 | |
} |
| 486 | |
|
| 487 | |
private <T extends ActionItem> Collection<ActionItem> getActionItemsInActionList(Class<T> objectsToRetrieve, String principalId, ActionListFilter filter) { |
| 488 | 0 | LOG.debug("getting action list for user " + principalId); |
| 489 | 0 | Criteria crit = null; |
| 490 | 0 | if (filter == null) { |
| 491 | 0 | crit = new Criteria(objectsToRetrieve.getName()); |
| 492 | 0 | crit.eq("principalId", principalId); |
| 493 | |
} else { |
| 494 | 0 | crit = setUpActionListCriteria(objectsToRetrieve, principalId, filter); |
| 495 | |
} |
| 496 | 0 | LOG.debug("running query to get action list for criteria " + crit); |
| 497 | 0 | Collection<ActionItem> collection = new QueryByCriteria(entityManager, crit).toQuery().getResultList(); |
| 498 | 0 | LOG.debug("found " + collection.size() + " action items for user " + principalId); |
| 499 | 0 | return createActionListForUser(collection); |
| 500 | |
} |
| 501 | |
|
| 502 | |
public Collection<ActionItem> getOutbox(String principalId, ActionListFilter filter) { |
| 503 | 0 | return getActionItemsInActionList(OutboxItemActionListExtension.class, principalId, filter); |
| 504 | |
} |
| 505 | |
|
| 506 | |
|
| 507 | |
|
| 508 | |
|
| 509 | |
|
| 510 | |
|
| 511 | |
public void removeOutboxItems(String principalId, List<String> outboxItems) { |
| 512 | 0 | Criteria crit = new Criteria(OutboxItemActionListExtension.class.getName()); |
| 513 | 0 | crit.in("actionItemId", outboxItems); |
| 514 | 0 | for(Object entity:new QueryByCriteria(entityManager, crit).toQuery().getResultList()){ |
| 515 | 0 | entityManager.remove(entity); |
| 516 | |
} |
| 517 | 0 | } |
| 518 | |
|
| 519 | |
|
| 520 | |
|
| 521 | |
|
| 522 | |
|
| 523 | |
|
| 524 | |
public void saveOutboxItem(OutboxItemActionListExtension outboxItem) { |
| 525 | 0 | if(outboxItem.getActionItemId()==null){ |
| 526 | 0 | entityManager.persist(outboxItem); |
| 527 | |
}else{ |
| 528 | |
|
| 529 | 0 | OrmUtils.merge(entityManager, outboxItem); |
| 530 | |
} |
| 531 | 0 | entityManager.flush(); |
| 532 | 0 | } |
| 533 | |
|
| 534 | |
|
| 535 | |
|
| 536 | |
|
| 537 | |
|
| 538 | |
|
| 539 | |
public OutboxItemActionListExtension getOutboxByDocumentId(Long documentId) { |
| 540 | 0 | Criteria crit = new Criteria(OutboxItemActionListExtension.class.getName()); |
| 541 | 0 | crit.eq("routeHeader.routeHeaderId", documentId); |
| 542 | 0 | return (OutboxItemActionListExtension) new QueryByCriteria(entityManager, crit).toQuery().getSingleResult(); |
| 543 | |
} |
| 544 | |
|
| 545 | |
|
| 546 | |
|
| 547 | |
|
| 548 | |
|
| 549 | |
|
| 550 | |
public OutboxItemActionListExtension getOutboxByDocumentIdUserId(Long documentId, String userId) { |
| 551 | 0 | Criteria crit = new Criteria(OutboxItemActionListExtension.class.getName()); |
| 552 | 0 | crit.eq("routeHeader.routeHeaderId", documentId); |
| 553 | 0 | crit.eq("principalId", userId); |
| 554 | |
try{ |
| 555 | 0 | return (OutboxItemActionListExtension) new QueryByCriteria(entityManager, crit).toQuery().getSingleResult(); |
| 556 | 0 | }catch(javax.persistence.NoResultException e){ |
| 557 | 0 | return null; |
| 558 | |
} |
| 559 | |
} |
| 560 | |
|
| 561 | |
private Date beginningOfDay(Date date) { |
| 562 | 0 | Calendar cal = Calendar.getInstance(); |
| 563 | 0 | cal.setTime(date); |
| 564 | 0 | cal.set(Calendar.HOUR_OF_DAY, 0); |
| 565 | 0 | cal.set(Calendar.MINUTE, 0); |
| 566 | 0 | cal.set(Calendar.SECOND, 0); |
| 567 | 0 | return cal.getTime(); |
| 568 | |
} |
| 569 | |
|
| 570 | |
private Date endOfDay(Date date) { |
| 571 | 0 | Calendar cal = Calendar.getInstance(); |
| 572 | 0 | cal.setTime(date); |
| 573 | 0 | cal.set(Calendar.HOUR_OF_DAY, 23); |
| 574 | 0 | cal.set(Calendar.MINUTE, 59); |
| 575 | 0 | cal.set(Calendar.SECOND, 59); |
| 576 | 0 | return cal.getTime(); |
| 577 | |
} |
| 578 | |
|
| 579 | |
public EntityManager getEntityManager() { |
| 580 | 0 | return this.entityManager; |
| 581 | |
} |
| 582 | |
|
| 583 | |
public void setEntityManager(EntityManager entityManager) { |
| 584 | 0 | this.entityManager = entityManager; |
| 585 | 0 | } |
| 586 | |
|
| 587 | |
|
| 588 | |
|
| 589 | |
} |