Package org.olat.admin.policy

Source Code of org.olat.admin.policy.PolicyController

/**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); <br>
* you may not use this file except in compliance with the License.<br>
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing,<br>
* software distributed under the License is distributed on an "AS IS" BASIS, <br>
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
* See the License for the specific language governing permissions and <br>
* limitations under the License.
* <p>
* Copyright (c) since 2004 at Multimedia- & E-Learning Services (MELS),<br>
* University of Zurich, Switzerland.
* <p>
*/

package org.olat.admin.policy;

import java.util.List;

import org.olat.basesecurity.ManagerFactory;
import org.olat.basesecurity.Policy;
import org.olat.basesecurity.SecurityGroup;
import org.olat.core.gui.UserRequest;
import org.olat.core.gui.components.Component;
import org.olat.core.gui.components.table.BaseTableDataModelWithoutFilter;
import org.olat.core.gui.components.table.ColumnDescriptor;
import org.olat.core.gui.components.table.DefaultColumnDescriptor;
import org.olat.core.gui.components.table.TableController;
import org.olat.core.gui.components.table.TableDataModel;
import org.olat.core.gui.components.table.TableGuiConfiguration;
import org.olat.core.gui.control.Controller;
import org.olat.core.gui.control.ControllerEventListener;
import org.olat.core.gui.control.DefaultController;
import org.olat.core.gui.control.Event;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.gui.translator.PackageTranslator;
import org.olat.core.gui.translator.Translator;
import org.olat.core.id.Identity;
import org.olat.core.util.Util;
import org.olat.resource.OLATResource;

/**
*
* Description:<br>
* TODO: Class Description for PolicyController
*
*/
public class PolicyController extends DefaultController implements ControllerEventListener {
  private static final String PACKAGE = Util.getPackageName(PolicyController.class);

  private Translator translator;
  private TableController tableCtr;
 
 
  /**
   * caller of this constructor must make sure only olat admins come here
   *
   * @param ureq
   * @param wControl
   * @param identity
   */
  public PolicyController(UserRequest ureq, WindowControl wControl, Identity identity) {
    super(wControl);
    this.translator = new PackageTranslator(PACKAGE, ureq.getLocale());

    final List entries = ManagerFactory.getManager().getPoliciesOfIdentity(identity);
    TableDataModel tdm = new PolicyTableDataModel(entries);
   
    TableGuiConfiguration tableConfig = new TableGuiConfiguration();
    if (tableCtr != null) tableCtr.dispose();
    tableCtr = new TableController(tableConfig, ureq, getWindowControl(), translator, this);
    tableCtr.addColumnDescriptor(new DefaultColumnDescriptor("table.header.secgroup", 0, null, ureq.getLocale(), ColumnDescriptor.ALIGNMENT_RIGHT));
    tableCtr.addColumnDescriptor(new DefaultColumnDescriptor("table.header.policyimpl", 1, null, ureq.getLocale()));
    tableCtr.addColumnDescriptor(new DefaultColumnDescriptor("table.header.resourceimplkey", 2, null, ureq.getLocale(), ColumnDescriptor.ALIGNMENT_RIGHT));
    tableCtr.addColumnDescriptor(new DefaultColumnDescriptor("table.header.resourceimpltype", 3, null, ureq.getLocale()));
    tableCtr.setTableDataModel(tdm);
   
    setInitialComponent(tableCtr.getInitialComponent());
  }

  /**
   * @see org.olat.core.gui.control.DefaultController#event(org.olat.core.gui.UserRequest, org.olat.core.gui.components.Component, org.olat.core.gui.control.Event)
   */
  public void event(UserRequest ureq, Component source, Event event) {
    // no component events to listen to
  }

  /**
   * @see org.olat.core.gui.control.DefaultController#event(org.olat.core.gui.UserRequest, org.olat.core.gui.control.Controller, org.olat.core.gui.control.Event)
   */
  public void event(UserRequest ureq, Controller source, Event event) {
    // no component events to listen to
  }
 
  /**
   *
   * @see org.olat.core.gui.control.DefaultController#doDispose(boolean)
   */
  protected void doDispose() {
    if (tableCtr != null) {
      tableCtr.dispose();
      tableCtr = null;
    }

  }

}


class PolicyTableDataModel extends BaseTableDataModelWithoutFilter {
  private List entries;

  protected PolicyTableDataModel(List entries) {
    this.entries = entries;
  }
 
  public int getColumnCount() {
    // group key, permission, resource
    return 4;
  }

  public int getRowCount() {
    return entries.size();
  }

  public final Object getValueAt(int row, int col) {
    Object[] o = (Object[])entries.get(row);
    Object co = o[(col== 3? 2: col)];
    switch(col) {
      case 0: // secgr
        SecurityGroup sg = (SecurityGroup)co;
        return sg.getKey(); //"key:"+sg.getKey()+" ("+sg.getCreationDate()+")";
      case 1: // permission
        Policy po = (Policy)co;
        String perm = po.getPermission();
        return perm;
      case 2:
        OLATResource or = (OLATResource)co;
        return or.getResourceableId();
      case 3:
        OLATResource ore = (OLATResource)co;
        return ore.getResourceableTypeName();
    }
    return co.toString();
  }
}
TOP

Related Classes of org.olat.admin.policy.PolicyController

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.