Coverage Report - org.kuali.rice.kim.web.struts.action.IdentityManagementPersonInquiry
 
Classes in this File Line Coverage Branch Coverage Complexity
IdentityManagementPersonInquiry
0%
0/44
0%
0/18
3.5
 
 1  
 /*
 2  
  * Copyright 2007-2009 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.rice.kim.web.struts.action;
 17  
 
 18  
 import org.apache.commons.lang.StringUtils;
 19  
 import org.apache.log4j.Logger;
 20  
 import org.kuali.rice.core.util.RiceKeyConstants;
 21  
 import org.kuali.rice.kim.api.entity.principal.Principal;
 22  
 import org.kuali.rice.kim.api.services.KimApiServiceLocator;
 23  
 import org.kuali.rice.kim.api.type.KimType;
 24  
 
 25  
 import org.kuali.rice.kim.bo.ui.KimDocumentRoleMember;
 26  
 import org.kuali.rice.kim.bo.ui.KimDocumentRoleQualifier;
 27  
 import org.kuali.rice.kim.bo.ui.PersonDocumentRole;
 28  
 import org.kuali.rice.kim.document.IdentityManagementPersonDocument;
 29  
 import org.kuali.rice.kim.impl.type.KimTypeBo;
 30  
 import org.kuali.rice.kim.service.KIMServiceLocatorInternal;
 31  
 import org.kuali.rice.kim.service.support.KimTypeService;
 32  
 import org.kuali.rice.kim.util.KIMPropertyConstants;
 33  
 import org.kuali.rice.kim.web.struts.form.IdentityManagementDocumentFormBase;
 34  
 import org.kuali.rice.kim.web.struts.form.IdentityManagementPersonDocumentForm;
 35  
 import org.kuali.rice.kns.datadictionary.AttributeDefinition;
 36  
 import org.kuali.rice.kns.datadictionary.KimDataDictionaryAttributeDefinition;
 37  
 import org.kuali.rice.kns.datadictionary.KimNonDataDictionaryAttributeDefinition;
 38  
 import org.kuali.rice.kns.util.GlobalVariables;
 39  
 import org.kuali.rice.kns.util.KNSConstants;
 40  
 
 41  
 import javax.servlet.http.HttpServletRequest;
 42  
 
 43  
 
 44  
 /**
 45  
  * This is a description of what this class does - jonathan don't forget to fill this in. 
 46  
  * 
 47  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 48  
  *
 49  
  */
 50  0
 public class IdentityManagementPersonInquiry extends IdentityManagementBaseInquiryAction {
 51  0
     private static final Logger LOG = Logger.getLogger(IdentityManagementPersonInquiry.class);        
 52  
         /**
 53  
          * This overridden method ...
 54  
          * 
 55  
          * @see org.kuali.rice.kim.web.struts.action.IdentityManagementBaseInquiryAction#loadKimObject(javax.servlet.http.HttpServletRequest, org.kuali.rice.kim.web.struts.form.IdentityManagementDocumentFormBase)
 56  
          */
 57  
         @Override
 58  
         protected void loadKimObject(HttpServletRequest request,
 59  
                         IdentityManagementDocumentFormBase form) {
 60  0
         IdentityManagementPersonDocumentForm personDocumentForm = (IdentityManagementPersonDocumentForm) form;
 61  0
         String principalId = request.getParameter(KIMPropertyConstants.Person.PRINCIPAL_ID);
 62  0
         String principalName = request.getParameter(KIMPropertyConstants.Person.PRINCIPAL_NAME);
 63  0
         if ( StringUtils.isBlank(principalId) && StringUtils.isNotBlank(principalName) ) {
 64  0
                 Principal principal = KimApiServiceLocator.getIdentityManagementService().getPrincipalByPrincipalName(principalName);
 65  0
                 if ( principal != null ) {
 66  0
                         principalId = principal.getPrincipalId();
 67  
                 }
 68  
         }
 69  0
         if ( principalId != null ) {
 70  0
                 Principal principal = KimApiServiceLocator.getIdentityManagementService().getPrincipal(principalId);
 71  0
                 if (principal != null) {
 72  0
                         personDocumentForm.setPrincipalId(principalId);
 73  0
                         getUiDocumentService().loadEntityToPersonDoc(personDocumentForm.getPersonDocument(), personDocumentForm.getPrincipalId() );
 74  0
                     personDocumentForm.setCanOverrideEntityPrivacyPreferences(getUiDocumentService().canOverrideEntityPrivacyPreferences(GlobalVariables.getUserSession().getPrincipalId(), personDocumentForm.getPrincipalId()));
 75  0
                         populateRoleInformation( personDocumentForm.getPersonDocument() );
 76  
                 } else {
 77  0
                         LOG.error("No records found for Person Inquiry.");
 78  0
                 GlobalVariables.getMessageMap().putError(KNSConstants.GLOBAL_ERRORS, RiceKeyConstants.ERROR_INQUIRY);
 79  
                 }
 80  
         }
 81  0
         }
 82  
 
 83  
         protected void populateRoleInformation( IdentityManagementPersonDocument personDoc ) {
 84  0
                 for (PersonDocumentRole role : personDoc.getRoles()) {
 85  0
                 KimTypeService kimTypeService = (KimTypeService) KIMServiceLocatorInternal.getService(getKimTypeServiceName(KimTypeBo.to(role.getKimRoleType())));
 86  
                 //it is possible that the the kimTypeService is coming from a remote application 
 87  
                 // and therefore it can't be guarenteed that it is up and working, so using a try/catch to catch this possibility.
 88  
                 try {
 89  0
                     role.setDefinitions(kimTypeService.getAttributeDefinitions(role.getKimTypeId()));
 90  0
                 } catch (Exception ex) {
 91  0
                 LOG.warn("Not able to retrieve KimTypeService from remote system for KIM Type Id: " + role.getKimTypeId(), ex);
 92  0
             }
 93  
                 // when post again, it will need this during populate
 94  0
             role.setNewRolePrncpl(new KimDocumentRoleMember());
 95  0
             for (String key : role.getDefinitions().keySet()) {
 96  0
                     KimDocumentRoleQualifier qualifier = new KimDocumentRoleQualifier();
 97  
                     //qualifier.setQualifierKey(key);
 98  0
                         setAttrDefnIdForQualifier(qualifier,role.getDefinitions().get(key));
 99  0
                     role.getNewRolePrncpl().getQualifiers().add(qualifier);
 100  0
             }
 101  0
                 role.setAttributeEntry( getUiDocumentService().getAttributeEntries( role.getDefinitions() ) );
 102  0
                 }
 103  0
         }
 104  
         
 105  
     private void setAttrDefnIdForQualifier(KimDocumentRoleQualifier qualifier,AttributeDefinition definition) {
 106  0
             if (definition instanceof KimDataDictionaryAttributeDefinition) {
 107  0
                     qualifier.setKimAttrDefnId(((KimDataDictionaryAttributeDefinition)definition).getKimAttrDefnId());
 108  0
                     qualifier.refreshReferenceObject("kimAttribute");
 109  
             } else {
 110  0
                     qualifier.setKimAttrDefnId(((KimNonDataDictionaryAttributeDefinition)definition).getKimAttrDefnId());
 111  0
                     qualifier.refreshReferenceObject("kimAttribute");
 112  
 
 113  
             }
 114  0
     }
 115  
         private String getKimTypeServiceName (KimType kimType) {
 116  0
             String serviceName = kimType.getName();
 117  0
             if (StringUtils.isBlank(serviceName)) {
 118  0
                     serviceName = "kimTypeService";
 119  
             }
 120  0
             return serviceName;
 121  
 
 122  
         }
 123  
         
 124  
 }