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.missedpunch;
17  
18  import java.util.Set;
19  
20  import org.apache.commons.lang.StringUtils;
21  import org.apache.log4j.Logger;
22  import org.kuali.hr.time.util.TKContext;
23  import org.kuali.rice.kew.api.KewApiServiceLocator;
24  import org.kuali.rice.kim.api.identity.Person;
25  import org.kuali.rice.kns.document.authorization.TransactionalDocumentAuthorizerBase;
26  import org.kuali.rice.krad.document.Document;
27  import org.kuali.rice.krad.util.KRADConstants;
28  
29  public class MissedPunchAuthorizer extends TransactionalDocumentAuthorizerBase {
30  
31  	private Logger LOG = Logger.getLogger(MissedPunchAuthorizer.class);
32  	
33  	@Override
34  	public boolean canEditDocumentOverview(Document document, Person user) {
35  		return true;
36  	}
37  
38  	@Override
39  	public Set<String> getDocumentActions(Document document, Person user,
40  			Set<String> documentActions) {
41  		Set<String> author =  super.getDocumentActions(document, user, documentActions);
42  		MissedPunchDocument mpDoc = (MissedPunchDocument)document;
43  		if(StringUtils.equals(mpDoc.getDocumentStatus(),"R") ){
44  			if(KewApiServiceLocator.getWorkflowDocumentActionsService().isFinalApprover(mpDoc.getDocumentNumber(), TKContext.getPrincipalId())){
45  				author.add(KRADConstants.KUALI_ACTION_CAN_EDIT);
46  				author.add(KRADConstants.KUALI_ACTION_CAN_APPROVE);
47  				
48  				author.remove(KRADConstants.KUALI_ACTION_CAN_DISAPPROVE);
49  			}
50  		} else if(!StringUtils.equals(mpDoc.getDocumentStatus(), "A")){
51  			author.add(KRADConstants.KUALI_ACTION_CAN_EDIT);
52  			author.add(KRADConstants.KUALI_ACTION_CAN_ROUTE);
53  		}
54  		author.remove(KRADConstants.KUALI_ACTION_CAN_ADD_ADHOC_REQUESTS);
55  		author.remove(KRADConstants.KUALI_ACTION_CAN_SEND_ADHOC_REQUESTS);
56  		return author;
57  	}
58  	
59  	
60  	
61  }