1 | |
package org.kuali.student.lum.lu.ui.course.client.widgets; |
2 | |
|
3 | |
import java.util.ArrayList; |
4 | |
import java.util.List; |
5 | |
|
6 | |
import org.kuali.student.common.assembly.data.QueryPath; |
7 | |
import org.kuali.student.common.dto.DtoConstants; |
8 | |
import org.kuali.student.common.dto.StatusInfo; |
9 | |
import org.kuali.student.common.rice.StudentIdentityConstants; |
10 | |
import org.kuali.student.common.ui.client.application.Application; |
11 | |
import org.kuali.student.common.ui.client.application.KSAsyncCallback; |
12 | |
import org.kuali.student.common.ui.client.application.ViewContext; |
13 | |
import org.kuali.student.common.ui.client.configurable.mvc.SectionTitle; |
14 | |
import org.kuali.student.common.ui.client.configurable.mvc.sections.VerticalSection; |
15 | |
import org.kuali.student.common.ui.client.mvc.Callback; |
16 | |
import org.kuali.student.common.ui.client.mvc.DataModel; |
17 | |
import org.kuali.student.common.ui.client.mvc.history.HistoryManager; |
18 | |
import org.kuali.student.common.ui.client.service.SecurityRpcService; |
19 | |
import org.kuali.student.common.ui.client.service.SecurityRpcServiceAsync; |
20 | |
import org.kuali.student.common.ui.client.widgets.KSButton; |
21 | |
import org.kuali.student.common.ui.client.widgets.KSButtonAbstract.ButtonStyle; |
22 | |
import org.kuali.student.common.ui.client.widgets.KSCheckBox; |
23 | |
import org.kuali.student.common.ui.client.widgets.KSLabel; |
24 | |
import org.kuali.student.common.ui.client.widgets.KSLightBox; |
25 | |
import org.kuali.student.common.ui.client.widgets.KSRadioButton; |
26 | |
import org.kuali.student.common.ui.client.widgets.StylishDropDown; |
27 | |
import org.kuali.student.common.ui.client.widgets.menus.KSMenuItemData; |
28 | |
import org.kuali.student.common.ui.client.widgets.notification.KSNotification; |
29 | |
import org.kuali.student.common.ui.client.widgets.notification.KSNotifier; |
30 | |
import org.kuali.student.common.ui.client.widgets.progress.BlockingTask; |
31 | |
import org.kuali.student.common.ui.client.widgets.progress.KSBlockingProgressIndicator; |
32 | |
import org.kuali.student.common.ui.shared.IdAttributes.IdType; |
33 | |
import org.kuali.student.lum.common.client.widgets.AppLocations; |
34 | |
import org.kuali.student.lum.lu.LUConstants; |
35 | |
import org.kuali.student.lum.lu.assembly.data.client.constants.orch.CreditCourseConstants; |
36 | |
import org.kuali.student.lum.lu.ui.course.client.service.CourseRpcService; |
37 | |
import org.kuali.student.lum.lu.ui.course.client.service.CourseRpcServiceAsync; |
38 | |
|
39 | |
import com.google.gwt.core.client.GWT; |
40 | |
import com.google.gwt.event.dom.client.ClickEvent; |
41 | |
import com.google.gwt.event.dom.client.ClickHandler; |
42 | |
import com.google.gwt.event.logical.shared.ValueChangeEvent; |
43 | |
import com.google.gwt.event.logical.shared.ValueChangeHandler; |
44 | |
import com.google.gwt.user.client.Window; |
45 | |
import com.google.gwt.user.client.rpc.AsyncCallback; |
46 | |
import com.google.gwt.user.client.ui.Anchor; |
47 | |
import com.google.gwt.user.client.ui.FlowPanel; |
48 | |
import com.google.gwt.user.client.ui.HorizontalPanel; |
49 | |
import com.google.gwt.user.client.ui.VerticalPanel; |
50 | |
import com.google.gwt.user.client.ui.Widget; |
51 | |
|
52 | 0 | public class CourseWorkflowActionList extends StylishDropDown { |
53 | |
private static final String MSG_GROUP = "course"; |
54 | |
|
55 | 0 | private static final BlockingTask processingTask = new BlockingTask("Processing State Change...."); |
56 | 0 | private static final CourseRpcServiceAsync courseServiceAsync = GWT.create(CourseRpcService.class); |
57 | |
|
58 | |
private KSMenuItemData modifyCourseActionItem; |
59 | |
private KSMenuItemData activateCourseActionItem; |
60 | |
private KSMenuItemData inactivateCourseActionItem; |
61 | |
private KSMenuItemData retireCourseActionItem; |
62 | |
private KSMenuItemData copyCourseActionItem; |
63 | |
|
64 | 0 | private final KSLightBox activateDialog = new KSLightBox(); |
65 | 0 | private VerticalSection activateSection = new VerticalSection(); |
66 | |
|
67 | |
private boolean isCurrentVersion; |
68 | 0 | private Boolean isInitialized = false; |
69 | |
private String courseId; |
70 | |
|
71 | 0 | private boolean hasAdminAccess = false; |
72 | |
|
73 | |
|
74 | |
|
75 | 0 | private final List<KSMenuItemData> items = new ArrayList<KSMenuItemData>(); |
76 | |
|
77 | |
public CourseWorkflowActionList(String label) { |
78 | 0 | super(label); |
79 | |
|
80 | 0 | this.setVisible(false); |
81 | 0 | this.addStyleName("KS-Workflow-DropDown"); |
82 | |
|
83 | 0 | } |
84 | |
|
85 | |
public CourseWorkflowActionList(String label, final ViewContext viewContext, final String modifyPath, DataModel model, final Callback<String> stateChangeCallback) { |
86 | 0 | super(label); |
87 | |
|
88 | 0 | this.setVisible(false); |
89 | 0 | this.addStyleName("KS-Workflow-DropDown"); |
90 | |
|
91 | 0 | init(viewContext, modifyPath, model, stateChangeCallback); |
92 | 0 | } |
93 | |
|
94 | |
public void init (final ViewContext viewContext, final String modifyPath, final DataModel model, final Callback<String> stateChangeCallback) { |
95 | |
|
96 | 0 | if (!this.isInitialized) { |
97 | 0 | buildActivateDialog(stateChangeCallback); |
98 | |
|
99 | 0 | this.isCurrentVersion = true; |
100 | |
|
101 | |
|
102 | 0 | modifyCourseActionItem = new KSMenuItemData(this.getMessage("cluModifyItem"), new ClickHandler(){ |
103 | |
|
104 | |
@Override |
105 | |
public void onClick(ClickEvent event) { |
106 | |
|
107 | 0 | checkAdminPermission("cluModifyItem", viewContext, modifyPath, model); |
108 | 0 | } |
109 | |
}); |
110 | |
|
111 | 0 | copyCourseActionItem = new KSMenuItemData(this.getMessage("cluCopyItem"), new ClickHandler(){ |
112 | |
@Override |
113 | |
public void onClick(ClickEvent event) { |
114 | 0 | if(hasCourseId(viewContext)){ |
115 | 0 | viewContext.setId((String)model.get(CreditCourseConstants.ID)); |
116 | 0 | viewContext.setIdType(IdType.COPY_OF_OBJECT_ID); |
117 | 0 | viewContext.getAttributes().remove(StudentIdentityConstants.DOCUMENT_TYPE_NAME); |
118 | |
} |
119 | 0 | HistoryManager.navigate(modifyPath, viewContext); |
120 | 0 | } |
121 | |
}); |
122 | |
|
123 | 0 | activateCourseActionItem = new KSMenuItemData(this.getMessage("cluActivateItem"), new ClickHandler(){ |
124 | |
|
125 | |
@Override |
126 | |
public void onClick(ClickEvent event) { |
127 | 0 | showStateDialog(DtoConstants.STATE_ACTIVE); |
128 | 0 | } |
129 | |
}); |
130 | |
|
131 | 0 | inactivateCourseActionItem = new KSMenuItemData(this.getMessage("cluInactivateItem") + " (Not Yet Implemented)", new ClickHandler(){ |
132 | |
|
133 | |
@Override |
134 | |
public void onClick(ClickEvent event) { |
135 | |
|
136 | 0 | } |
137 | |
}); |
138 | |
|
139 | 0 | retireCourseActionItem = new KSMenuItemData(this.getMessage("cluRetireItem"), new ClickHandler(){ |
140 | |
|
141 | |
@Override |
142 | |
public void onClick(ClickEvent event) { |
143 | 0 | if(hasCourseId(viewContext)){ |
144 | 0 | viewContext.setId(courseId); |
145 | 0 | viewContext.setIdType(IdType.OBJECT_ID); |
146 | |
} |
147 | |
|
148 | 0 | Application.navigate(AppLocations.Locations.COURSE_RETIRE.getLocation(), viewContext); |
149 | 0 | } |
150 | |
}); |
151 | |
} |
152 | |
|
153 | 0 | this.isInitialized = true; |
154 | 0 | } |
155 | |
|
156 | |
private void doModifyActionItem(ViewContext viewContext, String modifyPath, DataModel model){ |
157 | 0 | if(hasCourseId(viewContext)){ |
158 | 0 | viewContext.setId(getCourseVersionIndId(model)); |
159 | 0 | viewContext.setIdType(IdType.COPY_OF_OBJECT_ID); |
160 | 0 | viewContext.setAttribute(StudentIdentityConstants.DOCUMENT_TYPE_NAME, LUConstants.PROPOSAL_TYPE_COURSE_MODIFY); |
161 | |
} |
162 | |
|
163 | 0 | HistoryManager.navigate(modifyPath, viewContext); |
164 | 0 | } |
165 | |
|
166 | |
private void showStateDialog(String newState) { |
167 | 0 | if (newState.equals(DtoConstants.STATE_RETIRED)) { |
168 | |
|
169 | 0 | } else if (newState.equals(DtoConstants.STATE_ACTIVE)) { |
170 | |
|
171 | 0 | activateSection.setInstructions(getInstructions(newState)); |
172 | 0 | activateDialog.show(); |
173 | 0 | } else if (newState.equals(DtoConstants.STATE_SUSPENDED)) { |
174 | |
|
175 | |
} |
176 | |
|
177 | 0 | } |
178 | |
|
179 | |
private String getInstructions(String newState) { |
180 | 0 | if (isCurrentVersion){ |
181 | |
|
182 | 0 | return "Activating this course makes it viewable and available for scheduling."; |
183 | |
} else { |
184 | |
|
185 | 0 | return "Activate this course makes it viewable and available for scheduling. The previous version will be inactivated, and available for reference in the version history."; |
186 | |
} |
187 | |
} |
188 | |
|
189 | |
private void buildActivateDialog(final Callback<String> stateChangeCallback){ |
190 | 0 | FlowPanel panel = new FlowPanel(); |
191 | |
|
192 | 0 | activateDialog.setMaxHeight(200); |
193 | 0 | activateDialog.setMaxWidth(200); |
194 | |
|
195 | |
|
196 | 0 | activateSection = new VerticalSection(SectionTitle.generateH2Title("Activate Course")); |
197 | |
|
198 | 0 | panel.add((Widget)activateSection); |
199 | |
|
200 | 0 | KSButton activate = new KSButton("Activate",new ClickHandler(){ |
201 | |
public void onClick(ClickEvent event) { |
202 | |
|
203 | |
|
204 | |
|
205 | 0 | setCourseState(courseId, DtoConstants.STATE_ACTIVE, stateChangeCallback); |
206 | 0 | activateDialog.hide(); |
207 | 0 | } |
208 | |
}); |
209 | 0 | activateDialog.addButton(activate); |
210 | |
|
211 | 0 | KSButton cancel = new KSButton("Cancel", ButtonStyle.ANCHOR_LARGE_CENTERED, new ClickHandler(){ |
212 | |
public void onClick(ClickEvent event) { |
213 | 0 | activateDialog.hide(); |
214 | 0 | } |
215 | |
}); |
216 | 0 | activateDialog.addButton(cancel); |
217 | |
|
218 | 0 | activateDialog.setWidget(panel); |
219 | 0 | } |
220 | |
|
221 | |
private void buildModifyDialog(final ViewContext viewContext, final String modifyPath, final DataModel model){ |
222 | 0 | final KSLightBox modifyDialog = new KSLightBox(); |
223 | |
|
224 | |
|
225 | 0 | modifyDialog.setTitle((getMessage("modifyCourse"))); |
226 | |
|
227 | 0 | final VerticalPanel layout = new VerticalPanel(); |
228 | 0 | layout.addStyleName("ks-form-module-fields"); |
229 | |
|
230 | 0 | final KSButton continueButton = new KSButton(getMessage("continue")); |
231 | |
|
232 | 0 | modifyDialog.addButton(continueButton); |
233 | 0 | Anchor cancelLink = new Anchor("Cancel"); |
234 | 0 | cancelLink.addClickHandler(new ClickHandler(){ |
235 | |
public void onClick(ClickEvent event) { |
236 | 0 | modifyDialog.hide(); |
237 | 0 | } |
238 | |
}); |
239 | 0 | modifyDialog.addButton(cancelLink); |
240 | |
|
241 | 0 | HorizontalPanel titlePanel = new HorizontalPanel(); |
242 | 0 | KSLabel titleLabel = new KSLabel(getMessage("modifyCourseSubTitle")); |
243 | 0 | titleLabel.addStyleName("bold"); |
244 | 0 | titlePanel.add(titleLabel); |
245 | |
|
246 | 0 | layout.add(titlePanel); |
247 | |
|
248 | 0 | final KSRadioButton radioOptionModifyNoVersion = new KSRadioButton("modifyCreditCourseButtonGroup", getMessage("modifyCourseNoVersion")); |
249 | 0 | final KSRadioButton radioOptionModifyWithVersion = new KSRadioButton("modifyCreditCourseButtonGroup", getMessage("modifyCourseWithVersion")); |
250 | 0 | final KSCheckBox curriculumReviewOption = new KSCheckBox(getMessage("useCurriculumReview")); |
251 | |
|
252 | 0 | radioOptionModifyNoVersion.addValueChangeHandler(new ValueChangeHandler<Boolean>(){ |
253 | |
public void onValueChange(ValueChangeEvent<Boolean> event) { |
254 | 0 | if(event.getValue()){ |
255 | 0 | curriculumReviewOption.setEnabled(false); |
256 | 0 | curriculumReviewOption.setValue(false); |
257 | |
} |
258 | 0 | } |
259 | |
}); |
260 | 0 | radioOptionModifyNoVersion.setValue(true); |
261 | 0 | curriculumReviewOption.setEnabled(false); |
262 | |
|
263 | 0 | radioOptionModifyWithVersion.addValueChangeHandler(new ValueChangeHandler<Boolean>(){ |
264 | |
public void onValueChange(ValueChangeEvent<Boolean> event) { |
265 | 0 | if(event.getValue()){ |
266 | 0 | curriculumReviewOption.setEnabled(true); |
267 | |
} |
268 | 0 | } |
269 | |
}); |
270 | |
|
271 | 0 | continueButton.addClickHandler(new ClickHandler(){ |
272 | |
@Override |
273 | |
public void onClick(ClickEvent event) { |
274 | 0 | if (radioOptionModifyNoVersion.getValue()){ |
275 | 0 | viewContext.setId(courseId); |
276 | 0 | viewContext.setIdType(IdType.OBJECT_ID); |
277 | 0 | Application.navigate(AppLocations.Locations.COURSE_ADMIN_NO_VERSION.getLocation(), viewContext); |
278 | 0 | } else if (radioOptionModifyWithVersion.getValue()){ |
279 | 0 | checkLatestVersion(viewContext, modifyPath, model, curriculumReviewOption.getValue()); |
280 | |
|
281 | |
} |
282 | 0 | modifyDialog.hide(); |
283 | 0 | } |
284 | |
}); |
285 | |
|
286 | |
|
287 | |
|
288 | 0 | layout.add(radioOptionModifyNoVersion); |
289 | 0 | if(isCurrentVersion){ |
290 | 0 | layout.add(radioOptionModifyWithVersion); |
291 | 0 | layout.add(curriculumReviewOption); |
292 | |
} |
293 | 0 | modifyDialog.setWidget(layout); |
294 | 0 | modifyDialog.show(); |
295 | 0 | } |
296 | |
|
297 | |
|
298 | |
|
299 | |
|
300 | |
|
301 | |
|
302 | |
|
303 | |
|
304 | |
|
305 | |
|
306 | |
private void checkLatestVersion(final ViewContext viewContext, final String modifyPath, final DataModel model, final boolean reviewOption){ |
307 | 0 | String courseVerIndId = getCourseVersionIndId(model); |
308 | 0 | Long courseVersionSequence = getCourseVersionSequenceNumber(model); |
309 | |
|
310 | 0 | courseServiceAsync.isLatestVersion(courseVerIndId, courseVersionSequence, new AsyncCallback<Boolean>(){ |
311 | |
|
312 | |
public void onFailure(Throwable caught) { |
313 | 0 | KSNotifier.add(new KSNotification("Error determining latest version of course", false, 5000)); |
314 | 0 | } |
315 | |
|
316 | |
public void onSuccess(Boolean result) { |
317 | 0 | if (result){ |
318 | 0 | if (reviewOption){ |
319 | 0 | doModifyActionItem(viewContext, modifyPath, model); |
320 | |
} else { |
321 | 0 | if(hasCourseId(viewContext)){ |
322 | 0 | viewContext.setId(getCourseVersionIndId(model)); |
323 | 0 | viewContext.setIdType(IdType.COPY_OF_OBJECT_ID); |
324 | |
|
325 | 0 | viewContext.setAttribute(StudentIdentityConstants.DOCUMENT_TYPE_NAME, LUConstants.PROPOSAL_TYPE_COURSE_MODIFY_ADMIN); |
326 | |
} |
327 | |
|
328 | 0 | Application.navigate(AppLocations.Locations.COURSE_ADMIN.getLocation(), viewContext); |
329 | |
} |
330 | |
} else { |
331 | 0 | isCurrentVersion = false; |
332 | 0 | doUpdateCourseActionItems(model); |
333 | 0 | KSNotifier.add(new KSNotification("Error creating new version for course, this course is currently under modification.", false, 5000)); |
334 | |
} |
335 | 0 | } |
336 | |
}); |
337 | 0 | } |
338 | |
|
339 | |
|
340 | |
|
341 | |
|
342 | |
|
343 | |
|
344 | |
|
345 | |
|
346 | |
|
347 | |
|
348 | |
|
349 | |
public static void setCourseState(final String courseId, final String newState, final Callback<String> stateChangeCallback) { |
350 | 0 | KSBlockingProgressIndicator.addTask(processingTask); |
351 | |
|
352 | 0 | courseServiceAsync.changeState(courseId, newState, new KSAsyncCallback<StatusInfo>() { |
353 | |
|
354 | |
@Override |
355 | |
public void handleFailure(Throwable caught) { |
356 | 0 | Window.alert("Error Updating State: "+caught.getMessage()); |
357 | 0 | KSBlockingProgressIndicator.removeTask(processingTask); |
358 | 0 | stateChangeCallback.exec(null); |
359 | 0 | } |
360 | |
|
361 | |
@Override |
362 | |
public void onSuccess(StatusInfo result) { |
363 | 0 | KSBlockingProgressIndicator.removeTask(processingTask); |
364 | 0 | if (!result.getSuccess()){ |
365 | 0 | stateChangeCallback.exec(null); |
366 | |
} else { |
367 | 0 | stateChangeCallback.exec(newState); |
368 | |
} |
369 | 0 | } |
370 | |
}); |
371 | |
|
372 | 0 | } |
373 | |
|
374 | |
|
375 | |
|
376 | |
|
377 | |
|
378 | |
|
379 | |
|
380 | |
public void updateCourseActionItems(final DataModel cluModel) { |
381 | |
|
382 | |
|
383 | 0 | String courseVerIndId = getCourseVersionIndId(cluModel); |
384 | 0 | Long courseVersionSequence = getCourseVersionSequenceNumber(cluModel); |
385 | |
|
386 | 0 | if(courseVerIndId==null){ |
387 | 0 | isCurrentVersion = true; |
388 | 0 | doUpdateCourseActionItems(cluModel); |
389 | |
}else{ |
390 | 0 | courseServiceAsync.isLatestVersion(courseVerIndId, courseVersionSequence, new AsyncCallback<Boolean>(){ |
391 | |
public void onFailure(Throwable caught) { |
392 | 0 | KSNotifier.add(new KSNotification("Error determining latest version of course", false, 5000)); |
393 | 0 | } |
394 | |
|
395 | |
public void onSuccess(Boolean result) { |
396 | 0 | isCurrentVersion = result; |
397 | 0 | doUpdateCourseActionItems(cluModel); |
398 | 0 | } |
399 | |
}); |
400 | |
} |
401 | 0 | } |
402 | |
|
403 | |
private void doUpdateCourseActionItems(DataModel cluModel) { |
404 | |
|
405 | 0 | final String cluState = cluModel.get("state"); |
406 | 0 | courseId = cluModel.get(CreditCourseConstants.ID); |
407 | |
|
408 | 0 | items.clear(); |
409 | |
|
410 | 0 | String principalId = Application.getApplicationContext().getUserId(); |
411 | 0 | SecurityRpcServiceAsync securityRpc = GWT.create(SecurityRpcService.class); |
412 | |
|
413 | 0 | securityRpc.checkAdminPermission(principalId, "cluModifyItem", |
414 | 0 | new KSAsyncCallback<Boolean>() { |
415 | |
public void handleFailure(Throwable caught) { |
416 | |
|
417 | |
|
418 | 0 | setItems(getNonAdminItems(cluState)); |
419 | 0 | } |
420 | |
|
421 | |
@Override |
422 | |
public void onSuccess(Boolean result) { |
423 | |
|
424 | 0 | if (!result){ |
425 | 0 | setItems(getNonAdminItems(cluState)); |
426 | |
} else { |
427 | 0 | setItems(getAdminItems(cluState)); |
428 | |
} |
429 | |
|
430 | 0 | CourseWorkflowActionList.this.setEnabled(true); |
431 | 0 | if(CourseWorkflowActionList.this.isEmpty()) { |
432 | 0 | CourseWorkflowActionList.this.setVisible(false); |
433 | |
} |
434 | |
else{ |
435 | 0 | CourseWorkflowActionList.this.setVisible(true); |
436 | |
} |
437 | 0 | } |
438 | |
}); |
439 | 0 | } |
440 | |
|
441 | |
private List<KSMenuItemData> getNonAdminItems(String cluState){ |
442 | 0 | if (cluState.equals(DtoConstants.STATE_APPROVED)) { |
443 | 0 | items.add(modifyCourseActionItem); |
444 | 0 | items.add(activateCourseActionItem); |
445 | 0 | } else if (cluState.equals(DtoConstants.STATE_ACTIVE)) { |
446 | 0 | items.add(modifyCourseActionItem); |
447 | 0 | items.add(inactivateCourseActionItem); |
448 | 0 | } else if (cluState.equals(DtoConstants.STATE_SUSPENDED)) { |
449 | 0 | items.add(activateCourseActionItem); |
450 | 0 | } else if (cluState.equals(DtoConstants.STATE_RETIRED)){ |
451 | 0 | items.add(modifyCourseActionItem); |
452 | |
} |
453 | 0 | items.add(copyCourseActionItem); |
454 | 0 | return items; |
455 | |
} |
456 | |
|
457 | |
private List<KSMenuItemData> getAdminItems(String cluState){ |
458 | 0 | if (cluState.equals(DtoConstants.STATE_APPROVED)) { |
459 | 0 | items.add(modifyCourseActionItem); |
460 | 0 | items.add(activateCourseActionItem); |
461 | 0 | if (isCurrentVersion){ |
462 | 0 | items.add(retireCourseActionItem); |
463 | |
} |
464 | 0 | } else if (cluState.equals(DtoConstants.STATE_ACTIVE)) { |
465 | 0 | items.add(modifyCourseActionItem); |
466 | 0 | items.add(inactivateCourseActionItem); |
467 | 0 | items.add(retireCourseActionItem); |
468 | 0 | } else if (cluState.equals(DtoConstants.STATE_SUSPENDED)) { |
469 | 0 | items.add(activateCourseActionItem); |
470 | 0 | } else if (cluState.equals(DtoConstants.STATE_RETIRED)){ |
471 | 0 | items.add(modifyCourseActionItem); |
472 | 0 | } else if(cluState.equals(DtoConstants.STATE_SUPERSEDED)) { |
473 | 0 | items.add(modifyCourseActionItem); |
474 | |
} |
475 | 0 | items.add(copyCourseActionItem); |
476 | 0 | return items; |
477 | |
} |
478 | |
|
479 | |
public boolean isEmpty() { |
480 | 0 | return (items.size() == 0); |
481 | |
} |
482 | |
|
483 | |
public String getMessage(String courseMessageKey) { |
484 | 0 | String msg = Application.getApplicationContext().getMessage(MSG_GROUP, courseMessageKey); |
485 | 0 | if (msg == null) { |
486 | 0 | msg = courseMessageKey; |
487 | |
} |
488 | 0 | return msg; |
489 | |
} |
490 | |
|
491 | |
|
492 | |
|
493 | |
|
494 | |
|
495 | |
|
496 | |
|
497 | |
private boolean hasCourseId(ViewContext viewContext){ |
498 | 0 | return viewContext != null && viewContext.getId() != null && !viewContext.getId().isEmpty(); |
499 | |
} |
500 | |
|
501 | |
|
502 | |
|
503 | |
|
504 | |
|
505 | |
|
506 | |
|
507 | |
private String getCourseVersionIndId(DataModel courseModel){ |
508 | 0 | return (String)courseModel.get(CreditCourseConstants.VERSION_INFO + QueryPath.getPathSeparator() + CreditCourseConstants.VERSION_IND_ID); |
509 | |
} |
510 | |
|
511 | |
|
512 | |
|
513 | |
|
514 | |
|
515 | |
|
516 | |
|
517 | |
private Long getCourseVersionSequenceNumber(DataModel courseModel){ |
518 | 0 | return (Long)courseModel.get(CreditCourseConstants.VERSION_INFO + QueryPath.getPathSeparator() + CreditCourseConstants.VERSION_SEQ_NUMBER); |
519 | |
} |
520 | |
|
521 | |
private void checkAdminPermission(String screenComponent, final ViewContext viewContext, final String modifyPath, final DataModel model) { |
522 | 0 | String principalId = Application.getApplicationContext().getUserId(); |
523 | 0 | SecurityRpcServiceAsync securityRpc = GWT |
524 | |
.create(SecurityRpcService.class); |
525 | |
|
526 | 0 | securityRpc.checkAdminPermission(principalId, screenComponent, |
527 | 0 | new KSAsyncCallback<Boolean>() { |
528 | |
public void handleFailure(Throwable caught) { |
529 | |
|
530 | 0 | doModifyActionItem(viewContext, modifyPath, model); |
531 | 0 | } |
532 | |
|
533 | |
@Override |
534 | |
public void onSuccess(Boolean result) { |
535 | 0 | hasAdminAccess = result; |
536 | 0 | if (hasAdminAccess){ |
537 | |
|
538 | |
|
539 | |
|
540 | 0 | buildModifyDialog(viewContext, modifyPath, model); |
541 | |
} else { |
542 | |
|
543 | |
|
544 | 0 | checkLatestVersion(viewContext, modifyPath, model, true); |
545 | |
} |
546 | |
|
547 | |
|
548 | 0 | } |
549 | |
}); |
550 | 0 | } |
551 | |
} |