001/** 002 * Copyright 2005-2016 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.rice.kim.rules.ui; 017 018import org.apache.commons.lang.StringUtils; 019import org.kuali.rice.core.api.util.RiceKeyConstants; 020import org.kuali.rice.kim.bo.ui.PersonDocumentRole; 021import org.kuali.rice.kim.document.IdentityManagementPersonDocument; 022import org.kuali.rice.kim.rule.event.ui.AddRoleEvent; 023import org.kuali.rice.kim.rule.ui.AddRoleRule; 024import org.kuali.rice.kns.rules.DocumentRuleBase; 025import org.kuali.rice.krad.util.GlobalVariables; 026import org.springframework.util.CollectionUtils; 027 028/** 029 * This is a description of what this class does - shyu don't forget to fill this in. 030 * 031 * @author Kuali Rice Team (rice.collab@kuali.org) 032 * 033 */ 034public class PersonDocumentRoleRule extends DocumentRuleBase implements AddRoleRule { 035 public static final String ERROR_PATH = "newRole.roleId"; 036 037 public boolean processAddRole(AddRoleEvent addRoleEvent) { 038 PersonDocumentRole newRole = addRoleEvent.getRole(); 039 IdentityManagementPersonDocument document = (IdentityManagementPersonDocument)addRoleEvent.getDocument(); 040 boolean rulePassed = true; 041// List<String> roleIds = KimImplServiceLocator.getUiDocumentService().getAssignableRoleIds(); 042 043 if (newRole == null || StringUtils.isBlank(newRole.getRoleId())) { 044 rulePassed = false; 045 GlobalVariables.getMessageMap().putError(ERROR_PATH, RiceKeyConstants.ERROR_EMPTY_ENTRY, new String[] {"Role"}); 046 047// } else if (roleIds.isEmpty() || !roleIds.contains(newRole.getRoleId())) { 048// errorMap.putError(ERROR_PATH, RiceKeyConstants.ERROR_ASSIGN_ROLE, new String[] {newRole.getRoleId()}); 049// rulePassed = false; 050 } else { 051 for (PersonDocumentRole role : document.getRoles()) { 052 if (role.getRoleId().equals(newRole.getRoleId())) { 053 rulePassed = false; 054 GlobalVariables.getMessageMap().putError(ERROR_PATH, RiceKeyConstants.ERROR_DUPLICATE_ENTRY, new String[] {"Role"}); 055 056 } 057 } 058 } 059 060 // KULRICE-7930 Check for field validation errors 061 if(!CollectionUtils.isEmpty(GlobalVariables.getMessageMap().getErrorMessagesForProperty("newRole.*", true))) { 062 rulePassed = false; 063 } 064 065 return rulePassed; 066 } 067 068}