1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kns.util; |
17 | |
|
18 | |
import java.lang.reflect.Method; |
19 | |
import java.security.GeneralSecurityException; |
20 | |
import java.util.ArrayList; |
21 | |
import java.util.HashMap; |
22 | |
import java.util.List; |
23 | |
|
24 | |
import org.apache.commons.lang.StringUtils; |
25 | |
import org.kuali.rice.kns.lookup.keyvalues.ApcValuesFinder; |
26 | |
import org.kuali.rice.kns.lookup.keyvalues.KeyValuesFinder; |
27 | |
import org.kuali.rice.kns.lookup.keyvalues.KimAttributeValuesFinder; |
28 | |
import org.kuali.rice.kns.lookup.keyvalues.PersistableBusinessObjectValuesFinder; |
29 | |
import org.kuali.rice.kns.service.KNSServiceLocator; |
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
@SuppressWarnings("unchecked") |
37 | 0 | public class ActionFormUtilMap extends HashMap { |
38 | |
private static final long serialVersionUID = 1L; |
39 | |
private boolean cacheValueFinderResults; |
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | |
public Object get(Object key) { |
47 | 0 | if (cacheValueFinderResults) { |
48 | 0 | if (super.containsKey(key)) { |
49 | |
|
50 | 0 | Object cachedObject = super.get(key); |
51 | 0 | return cachedObject; |
52 | |
} |
53 | |
} |
54 | 0 | String[] methodKey = StringUtils.split((String) key, KNSConstants.ACTION_FORM_UTIL_MAP_METHOD_PARM_DELIMITER); |
55 | |
|
56 | 0 | String methodToCall = methodKey[0]; |
57 | |
|
58 | |
|
59 | 0 | Object[] methodParms = new Object[methodKey.length - 1]; |
60 | 0 | Class[] methodParmsPrototype = new Class[methodKey.length - 1]; |
61 | 0 | for (int i=1;i<methodKey.length;i++) { |
62 | 0 | methodParms[i-1] = methodKey[i]; |
63 | 0 | methodParmsPrototype[i-1] = Object.class; |
64 | |
} |
65 | |
|
66 | 0 | Method method = null; |
67 | |
try { |
68 | 0 | method = ActionFormUtilMap.class.getMethod(methodToCall, methodParmsPrototype); |
69 | |
} |
70 | 0 | catch (SecurityException e) { |
71 | 0 | throw new RuntimeException("Unable to object handle on method given to ActionFormUtilMap: " + e.getMessage()); |
72 | |
} |
73 | 0 | catch (NoSuchMethodException e1) { |
74 | 0 | throw new RuntimeException("Unable to object handle on method given to ActionFormUtilMap: " + e1.getMessage()); |
75 | 0 | } |
76 | |
|
77 | 0 | Object methodValue = null; |
78 | |
try { |
79 | 0 | methodValue = method.invoke(this, methodParms); |
80 | |
} |
81 | 0 | catch (Exception e) { |
82 | 0 | throw new RuntimeException("Unable to invoke method " + methodToCall,e); |
83 | 0 | } |
84 | |
|
85 | 0 | if (cacheValueFinderResults) { |
86 | 0 | super.put(key, methodValue); |
87 | |
} |
88 | |
|
89 | 0 | return methodValue; |
90 | |
} |
91 | |
|
92 | |
|
93 | |
|
94 | |
|
95 | |
|
96 | |
|
97 | |
public Object getOptionsMap(Object key) { |
98 | 0 | List optionsList = new ArrayList(); |
99 | |
|
100 | 0 | if (StringUtils.isBlank((String) key)) { |
101 | 0 | return optionsList; |
102 | |
} |
103 | |
|
104 | |
|
105 | |
|
106 | |
|
107 | |
|
108 | 0 | key = StringUtils.replace((String) key, "|", "."); |
109 | |
|
110 | |
KeyValuesFinder finder; |
111 | |
try { |
112 | 0 | Class finderClass = Class.forName((String) key); |
113 | 0 | finder = (KeyValuesFinder) finderClass.newInstance(); |
114 | 0 | if (finder instanceof ApcValuesFinder) { |
115 | 0 | throw new IllegalArgumentException("Cannot currently use <apcSelect> in this form"); |
116 | |
} |
117 | |
|
118 | 0 | optionsList = finder.getKeyValues(); |
119 | |
} |
120 | 0 | catch (ClassNotFoundException e) { |
121 | 0 | throw new RuntimeException(e.getMessage()); |
122 | |
} |
123 | 0 | catch (InstantiationException e) { |
124 | 0 | throw new RuntimeException(e.getMessage()); |
125 | |
} |
126 | 0 | catch (IllegalAccessException e) { |
127 | 0 | throw new RuntimeException(e.getMessage()); |
128 | 0 | } |
129 | |
|
130 | 0 | return optionsList; |
131 | |
} |
132 | |
|
133 | |
|
134 | |
public Object getOptionsMap(Object key, Object boClass, Object keyAttribute, Object labelAttribute, Object includeKeyInLabel) { |
135 | 0 | return getOptionsMap(key, boClass, keyAttribute, labelAttribute, null, includeKeyInLabel ); |
136 | |
} |
137 | |
|
138 | |
public Object getOptionsMap(Object key, Object boClass, Object keyAttribute, Object labelAttribute, Object includeBlankRow, Object includeKeyInLabel) { |
139 | 0 | return getOptionsMap(key, boClass, keyAttribute, labelAttribute, includeBlankRow, includeKeyInLabel, null); |
140 | |
} |
141 | |
|
142 | |
|
143 | |
|
144 | |
|
145 | |
|
146 | |
|
147 | |
|
148 | |
|
149 | |
|
150 | |
|
151 | |
|
152 | |
|
153 | |
|
154 | |
|
155 | |
|
156 | |
|
157 | |
|
158 | |
|
159 | |
|
160 | |
public Object getOptionsMap(Object key, Object boClass, Object keyAttribute, Object labelAttribute, Object includeBlankRow, Object includeKeyInLabel, Object kimTypeId) { |
161 | 0 | List optionsList = new ArrayList(); |
162 | |
|
163 | 0 | if (StringUtils.isBlank((String) key)) { |
164 | 0 | return optionsList; |
165 | |
} |
166 | |
|
167 | |
|
168 | |
|
169 | |
|
170 | |
|
171 | 0 | key = StringUtils.replace((String) key, "|", "."); |
172 | |
|
173 | |
KeyValuesFinder finder; |
174 | |
try { |
175 | 0 | Class finderClass = Class.forName((String) key); |
176 | 0 | finder = (KeyValuesFinder) finderClass.newInstance(); |
177 | 0 | if (finder instanceof ApcValuesFinder) { |
178 | 0 | throw new IllegalArgumentException("Cannot currently use <apcSelect> in this form"); |
179 | 0 | } else if (finder instanceof PersistableBusinessObjectValuesFinder) { |
180 | 0 | String businessObjectClassName = StringUtils.replace((String) boClass, "|", "."); |
181 | 0 | Class businessObjectClass = Class.forName((String) businessObjectClassName); |
182 | 0 | ((PersistableBusinessObjectValuesFinder) finder).setBusinessObjectClass(businessObjectClass); |
183 | 0 | ((PersistableBusinessObjectValuesFinder) finder).setKeyAttributeName((String)keyAttribute); |
184 | 0 | ((PersistableBusinessObjectValuesFinder) finder).setLabelAttributeName((String)labelAttribute); |
185 | 0 | ((PersistableBusinessObjectValuesFinder) finder).setIncludeBlankRow(Boolean.parseBoolean((String)includeBlankRow)); |
186 | 0 | ((PersistableBusinessObjectValuesFinder) finder).setIncludeKeyInDescription(Boolean.parseBoolean((String)includeKeyInLabel)); |
187 | 0 | } else if (finder instanceof KimAttributeValuesFinder) { |
188 | 0 | if (kimTypeId == null) { |
189 | 0 | throw new RuntimeException("kimTypeId must be specified for KimAttributeValuesFinder"); |
190 | |
} |
191 | 0 | ((KimAttributeValuesFinder) finder).setKimTypeId(kimTypeId.toString()); |
192 | 0 | ((KimAttributeValuesFinder) finder).setKimAttributeName(keyAttribute.toString()); |
193 | |
} |
194 | |
|
195 | 0 | optionsList = finder.getKeyValues(); |
196 | |
} |
197 | 0 | catch (ClassNotFoundException e) { |
198 | 0 | throw new RuntimeException(e.getMessage(),e); |
199 | |
} |
200 | 0 | catch (InstantiationException e) { |
201 | 0 | throw new RuntimeException(e.getMessage(),e); |
202 | |
} |
203 | 0 | catch (IllegalAccessException e) { |
204 | 0 | throw new RuntimeException(e.getMessage(),e); |
205 | 0 | } |
206 | |
|
207 | 0 | return optionsList; |
208 | |
} |
209 | |
|
210 | |
|
211 | |
|
212 | |
|
213 | |
|
214 | |
|
215 | |
public String encryptValue(Object value) { |
216 | 0 | String encrypted = ""; |
217 | 0 | if (value != null) { |
218 | 0 | encrypted = value.toString(); |
219 | |
} |
220 | |
|
221 | |
try { |
222 | 0 | encrypted = KNSServiceLocator.getEncryptionService().encrypt(value); |
223 | |
} |
224 | 0 | catch (GeneralSecurityException e) { |
225 | 0 | throw new RuntimeException("Unable to encrypt value in action form: " + e.getMessage()); |
226 | 0 | } |
227 | |
|
228 | 0 | return encrypted; |
229 | |
} |
230 | |
|
231 | |
public void setCacheValueFinderResults(boolean cacheValueFinderResults) { |
232 | 0 | this.cacheValueFinderResults = cacheValueFinderResults; |
233 | 0 | } |
234 | |
|
235 | |
|
236 | |
} |