/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kfs.sec.businessobject.inquiry; import java.util.HashMap; import java.util.Map; import java.util.Properties; import org.apache.commons.lang.StringUtils; import org.kuali.kfs.sec.SecPropertyConstants; import org.kuali.kfs.sec.businessobject.SecurityModelDefinition; import org.kuali.kfs.sys.KFSConstants; import org.kuali.kfs.sys.businessobject.inquiry.KfsInquirableImpl; import org.kuali.rice.core.api.membership.MemberType; import org.kuali.rice.kim.api.KimConstants; import org.kuali.rice.kim.api.identity.Person; import org.kuali.rice.kim.framework.group.GroupEbo; import org.kuali.rice.kim.framework.role.RoleEbo; import org.kuali.rice.kns.lookup.HtmlData; import org.kuali.rice.krad.bo.BusinessObject; import org.kuali.rice.krad.util.KRADConstants; import org.kuali.rice.krad.util.ObjectUtils; import org.kuali.rice.krad.util.UrlFactory; /** * Sets inquiry for member name based on type */ public class SecurityModelMemberInquirable extends KfsInquirableImpl { /** * @see org.kuali.kfs.sys.businessobject.inquiry.KfsInquirableImpl#getInquiryUrl(org.kuali.rice.krad.bo.BusinessObject, java.lang.String, boolean) */ @Override public HtmlData getInquiryUrl(BusinessObject businessObject, String attributeName, boolean forceInquiry) { if (SecPropertyConstants.MEMBER_ID.equals(attributeName)) { Properties parameters = new Properties(); parameters.put(KRADConstants.DISPATCH_REQUEST_PARAMETER, KFSConstants.START_METHOD); Map<String, String> fieldList = new HashMap<String, String>(); String memberId = (String) ObjectUtils.getPropertyValue(businessObject, SecPropertyConstants.MEMBER_ID); String memberTypeCode = (String) ObjectUtils.getPropertyValue(businessObject, SecPropertyConstants.MEMBER_TYPE_CODE); if (StringUtils.isNotBlank(memberId) && StringUtils.isNotBlank(memberTypeCode)) { if (MemberType.ROLE.getCode().equals(memberTypeCode)) { parameters.put(KRADConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, RoleEbo.class.getName()); parameters.put(KimConstants.PrimaryKeyConstants.ROLE_ID, memberId); fieldList.put(KimConstants.PrimaryKeyConstants.ROLE_ID, memberId.toString()); } else if (MemberType.GROUP.getCode().equals(memberTypeCode)) { parameters.put(KRADConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, GroupEbo.class.getName()); parameters.put(KimConstants.PrimaryKeyConstants.GROUP_ID, memberId); fieldList.put(KimConstants.PrimaryKeyConstants.GROUP_ID, memberId.toString()); } else { parameters.put(KRADConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, Person.class.getName()); parameters.put(KimConstants.PrimaryKeyConstants.PRINCIPAL_ID, memberId); fieldList.put(KimConstants.PrimaryKeyConstants.PRINCIPAL_ID, memberId.toString()); } return getHyperLink(SecurityModelDefinition.class, fieldList, UrlFactory.parameterizeUrl(KRADConstants.INQUIRY_ACTION, parameters)); } } return super.getInquiryUrl(businessObject, attributeName, forceInquiry); } }