/** * Specific page to build the XML data describing the "relation" around a given seed object * This XML is desgined to be consumed by the Flash Navigator object (see ../navigator folder) * * @copyright Copyright (C) 2010-2012 Combodo SARL * @license http://opensource.org/licenses/AGPL-3.0 */ require_once('../approot.inc.php'); require_once(APPROOT.'/application/application.inc.php'); require_once(APPROOT.'/application/webpage.class.inc.php'); require_once(APPROOT.'/application/ajaxwebpage.class.inc.php'); require_once(APPROOT.'/application/wizardhelper.class.inc.php'); require_once(APPROOT.'/application/ui.linkswidget.class.inc.php'); define('MAX_RECURSION_DEPTH', 20); /** * Fills the given XML node with te details of the specified object */ function AddNodeDetails(&$oNode, $oObj) { $aZlist = MetaModel::GetZListItems(get_class($oObj), 'list'); $aLabels = array(); $index = 0; foreach($aZlist as $sAttCode) { $oAttDef = MetaModel::GetAttributeDef(get_class($oObj), $sAttCode); $aLabels[] = $oAttDef->GetLabel(); if (!$oAttDef->IsLinkSet()) { $oNode->SetAttribute('att_'.$index, $oObj->GetAsHTML($sAttCode)); } $index++; } $oNode->SetAttribute('zlist', implode(',', $aLabels)); } $G_aCachedObjects = array(); /** * Get the related objects through the given relation, output in XML * @param DBObject $oObj The current object * @param string $sRelation The name of the relation to search with */ function GetRelatedObjectsAsXml(DBObject $oObj, $sRelationName, &$oLinks, &$oXmlDoc, &$oXmlNode, $iDepth = 0, $aExcludedClasses) { global $G_aCachedObjects; $aResults = array(); $bAddLinks = false; if ($iDepth > MAX_RECURSION_DEPTH) return; $sIdxKey = get_class($oObj).':'.$oObj->GetKey(); if (!array_key_exists($sIdxKey, $G_aCachedObjects)) { $oObj->GetRelatedObjects($sRelationName, 1 /* iMaxDepth */, $aResults); $G_aCachedObjects[$sIdxKey] = true; } else { return; //$aResults = $G_aCachedObjects[$sIdxKey]; } foreach($aResults as $sRelatedClass => $aObjects) { foreach($aObjects as $id => $oTargetObj) { if (is_object($oTargetObj)) { if (in_array(get_class($oTargetObj), $aExcludedClasses)) { GetRelatedObjectsAsXml($oTargetObj, $sRelationName, $oLinks, $oXmlDoc, $oXmlNode, $iDepth++, $aExcludedClasses); } else { $oLinkingNode = $oXmlDoc->CreateElement('link'); $oLinkingNode->SetAttribute('relation', $sRelationName); $oLinkingNode->SetAttribute('arrow', 1); // Such relations have a direction, display an arrow $oLinkedNode = $oXmlDoc->CreateElement('node'); $oLinkedNode->SetAttribute('id', $oTargetObj->GetKey()); $oLinkedNode->SetAttribute('obj_class', get_class($oTargetObj)); $oLinkedNode->SetAttribute('obj_class_name', htmlspecialchars(MetaModel::GetName(get_class($oTargetObj)))); $oLinkedNode->SetAttribute('name', htmlspecialchars($oTargetObj->GetRawName())); // htmlentities is too much for XML $oLinkedNode->SetAttribute('icon', BuildIconPath($oTargetObj->GetIcon(false /* No IMG tag */))); AddNodeDetails($oLinkedNode, $oTargetObj); $oSubLinks = $oXmlDoc->CreateElement('links'); // Recurse GetRelatedObjectsAsXml($oTargetObj, $sRelationName, $oSubLinks, $oXmlDoc, $oLinkedNode, $iDepth++, $aExcludedClasses); $oLinkingNode->AppendChild($oLinkedNode); $oLinks->AppendChild($oLinkingNode); $bAddLinks = true; } } } } if ($bAddLinks) { $oXmlNode->AppendChild($oLinks); } } function BuildIconPath($sIconPath) { return $sIconPath; } require_once(APPROOT.'/application/startup.inc.php'); require_once(APPROOT.'/application/loginwebpage.class.inc.php'); // For developping the Navigator from within Flash //session_start(); //$_SESSION['auth_user'] = 'admin'; //UserRights::Login($_SESSION['auth_user']); // Set the user's language LoginWebPage::DoLogin(); // Check user rights and prompt if needed $oPage = new ajax_page(""); $oPage->no_cache(); $sClass = utils::ReadParam('class', 'Contact', false, 'class'); $id = utils::ReadParam('id', 1); $sRelation = utils::ReadParam('relation', 'impacts'); $aValidRelations = MetaModel::EnumRelations(); $sFormat = utils::ReadParam('format', 'xml'); $sExcludedClasses = utils::ReadParam('exclude', '', false, 'raw_data'); $aExcludedClasses = explode(',', $sExcludedClasses); if (!in_array($sRelation, $aValidRelations)) { // Not a valid relation, use the default one instead $sRelation = 'impacts'; } try { if ($id != 0) { switch($sFormat) { case 'html': $oPage->SetContentType('text/html'); $oObj = MetaModel::GetObject($sClass, $id, true /* object must exist */); $aResults = array(); $oObj->GetRelatedObjects($sRelation, MAX_RECURSION_DEPTH /* iMaxDepth */, $aResults); $iBlock = 1; // Zero is not a valid blockid foreach($aResults as $sClass => $aObjects) { $oSet = CMDBObjectSet::FromArray($sClass, $aObjects); $oPage->add("