1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.util;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.kuali.rice.coreservice.framework.CoreFrameworkServiceLocator;
20 import org.kuali.rice.kim.api.identity.Person;
21 import org.kuali.rice.kim.api.services.KimApiServiceLocator;
22 import org.kuali.rice.krad.data.platform.MaxValueIncrementerFactory;
23 import org.kuali.rice.krad.service.KRADServiceLocator;
24 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
25 import org.kuali.rice.krad.service.KualiModuleService;
26 import org.kuali.rice.krad.service.ModuleService;
27 import org.kuali.rice.krad.util.GlobalVariables;
28
29 import javax.sql.DataSource;
30 import java.util.ArrayList;
31 import java.util.Arrays;
32 import java.util.Date;
33 import java.util.List;
34 import java.util.Map;
35
36
37
38
39
40
41
42 public class ExpressionFunctions {
43
44
45
46
47
48
49
50
51
52 public static boolean isAssignableFrom(Class<?> assignableClass, Class<?> objectClass) {
53 return assignableClass.isAssignableFrom(objectClass);
54 }
55
56
57
58
59
60
61
62 public static boolean empty(Object value) {
63 return (value == null) || (StringUtils.isBlank(value.toString()));
64 }
65
66
67
68
69
70
71
72 public static boolean emptyList(List<?> list) {
73 return (list == null) || list.isEmpty();
74 }
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90 public static boolean listContains(List<?> list, Object[] values) {
91 if (list != null && values != null && values.length > 0 && !list.isEmpty()) {
92
93 if (list.get(0) instanceof String && !(values[0] instanceof String)) {
94 String[] stringValues = new String[values.length];
95 for (int i = 0; i < values.length; i++) {
96 stringValues[i] = values[i].toString();
97 }
98 return list.containsAll(Arrays.asList(stringValues));
99 } else if (list.get(0) instanceof Date && values[0] instanceof String) {
100
101 return false;
102 } else if (!(list.get(0) instanceof String) && values[0] instanceof String) {
103
104 List<String> stringList = new ArrayList<String>();
105 for (Object value : list) {
106 stringList.add(value.toString());
107 }
108 return stringList.containsAll(Arrays.asList(values));
109 } else {
110
111 return list.containsAll(Arrays.asList(values));
112 }
113 }
114
115
116 return false;
117
118 }
119
120
121
122
123
124
125
126 public static String getName(Class<?> clazz) {
127 if (clazz == null) {
128 return "";
129 } else {
130 return clazz.getName();
131 }
132 }
133
134
135
136
137
138
139
140
141
142 public static String getParam(String namespaceCode, String componentCode, String parameterName) {
143 return CoreFrameworkServiceLocator.getParameterService().getParameterValueAsString(namespaceCode, componentCode,
144 parameterName);
145 }
146
147
148
149
150
151
152
153
154
155
156 public static Boolean getParamAsBoolean(String namespaceCode, String componentCode, String parameterName) {
157 return CoreFrameworkServiceLocator.getParameterService().getParameterValueAsBoolean(namespaceCode,
158 componentCode, parameterName);
159 }
160
161
162
163
164
165
166
167
168 public static boolean hasPerm(String namespaceCode, String permissionName) {
169 Person user = GlobalVariables.getUserSession().getPerson();
170
171 return KimApiServiceLocator.getPermissionService().hasPermission(user.getPrincipalId(), namespaceCode,
172 permissionName);
173 }
174
175
176
177
178
179
180
181
182
183
184
185 public static boolean hasPermDtls(String namespaceCode, String permissionName,
186 Map<String, String> permissionDetails, Map<String, String> roleQualifiers) {
187 Person user = GlobalVariables.getUserSession().getPerson();
188
189 return KimApiServiceLocator.getPermissionService().isAuthorized(user.getPrincipalId(), namespaceCode,
190 permissionName, roleQualifiers);
191 }
192
193
194
195
196
197
198
199
200
201
202
203
204 public static boolean hasPermTmpl(String namespaceCode, String templateName, Map<String, String> permissionDetails,
205 Map<String, String> roleQualifiers) {
206 Person user = GlobalVariables.getUserSession().getPerson();
207
208 return KimApiServiceLocator.getPermissionService().isAuthorizedByTemplate(user.getPrincipalId(), namespaceCode,
209 templateName, permissionDetails, roleQualifiers);
210 }
211
212
213
214
215
216
217
218 public static Long sequence(String sequenceName) {
219 DataSource dataSource = KRADServiceLocator.getKradApplicationDataSource();
220 return Long.valueOf(MaxValueIncrementerFactory.getIncrementer(dataSource, sequenceName).nextLongValue());
221 }
222
223
224
225
226
227
228
229 public static String getDataObjectKey(String dataObjectClassName) {
230
231 if (StringUtils.isBlank(dataObjectClassName)) {
232 throw new RuntimeException("getDataObjectKey SpringEL function failed because the class name was blank");
233 }
234
235 Class dataObjectClass = null;
236
237 try {
238 dataObjectClass = Class.forName(dataObjectClassName);
239 } catch (ClassNotFoundException e) {
240 throw new RuntimeException(
241 "getDataObjectKey SpringEL function failed when trying to find class " + dataObjectClassName, e);
242 }
243
244
245 List<String> pkPropertyNames = KRADServiceLocatorWeb.getLegacyDataAdapter().listPrimaryKeyFieldNames(dataObjectClass);
246
247
248 if (pkPropertyNames != null && !pkPropertyNames.isEmpty()) {
249 return pkPropertyNames.get(0);
250 }
251
252
253 KualiModuleService kualiModuleService = KRADServiceLocatorWeb.getKualiModuleService();
254 ModuleService moduleService = kualiModuleService.getResponsibleModuleService(dataObjectClass);
255
256
257 List<List<String>> altKeys = null;
258 if (moduleService != null) {
259 altKeys = moduleService.listAlternatePrimaryKeyFieldNames(dataObjectClass);
260 }
261
262 if (altKeys != null && !altKeys.isEmpty()) {
263 for (List<String> list : altKeys) {
264 if (list != null && !list.isEmpty()) {
265
266 return list.get(0);
267 }
268 }
269 }
270
271 return null;
272 }
273 }