use of org.olat.ims.cp.objects.CPOrganization in project OpenOLAT by OpenOLAT.
the class CPTreeDataModel method getPath.
/*
@Override
public List<AjaxTreeNode> getChildrenFor(String nodeId) {
CPManagerImpl cpMgm = (CPManagerImpl) CPManager.getInstance();
Vector<AjaxTreeNode> nodeList = new Vector<AjaxTreeNode>();
nodeId = getIdentifierForNodeID(nodeId);
DefaultElement el = cpMgm.getElementByIdentifier(cp, nodeId);
if (el == null) {
log.info("element not found (id " + nodeId + ")");
return nodeList;
}
try {
if (el.getName().equals(CPCore.ORGANIZATION)) {
CPOrganization org = (CPOrganization) el;
for (Iterator<CPItem> it = org.getItemIterator(); it.hasNext();) {
CPItem item = it.next();
addItem(nodeList, item);
}
} else if (el.getName().equals(CPCore.ITEM)) {
CPItem pItem = (CPItem) el;
for (Iterator<CPItem> it = pItem.getItemIterator(); it.hasNext();) {
CPItem item = it.next();
addItem(nodeList, item);
}
} else {
// element is not item nor orga -> ergo wrong element
log.info("unknown element while building treemodel for gui (id: " + nodeId + ")");
}
} catch (JSONException e) {
log.error("error while building treemodel");
}
return nodeList;
}
private void addItem(Vector<AjaxTreeNode> nodeList, CPItem item) throws JSONException {
String nId;
nId = putIdentifierForNodeID(item.getIdentifier());
AjaxTreeNode child = new AjaxTreeNode(nId, item.getTitle());
if (item.getItems().size() == 0) {
// Expand the leaf in order to get rid of the plus sign in front of it.
child.put(AjaxTreeNode.CONF_EXPANDED, true);
}
child.put(AjaxTreeNode.CONF_ICON_CSS_CLASS, "o_cp_item");
nodeList.add(child);
}*/
/**
* Returns the path of the given item in the tree.
* <p>
* Example: /0/12/3
* <p>
* The empty string signifies the root node.
*
* @param identifier The identifier of the page
* @return The path to the node in the tree
*/
public String getPath(String identifier) {
StringBuffer path = new StringBuffer();
DefaultElement elem = cp.getElementByIdentifier(identifier);
if (elem instanceof CPOrganization) {
// Special case. Somehow, the root path should be an empty string.
path.append("");
} else {
addElementToPath(elem, path);
}
return path.toString();
}
use of org.olat.ims.cp.objects.CPOrganization in project OpenOLAT by OpenOLAT.
the class CPTreeDataModel method addElementToPath.
/**
* @param identifier
* @param path
* @param slash
* @param elem
*/
private void addElementToPath(DefaultElement elem, StringBuffer path) {
final String slash = "/";
if (elem instanceof CPItem) {
CPItem item = (CPItem) elem;
path.insert(0, slash).insert(1, getNodeIDForIdentifier(item.getIdentifier()));
DefaultElement parent = item.getParentElement();
if (parent != null)
addElementToPath(parent, path);
} else if (elem instanceof CPOrganization) {
CPOrganization item = (CPOrganization) elem;
path.insert(0, slash).insert(1, getNodeIDForIdentifier(item.getIdentifier()));
}
}
use of org.olat.ims.cp.objects.CPOrganization in project OpenOLAT by OpenOLAT.
the class CPCore method moveElement.
public void moveElement(String nodeID, String newParentID, int position) {
DefaultElement elementToMove = rootNode.getElementByIdentifier(nodeID);
if (elementToMove != null) {
if (elementToMove instanceof CPItem) {
removeElement(nodeID, false);
addElement(elementToMove, newParentID, position);
} else if (elementToMove instanceof CPOrganization) {
// not yet supported
} else {
throw new OLATRuntimeException(CPOrganizations.class, "Only <item>-elements are moveable...!", new Exception());
}
}
}
use of org.olat.ims.cp.objects.CPOrganization in project OpenOLAT by OpenOLAT.
the class CPCore method findReferencesToResource.
/**
* Searches for <item>-elements or <dependency>-elements which references to
* the resource with id "resourceIdentifier"
*
* if an element is found, search is aborted and the found element is returned
*
* @param resourceIdentifier
* @return the found element or null
*/
public DefaultElement findReferencesToResource(String resourceIdentifier) {
// search for <item identifierref="resourceIdentifier" >
for (Iterator<CPOrganization> it = rootNode.getOrganizations().getOrganizationIterator(); it.hasNext(); ) {
CPOrganization org = it.next();
for (Iterator<CPItem> itO = org.getItems().iterator(); itO.hasNext(); ) {
CPItem item = itO.next();
CPItem found = _findReferencesToRes(item, resourceIdentifier);
if (found != null)
return found;
}
}
// search for <dependency identifierref="resourceIdentifier" >
for (Iterator<CPResource> itRes = rootNode.getResources().getResourceIterator(); itRes.hasNext(); ) {
CPResource res = itRes.next();
for (Iterator<CPDependency> itDep = res.getDependencyIterator(); itDep.hasNext(); ) {
CPDependency dep = itDep.next();
if (dep.getIdentifierRef().equals(resourceIdentifier))
return dep;
}
}
return null;
}
use of org.olat.ims.cp.objects.CPOrganization in project openolat by klemens.
the class CPManagerTest method testLoad.
@Test
public void testLoad() {
ContentPackage relodedCP = mgr.load(cp.getRootDir(), cp.getResourcable());
assertNotNull(relodedCP);
CPOrganization orga = relodedCP.getFirstOrganizationInManifest();
assertNotNull(orga);
CPItem item = orga.getFirstItem();
assertEquals(PAGE_TITLE, item.getTitle());
}
Aggregations