Coverage Report - org.kuali.student.security.spring.KSDefaultUserDetailsService
 
Classes in this File Line Coverage Branch Coverage Complexity
KSDefaultUserDetailsService
0%
0/48
0%
0/18
2.222
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.security.spring;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 
 20  
 import org.kuali.rice.core.config.Config;
 21  
 import org.kuali.rice.core.config.ConfigContext;
 22  
 import org.kuali.rice.kim.bo.entity.dto.KimPrincipalInfo;
 23  
 import org.kuali.rice.kim.service.IdentityService;
 24  
 import org.kuali.rice.kim.service.RoleService;
 25  
 import org.kuali.student.common.rice.StudentIdentityConstants;
 26  
 import org.kuali.student.common.util.security.UserWithId;
 27  
 import org.springframework.security.GrantedAuthority;
 28  
 import org.springframework.security.userdetails.UserDetails;
 29  
 import org.springframework.security.userdetails.UserDetailsService;
 30  
 import org.springframework.security.userdetails.UsernameNotFoundException;
 31  
 import org.springframework.security.util.AuthorityUtils;
 32  
 
 33  
 
 34  
 /**
 35  
  * This is a description of what this class does - Rich don't forget to fill this in. 
 36  
  * 
 37  
  * @author Kuali Student Team
 38  
  *
 39  
  */
 40  0
 public class KSDefaultUserDetailsService implements UserDetailsService{
 41  
 
 42  
    
 43  0
     protected boolean enabled = true;
 44  0
     protected boolean nonlocked = true;
 45  
     
 46  0
     protected Config config = null;
 47  
     
 48  0
     protected IdentityService identityService = null; // This is added so we can get the correct principal ID
 49  0
     protected RoleService roleService = null;  // needed for future client overrides.
 50  
     
 51  
     
 52  
    
 53  
 
 54  
         public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
 55  
         String password;
 56  
         
 57  0
         if(username==null || username.equals("")){
 58  0
             throw new UsernameNotFoundException("Username cannot be null or empty");
 59  
         }
 60  
         
 61  
         // This is for the dummy KS Login
 62  0
         password = username;        
 63  
         
 64  0
         KimPrincipalInfo kimPrincipalInfo = null;
 65  0
         kimPrincipalInfo = identityService.getPrincipalByPrincipalName(username);                
 66  
         
 67  
         String userId;
 68  0
         if (null != kimPrincipalInfo) {
 69  0
             username = kimPrincipalInfo.getPrincipalName();
 70  0
             userId = kimPrincipalInfo.getPrincipalId();
 71  
         } else {
 72  
         // When a UsernameNotFoundException is thrown, spring security will proceed to the next AuthenticationProvider on the list.
 73  
         // When Rice is running and username is not found in KIM, we want authentication to stop and allow the user to enter the correct username.
 74  
         // to do this we need to throw a AccountStatusException and not UsernameNotFoundException.
 75  
             //System.out.println("kimPrincipalInfo is null ");
 76  0
             throw new KimUserNotFoundException("Invalid username or password");  
 77  
         }
 78  0
         UserWithId ksuser = new UserWithId(username, password, enabled, true, true, nonlocked, getGrantedAuthority(userId));
 79  0
         ksuser.setUserId(userId);                     
 80  
         
 81  0
         return ksuser;
 82  
     }
 83  
     
 84  
     protected GrantedAuthority[] getGrantedAuthority(String principalId){
 85  
             
 86  0
             String springRoles = "";
 87  
             
 88  0
             ArrayList<String> adminRoleIdList = new ArrayList<String>();
 89  0
         String adminRoleId = roleService.getRoleByName(StudentIdentityConstants.KS_NAMESPACE_CD, StudentIdentityConstants.KSCM_ADMIN_ROLE_NAME).getRoleId();
 90  0
         adminRoleIdList.add(adminRoleId);
 91  
         
 92  0
         ArrayList<String> ksUserRoleIdList = new ArrayList<String>();
 93  0
         String ksUserRoleId = roleService.getRoleByName(StudentIdentityConstants.KS_NAMESPACE_CD, StudentIdentityConstants.KSCM_USER_ROLE_NAME).getRoleId();
 94  0
         ksUserRoleIdList.add(ksUserRoleId);
 95  
         
 96  0
         if(roleService.principalHasRole(principalId, adminRoleIdList, null)){
 97  0
                 springRoles += "ROLE_KS_ADMIN";
 98  
         }
 99  0
         if(roleService.principalHasRole(principalId, ksUserRoleIdList, null)){
 100  0
                 if(!"".equals(springRoles)){
 101  0
                         springRoles += ", ";
 102  
                 }                
 103  0
                 springRoles += "ROLE_KS_USER";                
 104  
         }        
 105  
         // Enable backdoor login. The LUMMain.jsp has will actually display the login. 
 106  0
         if (enableBackdoorLogin()) {
 107  0
                 if(!"".equals(springRoles)){
 108  0
                         springRoles += ", ";
 109  
                 }
 110  0
                 springRoles += "ROLE_KS_BACKDOOR";
 111  
         }
 112  
         
 113  0
         return AuthorityUtils.commaSeparatedStringToAuthorityArray(springRoles);                
 114  
         
 115  
     }
 116  
     
 117  
     public Config getConfig() {
 118  0
             if(this.config == null){
 119  0
                     this.config = ConfigContext.getCurrentContextConfig();
 120  
             }
 121  0
                 return config;
 122  
         }
 123  
 
 124  
         public void setConfig(Config config) {
 125  0
                 this.config = config;
 126  0
         }
 127  
         
 128  
          public void setIdentityService(IdentityService identityService) {
 129  0
                 this.identityService = identityService;
 130  0
          }
 131  
             
 132  
          protected boolean enableBackdoorLogin() {
 133  0
              return "true".equalsIgnoreCase(getConfig().getProperty("enableKSBackdoorLogin"));
 134  
          }
 135  
                 
 136  
          public RoleService getRoleService() {            
 137  0
                  return roleService;
 138  
          }
 139  
 
 140  
         public void setRoleService(RoleService roleService) {
 141  0
                 this.roleService = roleService;
 142  0
         }
 143  
         
 144  
         public IdentityService getIdentityService() {
 145  0
                 return identityService;
 146  
         }
 147  
 }