Package org.olat.catalog.ui

Source Code of org.olat.catalog.ui.CatalogTreeModel

/**
* 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) 2008 at BPS Bildungsportal Sachsen GmbH
* <p>
*/
package org.olat.catalog.ui;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.olat.catalog.CatalogEntry;
import org.olat.core.gui.components.tree.GenericTreeModel;
import org.olat.core.gui.components.tree.GenericTreeNode;

/**
* Description:<br>
* The catalog tree model implements an old-school selection tree model to move
* or insert a catalog entry into a catalog. Dependin on your catalog size and
* your browser it might be slow. In the ajax mode the new ajax version shold be
* used.
* <p>
* Initial Date: 28.05.2008 <br>
*
* @author BPS
*/
public class CatalogTreeModel extends GenericTreeModel {

  private Map<Long, GenericTreeNode> entryMap = new HashMap<Long, GenericTreeNode>();
  private CatalogEntry entryToMove;
  private List<CatalogEntry> ownedEntries;
  private final String chooseableTitle;

  /**
   * Constructor
   *
   * @param catEntryList The list of all entries, preloaded with one fetch
   * @param entryToMove The entry to be moved or NULL to just select a catalog category
   * @param ownedEntries A list of catalog categories that are manageable by the
   *          current user or NULL if no such check should be performed
   */
  public CatalogTreeModel(List<CatalogEntry> catEntryList, CatalogEntry entryToMove, List<CatalogEntry> ownedEntries) {
    this.entryToMove = entryToMove;
    this.ownedEntries = ownedEntries;
    chooseableTitle = ""; // trans.translate("catalog.tree.choosable.title");
    // otherwise the tree is confusing
    setRootNode(buildTree(catEntryList));
  }

  /**
   * Build a tree node from the given category entry
   * @param catEntry
   * @return
   */
  private GenericTreeNode buildNode(CatalogEntry catEntry) {
    GenericTreeNode node = new GenericTreeNode();
    node.setAccessible(false);
    node.setIdent(catEntry.getKey().toString());
    node.setTitle(catEntry.getName());
    //
    entryMap.put(catEntry.getKey(), node);
    return node;
  }

  /**
   * Build the selection tree from the given list of entries
   * @param entryList
   * @return The root node of the tree
   */
  private GenericTreeNode buildTree(List<CatalogEntry> entryList) {
    GenericTreeNode rootNode = null;

    if (entryList == null || entryList.size() < 1) {
      rootNode = new GenericTreeNode("keine Node :(", null);
    }
    // build the tree - note that the entry list is not ordered in any way
    for (int cnt = 0; cnt < entryList.size(); cnt++) {
      CatalogEntry elem = entryList.get(cnt);
      // create a tree node and add it to the entry map
      GenericTreeNode n = addNode(elem);
      if (n != null) {
        // a node was created, keep it as a potential root node candidate
        rootNode = addNode(elem);
      }
    }

    // walk to the final root node of the tree
    while (rootNode.getParent() != null) {
      rootNode = (GenericTreeNode) rootNode.getParent();
    }

    calculateAccessibility(rootNode);
    return rootNode;
  }

  /**
   * Create and add a node to the tree
   * @param entry
   * @return
   */
  private GenericTreeNode addNode(CatalogEntry entry) {
    GenericTreeNode node = entryMap.get(entry.getKey());

    if (node == null && entry.getType() == CatalogEntry.TYPE_NODE) {
      if (entry.getParent() != null) {
        node = entryMap.get(entry.getParent().getKey());
        if (node != null) {
          GenericTreeNode build = buildNode(entry);
          node.addChild(build);
          build.setParent(node);
        } else {
          addMissingNodes(entry);
        }
      }
    }
    return node;
  }

  /**
   * Create the parent and child nodes that are not yet in the entry map
   *
   * @param fault
   */
  private void addMissingNodes(CatalogEntry fault) {
    GenericTreeNode branch = null;
    GenericTreeNode helper = null;

    while (fault != null) {
      if (entryMap.get(fault.getKey()) == null) {
        GenericTreeNode build = buildNode(fault);
        if (fault.getParent() != null) // in case of catalog root
        branch = entryMap.get(fault.getParent().getKey());
        if (helper != null) {
          helper.setParent(build);
          build.addChild(helper);
        }
        if (branch != null) {
          build.setParent(branch);
          branch.addChild(build);
          return;
        }
        helper = build;
      }
      fault = fault.getParent();
    }
  }

  /**
   * Limit accessability to node to the nodes that are owned by the current user
   */
  private void calculateAccessibility(GenericTreeNode rootNode) {
    GenericTreeNode node = null;
    // first : allow access to all children of the owned entries
    if (ownedEntries != null) {
      for (CatalogEntry entry : ownedEntries) {
        node = entryMap.get(entry.getKey());
        changeAccessibility(node, true);
      }
    }
    // second : reduce access for all children of the element you want to move (
    // to avoid circles and not dissolve elements from the catalog root )
    if (entryToMove != null && entryToMove.getType() == CatalogEntry.TYPE_NODE) {
      node = entryMap.get(entryToMove.getKey());
      changeAccessibility(node, false);
    }
    // when no node has to be moved (just a selection of any category) and no
    // entries are owned, we assume that all entries can be selected by user
    if (entryToMove == null && ownedEntries == null) {
      changeAccessibility(rootNode, true);
    }
  }

  /**  
   * Limit accessability to the given node
   *
   * @param node
   * @param accessible
   */
  private void changeAccessibility(GenericTreeNode node, boolean accessible) {

    if (accessible && !node.getTitle().equals(chooseableTitle)) {
      GenericTreeNode chooseable = new GenericTreeNode();
      chooseable.setAccessible(accessible);
      chooseable.setTitle(chooseableTitle);
      chooseable.setIdent(node.getIdent());
      node.addChild(chooseable);
    } else {
      if (node.getTitle().equals(chooseableTitle)) {
        if (!accessible) node.removeFromParent();
        return;
      }
    }
    //
    for (int cnt = 0; cnt < node.getChildCount(); cnt++) {
      changeAccessibility((GenericTreeNode) node.getChildAt(cnt), accessible);
    }
  }
}
TOP

Related Classes of org.olat.catalog.ui.CatalogTreeModel

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.