Coverage Report - org.kuali.student.lum.lu.ui.course.client.widgets.CourseWorkflowActionList
 
Classes in this File Line Coverage Branch Coverage Complexity
CourseWorkflowActionList
0%
0/144
0%
0/46
1.854
CourseWorkflowActionList$1
0%
0/3
N/A
1.854
CourseWorkflowActionList$10
0%
0/4
0%
0/2
1.854
CourseWorkflowActionList$11
0%
0/9
0%
0/4
1.854
CourseWorkflowActionList$12
0%
0/15
0%
0/6
1.854
CourseWorkflowActionList$13
0%
0/10
0%
0/2
1.854
CourseWorkflowActionList$14
0%
0/6
N/A
1.854
CourseWorkflowActionList$15
0%
0/11
0%
0/4
1.854
CourseWorkflowActionList$16
0%
0/8
0%
0/2
1.854
CourseWorkflowActionList$2
0%
0/7
0%
0/2
1.854
CourseWorkflowActionList$3
0%
0/3
N/A
1.854
CourseWorkflowActionList$4
0%
0/2
N/A
1.854
CourseWorkflowActionList$5
0%
0/6
0%
0/2
1.854
CourseWorkflowActionList$6
0%
0/4
N/A
1.854
CourseWorkflowActionList$7
0%
0/3
N/A
1.854
CourseWorkflowActionList$8
0%
0/3
N/A
1.854
CourseWorkflowActionList$9
0%
0/5
0%
0/2
1.854
 
 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  
     // Storing this list at multiple layers: here and in StylishDropDown.menu.items.  We need it here to test for empty
 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  
                     // TODO: use messages
 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  
                                                 // TODO: Inactivate
 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  
                     // TODO: create Retire dialog
 169  0
             } else if (newState.equals(DtoConstants.STATE_ACTIVE)) {                     
 170  
                     // TODO: use message e.g. activateCurrentInstr, activateModificationInstr                    
 171  0
                     activateSection.setInstructions(getInstructions(newState));                                    
 172  0
                 activateDialog.show();
 173  0
             } else if (newState.equals(DtoConstants.STATE_SUSPENDED)) {
 174  
                     // TODO: create Inactivate dialog
 175  
             }
 176  
             
 177  0
     }
 178  
         
 179  
     private String getInstructions(String newState) {            
 180  0
             if (isCurrentVersion){
 181  
                     // TODO: message
 182  0
                     return "Activating this course makes it viewable and available for scheduling.";
 183  
             } else { 
 184  
                     // TODO: message
 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  
             // TODO: use messages
 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  
                 //activateSection.updateModel(cluModel);
 203  
                 //set previous active to superseded
 204  
                 //set this version to active
 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  
             //Create a dialog for course selection
 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  
         //Check that this is the latest version with an async call and only show modify with version options if it is the latest
 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  
      * Do a latest version check, if successful, call the modify action else display an error message that the current
 299  
      * version of the selected course is under modification. 
 300  
      * 
 301  
      * @param viewContext
 302  
      * @param modifyPath
 303  
      * @param model
 304  
      * @param reviewOption
 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  
                             // FIXME: This needs to use a new workflow document type for admin modify with version
 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  
     // TODO: add Retire and Inactivate Dialogs
 340  
     
 341  
         /**
 342  
          * Use this method to call the {@link CourseRpcServiceAsync#changeState(String, String, com.google.gwt.user.client.rpc.AsyncCallback)
 343  
          * method, which will handle all related change state operations required for the course depending on the state being set.  
 344  
          *  
 345  
          * @param courseId
 346  
          * @param newState
 347  
          * @param stateChangeCallback The callback to execute to indicate if the state change call was successful.
 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  
          *  This depends heavily on {@link CourseStateUtil#setCourseState(String, String, Callback)}. 
 377  
          *  Changes here will affect assumptions made there.
 378  
           *
 379  
          */
 380  
     public void updateCourseActionItems(final DataModel cluModel) {
 381  
             
 382  
                 //First we need the model
 383  0
                 String courseVerIndId = getCourseVersionIndId(cluModel);
 384  0
                 Long courseVersionSequence = getCourseVersionSequenceNumber(cluModel);
 385  
                 //Do an async check if this is the current version
 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  
                                                 // Assume no admin access on failure
 417  
                                                 //doModifyActionItem(viewContext, modifyPath, model);
 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  
      * This checks the ViewContext passed in to determine if it contains a non-empty courseId
 494  
      * 
 495  
      * @return  true if view context contains non-empty courseId, false otherwise
 496  
      */
 497  
     private boolean hasCourseId(ViewContext viewContext){
 498  0
             return viewContext != null && viewContext.getId() != null && !viewContext.getId().isEmpty();
 499  
     }
 500  
 
 501  
     /**
 502  
      * Retrieves the version independent from the course data model
 503  
      * 
 504  
      * @param courseModel
 505  
      * @return version independent id of course
 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  
      * Retrieves the version sequence number from the course data model
 513  
      * 
 514  
      * @param courseModel
 515  
      * @return version sequence number id of course
 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  
                                                 // Assume no admin access on failure
 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  
                                                     //Admin users have the option to make modifications to the course administratively or via the
 538  
                                             //curriculum review process. Clicking on the "Modify Course" item will present the user with
 539  
                                             //a modify dialog to allow them to choose the method of modification.
 540  0
                                                     buildModifyDialog(viewContext, modifyPath, model);
 541  
                                     } else {
 542  
                                             //Non-admin users are only allowed to make modifications via proposal curriculum review process.
 543  
                                             //Clicking the "Modify Course" item will simply navigate user directly to modify course proposal screen.
 544  0
                                         checkLatestVersion(viewContext, modifyPath, model, true);
 545  
                                     }
 546  
 
 547  
 
 548  0
                                         }
 549  
                                 });
 550  0
         }
 551  
 }