UIPermissionInputSet.java

/*
 * Copyright (C) 2003-2007 eXo Platform SAS.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Affero General Public License
 * as published by the Free Software Foundation; either version 3
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see<http://www.gnu.org/licenses/>.
 */
package org.exoplatform.ecm.permission.info;

import org.exoplatform.ecm.webui.form.UIFormInputSetWithAction;
import org.exoplatform.services.jcr.access.PermissionType;
import org.exoplatform.webui.config.annotation.ComponentConfig;
import org.exoplatform.webui.event.Event;
import org.exoplatform.webui.event.EventListener;
import org.exoplatform.webui.form.UIForm;
import org.exoplatform.webui.form.UIFormStringInput;
import org.exoplatform.webui.form.input.UICheckBoxInput;

/**
 * Created by The eXo Platform SARL
 * Author : Tran The Trong
 *          trongtt@gmail.com
 * Jun 28, 2006
 */
@ComponentConfig(template = "classpath:groovy/ecm/webui/form/UIPermissionInputSet.gtmpl")
public class UIPermissionInputSet extends UIFormInputSetWithAction {

  final static public String FIELD_USERORGROUP = "userOrGroup";
  private String[] buttonActions_ = {"Save", "Reset"};
  private String primaryBtn_ = "Save";

  public UIPermissionInputSet(String name) throws Exception {
    super(name);
    initComponent(true);
  }
  private void initComponent(boolean hasPermissionCheckbox) throws Exception{
    setComponentConfig(getClass(), null);
    UIFormStringInput userGroup = new UIFormStringInput(FIELD_USERORGROUP, FIELD_USERORGROUP, null);
    userGroup.setReadOnly(true);
    addUIFormInput(userGroup);
    if (hasPermissionCheckbox) {
      for (String perm : new String[] { PermissionType.READ, PermissionType.ADD_NODE, PermissionType.REMOVE }) {
        UICheckBoxInput checkBoxInput = new UICheckBoxInput(perm, perm, false);
        addUIFormInput(checkBoxInput);
        checkBoxInput.setOnChange("OnChange");
      }
    }
    setActionInfo(FIELD_USERORGROUP, new String[] {"SelectUser", "SelectMember", "AddAny"});
  }
  public UIPermissionInputSet(String name, boolean hasPermissionCheckbox) throws Exception {
    super(name);
    initComponent(hasPermissionCheckbox);
  }
  public String[] getButtonActions() {
    return buttonActions_;
  }
  
  public void setButtonActions(String[] actions) {
    buttonActions_ = actions;
  }
  
  public String getPrimaryButtonAction() {
    return primaryBtn_;
  }
  
  public void setPrimaryButtonAction(String primaryBtn) {
    primaryBtn_ = primaryBtn;
  }
  
  static public class OnChangeActionListener extends EventListener<UIForm> {
    public void execute(Event<UIForm> event) throws Exception {
      UIForm permissionForm = event.getSource();
      UICheckBoxInput readCheckBox = permissionForm.getUICheckBoxInput(PermissionType.READ);
      boolean isAddNodeCheckBoxChecked = permissionForm.getUICheckBoxInput(PermissionType.ADD_NODE).isChecked();
      boolean isRemoveCheckBoxChecked = permissionForm.getUICheckBoxInput(PermissionType.REMOVE).isChecked();
      if (isAddNodeCheckBoxChecked || isRemoveCheckBoxChecked) {
        readCheckBox.setChecked(true);
      }
      event.getRequestContext().addUIComponentToUpdateByAjax(permissionForm);
    }
  }
}