123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- <?php
- // Copyright (C) 2010-2012 Combodo SARL
- //
- // This file is part of iTop.
- //
- // iTop 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.
- //
- // iTop 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 Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with iTop. If not, see <http://www.gnu.org/licenses/>
- /**
- * SqlBlock - display tables or charts, given an SQL query - use cautiously!
- *
- *
- * @copyright Copyright (C) 2010-2012 Combodo SARL
- * @license http://opensource.org/licenses/AGPL-3.0
- */
- require_once(APPROOT.'/application/webpage.class.inc.php');
- require_once(APPROOT.'/application/utils.inc.php');
- require_once(APPROOT.'/pages/php-ofc-library/open-flash-chart.php');
- /**
- * Helper class to design optimized dashboards, based on an SQL query
- *
- */
- class SqlBlock
- {
- protected $m_sQuery;
- protected $m_aColumns;
- protected $m_sTitle;
- protected $m_sType;
- protected $m_aParams;
-
- public function __construct($sQuery, $aColumns, $sTitle, $sType, $aParams = array())
- {
- $this->m_sQuery = $sQuery;
- $this->m_aColumns = $aColumns;
- $this->m_sTitle = $sTitle;
- $this->m_sType = $sType;
- $this->m_aParams = $aParams;
- }
-
- /**
- * Constructs a SqlBlock object from an XML template
- /*
- *
- * <sqlblock>
- * <sql>SELECT date_format(start_date, '%d') AS Date, count(*) AS Count FROM ticket WHERE DATE_SUB(NOW(), INTERVAL 15 DAY) < start_date AND finalclass = 'UserIssue' GROUP BY date_format(start_date, '%d') AND $CONDITION(param1, ticket.org_id)$</sql>
- * <type>table</type>
- * <title>UserRequest:Overview-Title</title>
- * <parameter>
- * <name>param1</name>
- * <type>context</type>
- * <mapping>org_id</mapping>
- * </parameter>
- * <column>
- * <name>Date</name>
- * <label>UserRequest:Overview-Date</label>
- * <drilldown></drilldown>
- * </column>
- * <column>
- * <name>Count</name>
- * <label>UserRequest:Overview-Count</label>
- * <drilldown>SELECT UserIssue WHERE date_format(start_date, '%d') = :Date</drilldown>
- * </column>
- * </sqlblock>
- *
- * Tags
- * - sql: a (My)SQL query. Do not forget to use html entities (e.g. < for <)
- * - type: table (default), bars or pie. If bars or pie is selected only the two first columns are taken into account.
- * - title: optional title, typed in clear or given as a dictionnary entry
- * - parameter: specifies how to map the context parameters (namely org_id) to a given named parameter in the query.
- * The expression $CONDITION(<param_name>, <sql_column_name>) will be automatically replaced by:
- * either the string "1" if there is no restriction on the organisation in iTop
- * or the string "(<sql_column_name>=<value_of_org_id>)" if there is a limitation to one organizations in iTop
- * or the string "(<sql_column_name> IN (<values_of_org_id>))" if there is a limitation to a given set of organizations in iTop
- * - column: specification of a column (not displayed if omitted)
- * - column / name: name of the column in the SQL query (use aliases)
- * - column / label: label, typed in clear or given as a dictionnary entry
- * - column / drilldown: NOT IMPLEMENTED YET - OQL with parameters corresponding to column names (in the query)
- *
- * @param $sTemplate string The XML template
- * @return DisplayBlock The DisplayBlock object, or null if the template is invalid
- */
- public static function FromTemplate($sTemplate)
- {
- $oXml = simplexml_load_string('<root>'.$sTemplate.'</root>', 'SimpleXMLElement', LIBXML_NOCDATA);
- if (false)
- {
- // Debug
- echo "<pre>\n";
- print_r($oXml);
- echo "</pre>\n";
- }
- if (isset($oXml->title))
- {
- $sTitle = (string)$oXml->title;
- }
- if (isset($oXml->type))
- {
- $sType = (string)$oXml->type;
- }
- else
- {
- $sType = 'table';
- }
- if (!isset($oXml->sql))
- {
- throw new Exception('Missing tag "sql" in sqlblock');
- }
- $sQuery = (string)$oXml->sql;
- $aColumns = array();
- if (isset($oXml->column))
- {
- foreach ($oXml->column AS $oColumnData)
- {
- if (!isset($oColumnData->name))
- {
- throw new Exception("Missing tag 'name' in sqlblock/column");
- }
- $sName = (string) $oColumnData->name;
- if (strlen($sName) == 0)
- {
- throw new Exception("Empty tag 'name' in sqlblock/column");
- }
- $aColumns[$sName] = array();
- if (isset($oColumnData->label))
- {
- $sLabel = (string)$oColumnData->label;
- if (strlen($sLabel) > 0)
- {
- $aColumns[$sName]['label'] = Dict::S($sLabel);
- }
- }
- if (isset($oColumnData->drilldown))
- {
- $sDrillDown = (string)$oColumnData->drilldown;
- if (strlen($sDrillDown) > 0)
- {
- $aColumns[$sName]['drilldown'] = $sDrillDown;
- }
- }
- }
- }
- $aParams = array();
- if (isset($oXml->parameter))
- {
- foreach ($oXml->parameter AS $oParamData)
- {
- if (!isset($oParamData->name))
- {
- throw new Exception("Missing tag 'name' for parameter in sqlblock/column");
- }
- $sName = (string) $oParamData->name;
- if (strlen($sName) == 0)
- {
- throw new Exception("Empty tag 'name' for parameter in sqlblock/column");
- }
- if (!isset($oParamData->mapping))
- {
- throw new Exception("Missing tag 'mapping' for parameter in sqlblock/column");
- }
- $sMapping = (string) $oParamData->mapping;
- if (strlen($sMapping) == 0)
- {
- throw new Exception("Empty tag 'mapping' for parameter in sqlblock/column");
- }
-
- if (isset($oParamData->type))
- {
- $sParamType = $oParamData->type;
- }
- else
- {
- $sParamType = 'context';
- }
- $aParams[$sName] = array('mapping' => $sMapping, 'type' => $sParamType);
- }
- }
-
- return new SqlBlock($sQuery, $aColumns, $sTitle, $sType, $aParams);
- }
-
- /**
- * Applies the defined parameters into the SQL query
- * @return string the SQL query to execute
- */
- public function BuildQuery()
- {
- $oAppContext = new ApplicationContext();
- $sQuery = $this->m_sQuery;
- $sQuery = str_replace('$DB_PREFIX$', MetaModel::GetConfig()->GetDBSubname(), $sQuery); // put the tables DB prefix (if any)
- foreach($this->m_aParams as $sName => $aParam)
- {
- if ($aParam['type'] == 'context')
- {
- $sSearchPattern = '/\$CONDITION\('.$sName.',([^\)]+)\)\$/';
- $value = $oAppContext->GetCurrentValue($aParam['mapping']);
- if (empty($value))
- {
- $sSQLExpr = '(1)';
- }
- else
- {
- // Special case for managing the hierarchy of organizations
- if (($aParam['mapping'] == 'org_id') && ( MetaModel::IsValidClass('Organization')))
- {
- $sHierarchicalKeyCode = MetaModel::IsHierarchicalClass('Organization');
- if ($sHierarchicalKeyCode != false)
- {
- // organizations are in hierarchy... gather all the orgs below the given one...
- $sOQL = "SELECT Organization AS node JOIN Organization AS root ON node.$sHierarchicalKeyCode BELOW root.id WHERE root.id = :value";
- $oSet = new DBObjectSet(DBObjectSearch::FromOQL($sOQL), array(), array('value' => $value));
- $aOrgIds = array();
- while($oOrg = $oSet->Fetch())
- {
- $aOrgIds[]= $oOrg->GetKey();
- }
- $sSQLExpr = '($1 IN('.implode(',', $aOrgIds).'))';
- }
- else
- {
- $sSQLExpr = '($1 = '.CMDBSource::Quote($value).')';
- }
- }
- else
- {
- $sSQLExpr = '($1 = '.CMDBSource::Quote($value).')';
- }
- }
- $sQuery = preg_replace($sSearchPattern, $sSQLExpr, $sQuery);
- }
- }
- return $sQuery;
- }
-
- public function RenderContent(WebPage $oPage, $aExtraParams = array())
- {
- if (empty($aExtraParams['currentId']))
- {
- $sId = 'sqlblock_'.$oPage->GetUniqueId(); // Works only if the page is not an Ajax one !
- }
- else
- {
- $sId = $aExtraParams['currentId'];
- }
- // $oPage->add($this->GetRenderContent($oPage, $aExtraParams, $sId));
- $sQuery = $this->BuildQuery();
- $res = CMDBSource::Query($sQuery);
- $aQueryCols = CMDBSource::GetColumns($res);
- // Prepare column definitions (check + give default values)
- //
- foreach($this->m_aColumns as $sName => $aColumnData)
- {
- if (!in_array($sName, $aQueryCols))
- {
- throw new Exception("Unknown column name '$sName' in sqlblock column");
- }
- if (!isset($aColumnData['label']))
- {
- $this->m_aColumns[$sName]['label'] = $sName;
- }
- if (isset($aColumnData['drilldown']) && !empty($aColumnData['drilldown']))
- {
- // Check if the OQL is valid
- try
- {
- $this->m_aColumns[$sName]['filter'] = DBObjectSearch::FromOQL($aColumnData['drilldown']);
- }
- catch(OQLException $e)
- {
- unset($aColumnData['drilldown']);
- }
- }
- }
- if (strlen($this->m_sTitle) > 0)
- {
- $oPage->add("<h2>".Dict::S($this->m_sTitle)."</h2>\n");
- }
- switch ($this->m_sType)
- {
- case 'bars':
- case 'pie':
- $aColNames = array_keys($this->m_aColumns);
- $sXColName = $aColNames[0];
- $sYColName = $aColNames[1];
- $aData = array();
- $aRows = array();
- while($aRow = CMDBSource::FetchArray($res))
- {
- $aData[$aRow[$sXColName]] = $aRow[$sYColName];
- $aRows[$aRow[$sXColName]] = $aRow;
- }
- $this->RenderChart($oPage, $sId, $aData, $this->m_aColumns[$sYColName]['drilldown'], $aRows);
- break;
- default:
- case 'table':
- $oAppContext = new ApplicationContext();
- $sContext = $oAppContext->GetForLink();
- if (!empty($sContext))
- {
- $sContext = '&'.$sContext;
- }
- $aDisplayConfig = array();
- foreach($this->m_aColumns as $sName => $aColumnData)
- {
- $aDisplayConfig[$sName] = array('label' => $aColumnData['label'], 'description' => '');
- }
-
- $aDisplayData = array();
- while($aRow = CMDBSource::FetchArray($res))
- {
- $aSQLColNames = array_keys($aRow);
- $aDisplayRow = array();
- foreach($this->m_aColumns as $sName => $aColumnData)
- {
- if (isset($aColumnData['filter']))
- {
- $sFilter = $aColumnData['drilldown'];
- $sClass = $aColumnData['filter']->GetClass();
- $sFilter = str_replace('SELECT '.$sClass, '', $sFilter);
- foreach($aSQLColNames as $sColName)
- {
- $sFilter = str_replace(':'.$sColName, "'".addslashes( $aRow[$sColName] )."'", $sFilter);
- }
- $sURL = utils::GetAbsoluteUrlAppRoot().'pages/UI.php?operation=search_oql&search_form=0&oql_class='.$sClass.'&oql_clause='.urlencode($sFilter).'&format=html'.$sContext;
- $aDisplayRow[$sName] = '<a href="'.$sURL.'">'.$aRow[$sName]."</a>";
- }
- else
- {
- $aDisplayRow[$sName] = $aRow[$sName];
- }
- }
- $aDisplayData[] = $aDisplayRow;
- }
- $oPage->table($aDisplayConfig, $aDisplayData);
- break;
- }
- }
-
- public function GetRenderContent(WebPage $oPage, $aExtraParams = array(), $sId)
- {
- $sHtml = '';
- return $sHtml;
- }
- protected function RenderChart($oPage, $sId, $aValues, $sDrillDown = '', $aRows = array())
- {
- // 1- Compute Open Flash Chart data
- //
- $aValueKeys = array();
- $index = 0;
- if ((count($aValues) > 0) && ($sDrillDown != ''))
- {
- $oFilter = DBObjectSearch::FromOQL($sDrillDown);
- $sClass = $oFilter->GetClass();
- $sOQLClause = str_replace('SELECT '.$sClass, '', $sDrillDown);
- $aSQLColNames = array_keys(current($aRows)); // Read the list of columns from the current (i.e. first) element of the array
- $oAppContext = new ApplicationContext();
- $sURL = utils::GetAbsoluteUrlAppRoot().'pages/UI.php?operation=search_oql&search_form=0&oql_class='.$sClass.'&format=html&'.$oAppContext->GetForLink().'&oql_clause=';
- }
- $aURLs = array();
- foreach($aValues as $key => $value)
- {
- // Make sure that values are integers (so that max() will work....)
- // and build an array of STRING with the keys (numeric keys are transformed into string by PHP :-(
- $aValues[$key] = (int)$value;
- $aValueKeys[] = (string)$key;
-
- // Build the custom query for the 'drill down' on each element
- if ($sDrillDown != '')
- {
- $sFilter = $sOQLClause;
- foreach($aSQLColNames as $sColName)
- {
- $sFilter = str_replace(':'.$sColName, "'".addslashes( $aRows[$key][$sColName] )."'", $sFilter);
- $aURLs[$index] = $sURL.urlencode($sFilter);
- }
- }
- $index++;
- }
-
- $oChart = new open_flash_chart();
-
- if ($this->m_sType == 'bars')
- {
- $oChartElement = new bar_glass();
-
- if (count($aValues) > 0)
- {
- $maxValue = max($aValues);
- }
- else
- {
- $maxValue = 1;
- }
- $oYAxis = new y_axis();
- $aMagicValues = array(1,2,5,10);
- $iMultiplier = 1;
- $index = 0;
- $iTop = $aMagicValues[$index % count($aMagicValues)]*$iMultiplier;
- while($maxValue > $iTop)
- {
- $index++;
- $iTop = $aMagicValues[$index % count($aMagicValues)]*$iMultiplier;
- if (($index % count($aMagicValues)) == 0)
- {
- $iMultiplier = $iMultiplier * 10;
- }
- }
- //echo "oYAxis->set_range(0, $iTop, $iMultiplier);\n";
- $oYAxis->set_range(0, $iTop, $iMultiplier);
- $oChart->set_y_axis( $oYAxis );
- $aBarValues = array();
- foreach($aValues as $iValue)
- {
- $oBarValue = new bar_value($iValue);
- $oBarValue->on_click("ofc_drilldown_{$sId}");
- $aBarValues[] = $oBarValue;
- }
- $oChartElement->set_values($aBarValues);
- //$oChartElement->set_values(array_values($aValues));
- $oXAxis = new x_axis();
- $oXLabels = new x_axis_labels();
- // set them vertical
- $oXLabels->set_vertical();
- // set the label text
- $oXLabels->set_labels($aValueKeys);
- // Add the X Axis Labels to the X Axis
- $oXAxis->set_labels( $oXLabels );
- $oChart->set_x_axis( $oXAxis );
- }
- else
- {
- $oChartElement = new pie();
- $oChartElement->set_start_angle( 35 );
- $oChartElement->set_animate( true );
- $oChartElement->set_tooltip( '#label# - #val# (#percent#)' );
- $oChartElement->set_colours( array('#FF8A00', '#909980', '#2C2B33', '#CCC08D', '#596664') );
-
- $aData = array();
- foreach($aValues as $sValue => $iValue)
- {
- $oPieValue = new pie_value($iValue, $sValue); //@@ BUG: not passed via ajax !!!
- $oPieValue->on_click("ofc_drilldown_{$sId}");
- $aData[] = $oPieValue;
- }
-
- $oChartElement->set_values( $aData );
- $oChart->x_axis = null;
- }
-
- // Title given in HTML
- //$oTitle = new title($this->m_sTitle);
- //$oChart->set_title($oTitle);
- $oChart->set_bg_colour('#FFFFFF');
- $oChart->add_element( $oChartElement );
-
- $sData = $oChart->toPrettyString();
- $sData = json_encode($sData);
- // 2- Declare the Javascript function that will render the chart data\
- //
- $oPage->add_script(
- <<< EOF
- function ofc_get_data_{$sId}()
- {
- return $sData;
- }
- EOF
- );
-
- if (count($aURLs) > 0)
- {
- $sURLList = '';
- foreach($aURLs as $index => $sURL)
- {
- $sURLList .= "\taURLs[$index] = '".addslashes($sURL)."';\n";
- }
- $oPage->add_script(
- <<< EOF
- function ofc_drilldown_{$sId}(index)
- {
- var aURLs = new Array();
- {$sURLList}
- var sURL = aURLs[index];
-
- window.location.href = sURL; // Navigate !
- }
- EOF
- );
- }
- // 3- Insert the Open Flash chart
- //
- $oPage->add("<div id=\"$sId\"><div>\n");
- $oPage->add_ready_script(
- <<<EOF
- swfobject.embedSWF( "../images/open-flash-chart.swf",
- "{$sId}",
- "100%", "300","9.0.0",
- "expressInstall.swf",
- {"get-data":"ofc_get_data_{$sId}", "id":"{$sId}"},
- {'wmode': 'transparent'}
- );
- EOF
- );
- }
- }
- ?>
|