1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.web.struts.action; |
17 | |
|
18 | |
import javax.servlet.http.HttpServletRequest; |
19 | |
import javax.servlet.http.HttpServletResponse; |
20 | |
|
21 | |
import org.apache.commons.lang.StringUtils; |
22 | |
import org.apache.struts.action.ActionForm; |
23 | |
import org.apache.struts.action.ActionForward; |
24 | |
import org.apache.struts.action.ActionMapping; |
25 | |
import org.kuali.rice.core.util.RiceConstants; |
26 | |
import org.kuali.rice.core.util.RiceKeyConstants; |
27 | |
import org.kuali.rice.kim.bo.Role; |
28 | |
import org.kuali.rice.kim.bo.types.dto.KimTypeInfo; |
29 | |
import org.kuali.rice.kim.lookup.KimTypeLookupableHelperServiceImpl; |
30 | |
import org.kuali.rice.kim.service.*; |
31 | |
import org.kuali.rice.kim.service.support.KimRoleTypeService; |
32 | |
import org.kuali.rice.kim.service.support.KimTypeService; |
33 | |
import org.kuali.rice.kim.util.KimCommonUtilsInternal; |
34 | |
import org.kuali.rice.kim.web.struts.form.IdentityManagementDocumentFormBase; |
35 | |
import org.kuali.rice.kns.util.GlobalVariables; |
36 | |
import org.kuali.rice.kns.util.KNSConstants; |
37 | |
import org.kuali.rice.kns.web.struts.action.KualiTransactionalDocumentActionBase; |
38 | |
import org.kuali.rice.kns.web.struts.form.KualiDocumentFormBase; |
39 | |
import org.kuali.rice.kns.web.struts.form.KualiTableRenderFormMetadata; |
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | 0 | abstract public class IdentityManagementDocumentActionBase extends KualiTransactionalDocumentActionBase { |
47 | |
|
48 | |
protected static final String CHANGE_MEMBER_TYPE_CODE_METHOD_TO_CALL = "changeMemberTypeCode"; |
49 | |
protected static final String CHANGE_NAMESPACE_METHOD_TO_CALL = "changeNamespace"; |
50 | |
|
51 | |
protected IdentityService identityService; |
52 | |
protected ResponsibilityService responsibilityService; |
53 | |
protected UiDocumentService uiDocumentService; |
54 | |
|
55 | |
|
56 | |
|
57 | |
|
58 | |
|
59 | |
|
60 | |
|
61 | |
@Override |
62 | |
public ActionForward performLookup(ActionMapping mapping, ActionForm form, |
63 | |
HttpServletRequest request, HttpServletResponse response) |
64 | |
throws Exception { |
65 | 0 | ActionForward forward = super.performLookup(mapping, form, request, response); |
66 | 0 | String path = forward.getPath(); |
67 | |
|
68 | 0 | forward.setPath(KimCommonUtilsInternal.getPathWithKimContext(path, getActionName())); |
69 | 0 | return forward; |
70 | |
} |
71 | |
|
72 | |
protected abstract String getActionName(); |
73 | |
|
74 | |
protected IdentityService getIdentityService() { |
75 | 0 | if ( identityService == null ) { |
76 | 0 | identityService = KIMServiceLocator.getIdentityService(); |
77 | |
} |
78 | 0 | return identityService; |
79 | |
} |
80 | |
|
81 | |
protected ResponsibilityService getResponsibilityService() { |
82 | 0 | if ( responsibilityService == null ) { |
83 | 0 | responsibilityService = KIMServiceLocator.getResponsibilityService(); |
84 | |
} |
85 | 0 | return responsibilityService; |
86 | |
} |
87 | |
|
88 | |
protected UiDocumentService getUiDocumentService() { |
89 | 0 | if ( uiDocumentService == null ) { |
90 | 0 | uiDocumentService = KIMServiceLocatorInternal.getUiDocumentService(); |
91 | |
} |
92 | 0 | return uiDocumentService; |
93 | |
} |
94 | |
|
95 | |
@Override |
96 | |
protected String getReturnLocation(HttpServletRequest request, ActionMapping mapping){ |
97 | 0 | String returnLocation = super.getReturnLocation(request, mapping); |
98 | 0 | return KimCommonUtilsInternal.getPathWithKimContext(returnLocation, getActionName()); |
99 | |
} |
100 | |
|
101 | |
@Override |
102 | |
protected ActionForward returnToSender(HttpServletRequest request, ActionMapping mapping, KualiDocumentFormBase form) { |
103 | 0 | ActionForward dest = null; |
104 | 0 | if (form.isReturnToActionList()) { |
105 | 0 | String workflowBase = getKualiConfigurationService().getPropertyString(KNSConstants.WORKFLOW_URL_KEY); |
106 | 0 | String actionListUrl = workflowBase + "/ActionList.do"; |
107 | |
|
108 | 0 | dest = new ActionForward(actionListUrl, true); |
109 | 0 | } else if (StringUtils.isNotBlank(form.getBackLocation())){ |
110 | 0 | dest = new ActionForward(form.getBackLocation(), true); |
111 | |
} else { |
112 | 0 | dest = mapping.findForward(KNSConstants.MAPPING_PORTAL); |
113 | 0 | ActionForward newDest = new ActionForward(); |
114 | |
|
115 | 0 | KimCommonUtilsInternal.copyProperties(newDest, dest); |
116 | 0 | newDest.setPath(getApplicationBaseUrl()); |
117 | 0 | return newDest; |
118 | |
} |
119 | |
|
120 | 0 | setupDocumentExit(); |
121 | 0 | return dest; |
122 | |
} |
123 | |
|
124 | |
protected ActionForward getBasePathForward(HttpServletRequest request, ActionForward forward){ |
125 | 0 | ActionForward newDest = new ActionForward(); |
126 | 0 | KimCommonUtilsInternal.copyProperties(newDest, forward); |
127 | 0 | newDest.setPath(getApplicationBaseUrl()); |
128 | 0 | return newDest; |
129 | |
} |
130 | |
|
131 | |
|
132 | |
|
133 | |
|
134 | |
|
135 | |
public ActionForward switchToPage(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
136 | 0 | IdentityManagementDocumentFormBase idmForm = (IdentityManagementDocumentFormBase) form; |
137 | |
|
138 | 0 | KualiTableRenderFormMetadata memberTableMetadata = idmForm.getMemberTableMetadata(); |
139 | 0 | memberTableMetadata.jumpToPage(memberTableMetadata.getSwitchToPageNumber(), idmForm.getMemberRows().size(), idmForm.getRecordsPerPage()); |
140 | 0 | memberTableMetadata.setColumnToSortIndex(memberTableMetadata.getPreviouslySortedColumnIndex()); |
141 | 0 | return mapping.findForward(RiceConstants.MAPPING_BASIC); |
142 | |
} |
143 | |
|
144 | |
protected void applyPagingAndSortingFromPreviousPageView(IdentityManagementDocumentFormBase idmForm) { |
145 | 0 | KualiTableRenderFormMetadata memberTableMetadata = idmForm.getMemberTableMetadata(); |
146 | |
|
147 | 0 | memberTableMetadata.jumpToPage(memberTableMetadata.getViewedPageNumber(), idmForm.getMemberRows().size(), idmForm.getRecordsPerPage()); |
148 | 0 | } |
149 | |
|
150 | |
protected boolean validateRole( String roleId, Role role, String propertyName, String message){ |
151 | 0 | if ( role == null ) { |
152 | 0 | GlobalVariables.getMessageMap().putError(propertyName, RiceKeyConstants.ERROR_INVALID_ROLE, roleId ); |
153 | 0 | return false; |
154 | |
} |
155 | 0 | KimTypeInfo typeInfo = KIMServiceLocatorWeb.getTypeInfoService().getKimType(role.getKimTypeId()); |
156 | |
|
157 | 0 | if(KimTypeLookupableHelperServiceImpl.hasDerivedRoleTypeService(typeInfo)){ |
158 | 0 | GlobalVariables.getMessageMap().putError(propertyName, RiceKeyConstants.ERROR_CANT_ADD_DERIVED_ROLE, message); |
159 | 0 | return false; |
160 | |
} |
161 | 0 | return true; |
162 | |
} |
163 | |
|
164 | |
public ActionForward changeNamespace(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
165 | 0 | return refresh(mapping, form, request, response); |
166 | |
} |
167 | |
|
168 | |
protected KimTypeService getKimTypeService( KimTypeInfo typeInfo ) { |
169 | 0 | String serviceName = typeInfo.getKimTypeServiceName(); |
170 | 0 | if ( StringUtils.isNotBlank(serviceName) ) { |
171 | |
try { |
172 | 0 | KimTypeService service = (KimTypeService) KIMServiceLocatorInternal.getService(serviceName); |
173 | 0 | if ( service != null && service instanceof KimRoleTypeService ) { |
174 | 0 | return (KimRoleTypeService)service; |
175 | |
} else { |
176 | 0 | return (KimRoleTypeService) KIMServiceLocatorInternal.getService("kimNoMembersRoleTypeService"); |
177 | |
} |
178 | 0 | } catch ( Exception ex ) { |
179 | |
|
180 | 0 | return (KimRoleTypeService) KIMServiceLocatorInternal.getService("kimNoMembersRoleTypeService"); |
181 | |
} |
182 | |
} |
183 | 0 | return null; |
184 | |
} |
185 | |
|
186 | |
} |