123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878 |
- <?php
- // Copyright (C) 2010 Combodo SARL
- //
- // This program is free software; you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation; version 3 of the License.
- //
- // This program 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 General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program; if not, write to the Free Software
- // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- /**
- * Handles various ajax requests
- *
- * @author Erwan Taloc <erwan.taloc@combodo.com>
- * @author Romain Quetiez <romain.quetiez@combodo.com>
- * @author Denis Flaven <denis.flaven@combodo.com>
- * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
- */
- 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');
- require_once(APPROOT.'/application/ui.extkeywidget.class.inc.php');
- require_once(APPROOT.'/application/datatable.class.inc.php');
- try
- {
- require_once(APPROOT.'/application/startup.inc.php');
- require_once(APPROOT.'/application/user.preferences.class.inc.php');
-
- require_once(APPROOT.'/application/loginwebpage.class.inc.php');
- LoginWebPage::DoLogin(false /* bMustBeAdmin */, true /* IsAllowedToPortalUsers */); // Check user rights and prompt if needed
-
- $oPage = new ajax_page("");
- $oPage->no_cache();
-
- $operation = utils::ReadParam('operation', '');
- $sFilter = stripslashes(utils::ReadParam('filter', '', false, 'raw_data'));
- $sEncoding = utils::ReadParam('encoding', 'serialize');
- $sClass = utils::ReadParam('class', 'MissingAjaxParam', false, 'class');
- $sStyle = utils::ReadParam('style', 'list');
- switch($operation)
- {
- case 'datatable':
- case 'pagination':
- $oPage->SetContentType('text/html');
- $extraParams = utils::ReadParam('extra_param', '', false, 'raw_data');
- if (is_array($extraParams))
- {
- $aExtraParams = $extraParams;
- }
- else
- {
- $sExtraParams = stripslashes($extraParams);
- $aExtraParams = array();
- if (!empty($sExtraParams))
- {
- $aExtraParams = json_decode(str_replace("'", '"', $sExtraParams), true /* associative array */);
- }
- }
- if ($sEncoding == 'oql')
- {
- $oFilter = CMDBSearchFilter::FromOQL($sFilter);
- }
- else
- {
- $oFilter = CMDBSearchFilter::unserialize($sFilter);
- }
- $iStart = utils::ReadParam('start',0);
- $iEnd = utils::ReadParam('end',1);
- $iSortCol = utils::ReadParam('sort_col','null');
- $sSelectMode = utils::ReadParam('select_mode', '');
- $bDisplayKey = utils::ReadParam('display_key', 'true') == 'true';
- $aColumns = utils::ReadParam('columns', array(), false, 'raw_data');
- $aClassAliases = utils::ReadParam('class_aliases', array());
- $iListId = utils::ReadParam('list_id', 0);
- //$aList = cmdbAbstractObject::FlattenZList(MetaModel::GetZListItems($sClassName, 'list'));
- // Filter the list to removed linked set since we are not able to display them here
- $aOrderBy = array();
- $iSortIndex = 0;
-
- $aColumnsLoad = array();
- foreach($aClassAliases as $sAlias => $sClassName)
- {
- $aColumnsLoad[$sAlias] = array();
- foreach($aColumns[$sAlias] as $sAttCode => $aData)
- {
- if ($aData['checked'] == 'true')
- {
- $aColumns[$sAlias][$sAttCode]['checked'] = true;
- if ($sAttCode == '_key_')
- {
- if ($iSortCol == $iSortIndex)
- {
- $aOrderBy['friendlyname'] = (utils::ReadParam('sort_order', 'asc') == 'asc');
- }
- }
- else
- {
- $oAttDef = MetaModel::GetAttributeDef($sClassName, $sAttCode);
- if ($oAttDef instanceof AttributeLinkedSet)
- {
- // Removed from the display list
- unset($aColumns[$sAlias][$sAttCode]);
- }
- else
- {
- $aColumnsLoad[$sAlias][] = $sAttCode;
- }
- if ($iSortCol == $iSortIndex)
- {
- if ($oAttDef->IsExternalKey())
- {
- $sSortCol = $sAttCode.'_friendlyname';
- }
- else
- {
- $sSortCol = $sAttCode;
- }
- $aOrderBy[$sSortCol] = (utils::ReadParam('sort_order', 'asc') == 'asc');
- }
- }
- $iSortIndex++;
- }
- else
- {
- $aColumns[$sAlias][$sAttCode]['checked'] = false;
- }
- }
- }
-
- // Load only the requested columns
- $oSet = new DBObjectSet($oFilter, $aOrderBy, $aExtraParams, null, $iEnd-$iStart, $iStart);
- $oSet->OptimizeColumnLoad($aColumnsLoad);
- $oDataTable = new DataTable($iListId, $oSet, $oSet->GetSelectedClasses());
- if ($operation == 'datatable')
- {
- // Redraw the whole table
- $sHtml = $oDataTable->UpdatePager($oPage, $iEnd-$iStart, $iStart); // Set the default page size
- $sHtml .= $oDataTable->GetHTMLTable($oPage, $aColumns, $sSelectMode, $iEnd-$iStart, $bDisplayKey, $aExtraParams);
- }
- else
- {
- // redraw just the needed rows
- $sHtml = $oDataTable->GetAsHTMLTableRows($oPage, $iEnd-$iStart, $aColumns, $sSelectMode, $bDisplayKey, $aExtraParams);
- }
- $oPage->add($sHtml);
- break;
-
- case 'datatable_save_settings':
- $iPageSize = utils::ReadParam('page_size', 10);
- $sTableId = utils::ReadParam('table_id', null, false, 'raw_data');
- $bSaveAsDefaults = (utils::ReadParam('defaults', 'true') == 'true');
- $aClassAliases = utils::ReadParam('class_aliases', array(), false, 'raw_data');
- $aColumns = utils::ReadParam('columns', array(), false, 'raw_data');
-
- foreach($aColumns as $sAlias => $aList)
- {
- foreach($aList as $sAttCode => $aData)
- {
- $aColumns[$sAlias][$sAttCode]['checked'] = ($aData['checked'] == 'true');
- $aColumns[$sAlias][$sAttCode]['disabled'] = ($aData['disabled'] == 'true');
- }
- }
-
- $oSettings = new DataTableSettings($aClassAliases, $sTableId);
- $oSettings->iDefaultPageSize = $iPageSize;
- $oSettings->aColumns = $aColumns;
- if ($bSaveAsDefaults)
- {
- $bRet = $oSettings->SaveAsDefault();
- }
- else
- {
- $bRet = $oSettings->Save();
- }
- $oPage->add($bRet ? 'Ok' : 'KO');
- break;
-
- case 'datatable_reset_settings':
- $sTableId = utils::ReadParam('table_id', null, false, 'raw_data');
- $aClassAliases = utils::ReadParam('class_aliases', array(), false, 'raw_data');
- $bResetAll = (utils::ReadParam('defaults', 'true') == 'true');
-
- $oSettings = new DataTableSettings($aClassAliases, $sTableId);
- $bRet = $oSettings->ResetToDefault($bResetAll);
- $oPage->add($bRet ? 'Ok' : 'KO');
- break;
-
- // ui.linkswidget
- case 'addObjects':
- $oPage->SetContentType('text/html');
- $sAttCode = utils::ReadParam('sAttCode', '');
- $iInputId = utils::ReadParam('iInputId', '');
- $sSuffix = utils::ReadParam('sSuffix', '');
- $bDuplicates = (utils::ReadParam('bDuplicates', 'false') == 'false') ? false : true;
- $sJson = utils::ReadParam('json', '', false, 'raw_data');
- if (!empty($sJson))
- {
- $oWizardHelper = WizardHelper::FromJSON($sJson);
- $oObj = $oWizardHelper->GetTargetObject();
- }
- else
- {
- // Search form: no current object
- $oObj = null;
- }
- $oWidget = new UILinksWidget($sClass, $sAttCode, $iInputId, $sSuffix, $bDuplicates);
- $oWidget->GetObjectPickerDialog($oPage, $oObj);
- break;
-
- // ui.linkswidget
- case 'searchObjectsToAdd':
- $oPage->SetContentType('text/html');
- $sRemoteClass = utils::ReadParam('sRemoteClass', '', false, 'class');
- $sAttCode = utils::ReadParam('sAttCode', '');
- $iInputId = utils::ReadParam('iInputId', '');
- $sSuffix = utils::ReadParam('sSuffix', '');
- $bDuplicates = (utils::ReadParam('bDuplicates', 'false') == 'false') ? false : true;
- $aAlreadyLinked = utils::ReadParam('aAlreadyLinked', array());
- $oWidget = new UILinksWidget($sClass, $sAttCode, $iInputId, $sSuffix, $bDuplicates);
- $oWidget->SearchObjectsToAdd($oPage, $sRemoteClass, $aAlreadyLinked);
- break;
-
- ////////////////////////////////////////////////////////////
-
- // ui.extkeywidget
- case 'searchObjectsToSelect':
- $oPage->SetContentType('text/html');
- $sTargetClass = utils::ReadParam('sTargetClass', '', false, 'class');
- $iInputId = utils::ReadParam('iInputId', '');
- $sRemoteClass = utils::ReadParam('sRemoteClass', '', false, 'class');
- $sFilter = utils::ReadParam('sFilter', '', false, 'raw_data');
- $sJson = utils::ReadParam('json', '', false, 'raw_data');
- $sAttCode = utils::ReadParam('sAttCode', '');
- $bSearchMode = (utils::ReadParam('bSearchMode', 'false') == 'true');
- if (!empty($sJson))
- {
- $oWizardHelper = WizardHelper::FromJSON($sJson);
- $oObj = $oWizardHelper->GetTargetObject();
- }
- else
- {
- // Search form: no current object
- $oObj = null;
- }
- $oWidget = new UIExtKeyWidget($sTargetClass, $iInputId, $sAttCode, $bSearchMode);
- $oWidget->SearchObjectsToSelect($oPage, $sFilter, $sRemoteClass, $oObj);
- break;
-
- // ui.extkeywidget: autocomplete
- case 'ac_extkey':
- $sTargetClass = utils::ReadParam('sTargetClass', '', false, 'class');
- $iInputId = utils::ReadParam('iInputId', '');
- $sFilter = utils::ReadParam('sFilter', '', false, 'raw_data');
- $sJson = utils::ReadParam('json', '', false, 'raw_data');
- $sContains = utils::ReadParam('q', '', false, 'raw_data');
- $bSearchMode = (utils::ReadParam('bSearchMode', 'false') == 'true');
- if ($sContains !='')
- {
- if (!empty($sJson))
- {
- $oWizardHelper = WizardHelper::FromJSON($sJson);
- $oObj = $oWizardHelper->GetTargetObject();
- }
- else
- {
- // Search form: no current object
- $oObj = null;
- }
- $oWidget = new UIExtKeyWidget($sTargetClass, $iInputId, '', $bSearchMode);
- $oWidget->AutoComplete($oPage, $sFilter, $oObj, $sContains);
- }
- break;
-
- // ui.extkeywidget
- case 'objectSearchForm':
- $oPage->SetContentType('text/html');
- $sTargetClass = utils::ReadParam('sTargetClass', '', false, 'class');
- $iInputId = utils::ReadParam('iInputId', '');
- $sTitle = utils::ReadParam('sTitle', '', false, 'raw_data');
- $sAttCode = utils::ReadParam('sAttCode', '');
- $bSearchMode = (utils::ReadParam('bSearchMode', 'false') == 'true');
- $oWidget = new UIExtKeyWidget($sTargetClass, $iInputId, $sAttCode, $bSearchMode);
- $sJson = utils::ReadParam('json', '', false, 'raw_data');
- if (!empty($sJson))
- {
- $oWizardHelper = WizardHelper::FromJSON($sJson);
- $oObj = $oWizardHelper->GetTargetObject();
- }
- else
- {
- // Search form: no current object
- $oObj = null;
- }
- $oWidget->GetSearchDialog($oPage, $sTitle, $oObj);
- break;
- // ui.extkeywidget
- case 'objectCreationForm':
- $sTargetClass = utils::ReadParam('sTargetClass', '', false, 'class');
- $iInputId = utils::ReadParam('iInputId', '');
- $sAttCode = utils::ReadParam('sAttCode', '');
- $oWidget = new UIExtKeyWidget($sTargetClass, $iInputId, $sAttCode, false);
- $sJson = utils::ReadParam('json', '', false, 'raw_data');
- if (!empty($sJson))
- {
- $oWizardHelper = WizardHelper::FromJSON($sJson);
- $oObj = $oWizardHelper->GetTargetObject();
- }
- else
- {
- // Search form: no current object
- $oObj = null;
- }
- $oWidget->GetObjectCreationForm($oPage, $oObj);
- break;
-
- // ui.extkeywidget
- case 'doCreateObject':
- $sTargetClass = utils::ReadParam('sTargetClass', '', false, 'class');
- $iInputId = utils::ReadParam('iInputId', '');
- $sFormPrefix = utils::ReadParam('sFormPrefix', '');
- $sAttCode = utils::ReadParam('sAttCode', '');
- $oWidget = new UIExtKeyWidget($sTargetClass, $iInputId, $sAttCode, false);
- $aResult = $oWidget->DoCreateObject($oPage);
- echo json_encode($aResult);
- break;
-
- // ui.extkeywidget
- case 'getObjectName':
- $sTargetClass = utils::ReadParam('sTargetClass', '', false, 'class');
- $iInputId = utils::ReadParam('iInputId', '');
- $iObjectId = utils::ReadParam('iObjectId', '');
- $bSearchMode = (utils::ReadParam('bSearchMode', 'false') == 'true');
- $oWidget = new UIExtKeyWidget($sTargetClass, $iInputId, '', $bSearchMode);
- $sName = $oWidget->GetObjectName($iObjectId);
- echo json_encode(array('name' => $sName));
- break;
-
- // ui.extkeywidget
- case 'displayHierarchy':
- $oPage->SetContentType('text/html');
- $sTargetClass = utils::ReadParam('sTargetClass', '', false, 'class');
- $sInputId = utils::ReadParam('sInputId', '');
- $sFilter = utils::ReadParam('sFilter', '', false, 'raw_data');
- $sJson = utils::ReadParam('json', '', false, 'raw_data');
- $currValue = utils::ReadParam('value', '');
- $bSearchMode = (utils::ReadParam('bSearchMode', 'false') == 'true');
- if (!empty($sJson))
- {
- $oWizardHelper = WizardHelper::FromJSON($sJson);
- $oObj = $oWizardHelper->GetTargetObject();
- }
- else
- {
- // Search form: no current object
- $oObj = null;
- }
- $oWidget = new UIExtKeyWidget($sTargetClass, $sInputId, '', $bSearchMode);
- $oWidget->DisplayHierarchy($oPage, $sFilter, $currValue, $oObj);
- break;
-
- ////////////////////////////////////////////////////
-
- // ui.linkswidget
- case 'doAddObjects':
- $oPage->SetContentType('text/html');
- $sAttCode = utils::ReadParam('sAttCode', '');
- $iInputId = utils::ReadParam('iInputId', '');
- $sSuffix = utils::ReadParam('sSuffix', '');
- $sRemoteClass = utils::ReadParam('sRemoteClass', $sClass, false, 'class');
- $bDuplicates = (utils::ReadParam('bDuplicates', 'false') == 'false') ? false : true;
- $sJson = utils::ReadParam('json', '', false, 'raw_data');
- $oWizardHelper = WizardHelper::FromJSON($sJson);
- $oObj = $oWizardHelper->GetTargetObject();
- $oWidget = new UILinksWidget($sClass, $sAttCode, $iInputId, $sSuffix, $bDuplicates);
- if ($sFilter != '')
- {
- $oFullSetFilter = DBObjectSearch::unserialize($sFilter);
- }
- else
- {
- $oFullSetFilter = new DBObjectSearch($sRemoteClass);
- }
- $oWidget->DoAddObjects($oPage, $oFullSetFilter, $oObj);
- break;
-
- case 'wizard_helper_preview':
- $oPage->SetContentType('text/html');
- $sJson = utils::ReadParam('json_obj', '', false, 'raw_data');
- $oWizardHelper = WizardHelper::FromJSON($sJson);
- $oObj = $oWizardHelper->GetTargetObject();
- $oObj->DisplayBareProperties($oPage);
- break;
-
- case 'wizard_helper':
- $oPage->SetContentType('text/html');
- $sJson = utils::ReadParam('json_obj', '', false, 'raw_data');
- $oWizardHelper = WizardHelper::FromJSON($sJson);
- $oObj = $oWizardHelper->GetTargetObject();
- $sClass = $oWizardHelper->GetTargetClass();
- foreach($oWizardHelper->GetFieldsForDefaultValue() as $sAttCode)
- {
- $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
- $defaultValue = $oAttDef->GetDefaultValue();
- $oWizardHelper->SetDefaultValue($sAttCode, $defaultValue);
- $oObj->Set($sAttCode, $defaultValue);
- }
- $sFormPrefix = $oWizardHelper->GetFormPrefix();
- foreach($oWizardHelper->GetFieldsForAllowedValues() as $sAttCode)
- {
- $sId = $oWizardHelper->GetIdForField($sAttCode);
- if ($sId != '')
- {
- if ($oObj->IsNew())
- {
- $iFlags = $oObj->GetInitialStateAttributeFlags($sAttCode);
- }
- else
- {
- $iFlags = $oObj->GetAttributeFlags($sAttCode);
- }
- if ($iFlags & OPT_ATT_READONLY)
- {
- $sHTMLValue = "<span id=\"field_{$sId}\">".$oObj->GetAsHTML($sAttCode);
- $sHTMLValue .= '<input type="hidden" id="'.$sId.'" name="attr_'.$sFormPrefix.$sAttCode.'" value="'.htmlentities($oObj->Get($sAttCode), ENT_QUOTES, 'UTF-8').'"/></span>';
- $oWizardHelper->SetAllowedValuesHtml($sAttCode, $sHTMLValue);
- }
- else
- {
- // It may happen that the field we'd like to update does not
- // exist in the form. For example, if the field should be hidden/read-only
- // in the current state of the object
- $value = $oObj->Get($sAttCode);
- $displayValue = $oObj->GetEditValue($sAttCode);
- $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
- $iFlags = MetaModel::GetAttributeFlags($sClass, $oObj->GetState(), $sAttCode);
- $sHTMLValue = cmdbAbstractObject::GetFormElementForField($oPage, $sClass, $sAttCode, $oAttDef, $value, $displayValue, $sId, '', $iFlags, array('this' => $oObj, 'formPrefix' => $sFormPrefix));
- // Make sure that we immediately validate the field when we reload it
- $oPage->add_ready_script("$('#$sId').trigger('validate');");
- $oWizardHelper->SetAllowedValuesHtml($sAttCode, $sHTMLValue);
- }
- }
- }
- $oPage->add_script("oWizardHelper{$sFormPrefix}.m_oData=".$oWizardHelper->ToJSON().";\noWizardHelper{$sFormPrefix}.UpdateFields();\n");
- break;
-
- case 'obj_creation_form':
- $oPage->SetContentType('text/html');
- $sJson = utils::ReadParam('json_obj', '', false, 'raw_data');
- $oWizardHelper = WizardHelper::FromJSON($sJson);
- $oObj = $oWizardHelper->GetTargetObject();
- $sClass = $oWizardHelper->GetTargetClass();
- $sTargetState = utils::ReadParam('target_state', '');
- $iTransactionId = utils::ReadParam('transaction_id', '');
- $oObj->Set(MetaModel::GetStateAttributeCode($sClass), $sTargetState);
- cmdbAbstractObject::DisplayCreationForm($oPage, $sClass, $oObj, array(), array('action' => utils::GetAbsoluteUrlAppRoot().'pages/UI.php', 'transaction_id' => $iTransactionId));
- break;
-
- // DisplayBlock
- case 'ajax':
- $oPage->SetContentType('text/html');
- if ($sFilter != "")
- {
- $sExtraParams = stripslashes(utils::ReadParam('extra_params', '', false, 'raw_data'));
- $aExtraParams = array();
- if (!empty($sExtraParams))
- {
- $aExtraParams = json_decode(str_replace("'", '"', $sExtraParams), true /* associative array */);
- }
- // Restore the app context from the ExtraParams
- $oAppContext = new ApplicationContext(false); // false => don't read the context yet !
- $aContext = array();
- foreach($oAppContext->GetNames() as $sName)
- {
- $sParamName = 'c['.$sName.']';
- if (isset($aExtraParams[$sParamName]))
- {
- $aContext[$sName] = $aExtraParams[$sParamName];
- }
- }
- $_REQUEST['c'] = $aContext;
- if ($sEncoding == 'oql')
- {
- $oFilter = CMDBSearchFilter::FromOQL($sFilter);
- }
- else
- {
- $oFilter = CMDBSearchFilter::unserialize($sFilter);
- }
- $oDisplayBlock = new DisplayBlock($oFilter, $sStyle, false);
- $aExtraParams['display_limit'] = true;
- $aExtraParams['truncated'] = true;
- $oDisplayBlock->RenderContent($oPage, $aExtraParams);
- }
- else
- {
- $oPage->p("Invalid query (empty filter).");
- }
- break;
-
- case 'displayCSVHistory':
- $oPage->SetContentType('text/html');
- $bShowAll = (utils::ReadParam('showall', 'false') == 'true');
- BulkChange::DisplayImportHistory($oPage, true, $bShowAll);
- break;
-
- case 'details':
- $oPage->SetContentType('text/html');
- $key = utils::ReadParam('id', 0);
- $oFilter = new DBObjectSearch($sClass);
- $oFilter->AddCondition('id', $key, '=');
- $oDisplayBlock = new DisplayBlock($oFilter, 'details', false);
- $oDisplayBlock->RenderContent($oPage);
- break;
-
- case 'pie_chart':
- $oPage->SetContentType('application/json');
- $sGroupBy = utils::ReadParam('group_by', '');
- if ($sFilter != '')
- {
- if ($sEncoding == 'oql')
- {
- $oFilter = CMDBSearchFilter::FromOQL($sFilter);
- }
- else
- {
- $oFilter = CMDBSearchFilter::unserialize($sFilter);
- }
- $oDisplayBlock = new DisplayBlock($oFilter, 'pie_chart_ajax', false);
- $oDisplayBlock->RenderContent($oPage, array('group_by' => $sGroupBy));
- }
- else
- {
-
- $oPage->add("<chart>\n<chart_type>3d pie</chart_type><!-- empty filter '$sFilter' --></chart>\n.");
- }
- break;
-
- case 'open_flash_chart':
- // Workaround for IE8 + IIS + HTTPS
- // See TRAC #363, fix described here: http://forums.codecharge.com/posts.php?post_id=97771
- $oPage->add_header("Expires: Fri, 17 Jul 1970 05:00:00 GMT");
- $oPage->add_header("Cache-Control: cache, must-revalidate");
- $oPage->add_header("Pragma: public");
- $oPage->SetContentType('application/json');
- $aParams = utils::ReadParam('params', array(), false, 'raw_data');
- if ($sFilter != '')
- {
- $oFilter = CMDBSearchFilter::unserialize($sFilter);
- $oDisplayBlock = new DisplayBlock($oFilter, 'open_flash_chart_ajax', false);
- $oDisplayBlock->RenderContent($oPage, $aParams);
- }
- else
- {
-
- $oPage->add("<chart>\n<chart_type>3d pie</chart_type><!-- empty filter '$sFilter' --></chart>\n.");
- }
- break;
-
- case 'modal_details':
- $oPage->SetContentType('text/html');
- $key = utils::ReadParam('id', 0);
- $oFilter = new DBObjectSearch($sClass);
- $oFilter->AddCondition('id', $key, '=');
- $oPage->Add("<p style=\"width:100%; margin-top:-5px;padding:3px; background-color:#33f; color:#fff;\">Object Details</p>\n");
- $oDisplayBlock = new DisplayBlock($oFilter, 'details', false);
- $oDisplayBlock->RenderContent($oPage);
- $oPage->Add("<input type=\"button\" class=\"jqmClose\" value=\" Close \" />\n");
- break;
- case 'link':
- $oPage->SetContentType('text/html');
- $sClass = utils::ReadParam('sclass', 'logInfra', false, 'class');
- $sAttCode = utils::ReadParam('attCode', 'name');
- //$sOrg = utils::ReadParam('org_id', '');
- $sName = utils::ReadParam('q', '');
- $iMaxCount = utils::ReadParam('max', 30);
- $iCount = 0;
- $oFilter = new DBObjectSearch($sClass);
- $oFilter->AddCondition($sAttCode, $sName, 'Begins with');
- //$oFilter->AddCondition('org_id', $sOrg, '=');
- $oSet = new CMDBObjectSet($oFilter, array($sAttCode => true));
- while( ($iCount < $iMaxCount) && ($oObj = $oSet->fetch()) )
- {
- $oPage->add($oObj->GetAsHTML($sAttCode)."|".$oObj->GetKey()."\n");
- $iCount++;
- }
- break;
-
- case 'combo_options':
- $oPage->SetContentType('text/html');
- $oFilter = CMDBSearchFilter::FromOQL($sFilter);
- $oSet = new CMDBObjectSet($oFilter);
- while( $oObj = $oSet->fetch())
- {
- $oPage->add('<option title="Here is more information..." value="'.$oObj->GetKey().'">'.$oObj->GetName().'</option>');
- }
- break;
-
- case 'display_document':
- $id = utils::ReadParam('id', '');
- $sField = utils::ReadParam('field', '');
- if (!empty($sClass) && !empty($id) && !empty($sField))
- {
- DownloadDocument($oPage, $sClass, $id, $sField, 'inline');
- }
- break;
-
- case 'download_document':
- $id = utils::ReadParam('id', '');
- $sField = utils::ReadParam('field', '');
- if (!empty($sClass) && !empty($id) && !empty($sField))
- {
- DownloadDocument($oPage, $sClass, $id, $sField, 'attachment');
- }
- break;
-
- case 'search_form':
- $oPage->SetContentType('text/html');
- $sClass = utils::ReadParam('className', '', false, 'class');
- $sRootClass = utils::ReadParam('baseClass', '', false, 'class');
- $currentId = utils::ReadParam('currentId', '');
- $sTableId = utils::ReadParam('_table_id_', null, false, 'raw_data');
- $sAction = utils::ReadParam('action', '');
- $oFilter = new DBObjectSearch($sClass);
- $oSet = new CMDBObjectSet($oFilter);
- $sHtml = cmdbAbstractObject::GetSearchForm($oPage, $oSet, array('currentId' => $currentId, 'baseClass' => $sRootClass, 'action' => $sAction, 'table_id' => $sTableId));
- $oPage->add($sHtml);
- break;
-
- case 'set_pref':
- $sCode = utils::ReadPostedParam('code', '');
- $sValue = utils::ReadPostedParam('value', '', 'raw_data');
- appUserPreferences::SetPref($sCode, $sValue);
- break;
-
- case 'erase_all_pref':
- // Can be useful in case a user got some corrupted prefs...
- appUserPreferences::ClearPreferences();
- break;
- case 'on_form_cancel':
- // Called when a creation/modification form is cancelled by the end-user
- // Let's take this opportunity to inform the plug-ins so that they can perform some cleanup
- $iTransactionId = utils::ReadParam('transaction_id', 0);
- $sTempId = session_id().'_'.$iTransactionId;
- foreach (MetaModel::EnumPlugins('iApplicationUIExtension') as $oExtensionInstance)
- {
- $oExtensionInstance->OnFormCancel($sTempId);
- }
-
- break;
-
- case 'dashboard_editor':
- $sId = utils::ReadParam('id', '', false, 'raw_data');
-
- // Before searching for the menus make sure that all of them exist
- // Build menus from module handlers
- //
- foreach(get_declared_classes() as $sPHPClass)
- {
- if (is_subclass_of($sPHPClass, 'ModuleHandlerAPI'))
- {
- $aCallSpec = array($sPHPClass, 'OnMenuCreation');
- call_user_func($aCallSpec);
- }
- }
- $idx = ApplicationMenu::GetMenuIndexById($sId);
- $oMenu = ApplicationMenu::GetMenuNode($idx);
- $oMenu->RenderEditor($oPage);
- break;
-
- case 'new_dashlet':
- require_once(APPROOT.'application/forms.class.inc.php');
- require_once(APPROOT.'application/dashlet.class.inc.php');
- $sDashletClass = utils::ReadParam('dashlet_class', '');
- $sDashletId = utils::ReadParam('dashlet_id', '', false, 'raw_data');
- if (is_subclass_of($sDashletClass, 'Dashlet'))
- {
- $oDashlet = new $sDashletClass($sDashletId);
- $offset = $oPage->start_capture();
- $oDashlet->DoRender($oPage, true /* bEditMode */, false /* bEnclosingDiv */);
- $sHtml = addslashes($oPage->end_capture($offset));
- $sHtml = str_replace("\n", '', $sHtml);
- $sHtml = str_replace("\r", '', $sHtml);
-
- $oPage->add_script("$('#dashlet_$sDashletId').html('$sHtml')"); // in ajax web page add_script has the same effect as add_ready_script
- // but is executed BEFORE all 'ready_scripts'
- $oForm = $oDashlet->GetForm(); // Rebuild the form since the values/content changed
- $oForm->SetSubmitParams(utils::GetAbsoluteUrlAppRoot().'pages/ajax.render.php', array('operation' => 'update_dashlet_property'));
- $sHtml = addslashes($oForm->RenderAsPropertySheet($oPage, true /* bReturnHtml */));
- $sHtml = str_replace("\n", '', $sHtml);
- $sHtml = str_replace("\r", '', $sHtml);
- $oPage->add_script("$('#dashlet_properties_$sDashletId').html('$sHtml')"); // in ajax web page add_script has the same effect as add_ready_script // but is executed BEFORE all 'ready_scripts'
- }
- break;
-
- case 'update_dashlet_property':
- require_once(APPROOT.'application/forms.class.inc.php');
- require_once(APPROOT.'application/dashlet.class.inc.php');
- $aParams = utils::ReadParam('params', '', false, 'raw_data');
- $sDashletClass = $aParams['attr_dashlet_class'];
- $sDashletId = $aParams['attr_dashlet_id'];
- $aUpdatedProperties = $aParams['updated']; // Code of the changed properties as an array: 'attr_xxx', 'attr_xxy', etc...
- $aPreviousValues = $aParams['previous_values']; // hash array: 'attr_xxx' => 'old_value'
- if (is_subclass_of($sDashletClass, 'Dashlet'))
- {
- $oDashlet = new $sDashletClass($sDashletId);
- $oForm = $oDashlet->GetForm();
- $aValues = $oForm->ReadParams(); // hash array: 'xxx' => 'new_value'
-
- $aCurrentValues = $aValues;
- $aUpdatedDecoded = array();
- foreach($aUpdatedProperties as $sProp)
- {
- $sDecodedProp = str_replace('attr_', '', $sProp); // Remove the attr_ prefix
- $aCurrentValues[$sDecodedProp] = $aPreviousValues[$sProp]; // Set the previous value
- $aUpdatedDecoded[] = $sDecodedProp;
- }
-
- $oDashlet->FromParams($aCurrentValues);
- $sPrevClass = get_class($oDashlet);
- $oDashlet = $oDashlet->Update($aValues, $aUpdatedDecoded);
- $sNewClass = get_class($oDashlet);
- if ($sNewClass != $sPrevClass)
- {
- $oPage->add_ready_script("$('#dashlet_$sDashletId').dashlet('option', {dashlet_class: '$sNewClass'});");
- }
- if ($oDashlet->IsRedrawNeeded())
- {
- $offset = $oPage->start_capture();
- $oDashlet->DoRender($oPage, true /* bEditMode */, false /* bEnclosingDiv */);
- $sHtml = addslashes($oPage->end_capture($offset));
- $sHtml = str_replace("\n", '', $sHtml);
- $sHtml = str_replace("\r", '', $sHtml);
-
- $oPage->add_script("$('#dashlet_$sDashletId').html('$sHtml')"); // in ajax web page add_script has the same effect as add_ready_script
- // but is executed BEFORE all 'ready_scripts'
- }
- if ($oDashlet->IsFormRedrawNeeded())
- {
- $oForm = $oDashlet->GetForm(); // Rebuild the form since the values/content changed
- $oForm->SetSubmitParams(utils::GetAbsoluteUrlAppRoot().'pages/ajax.render.php', array('operation' => 'update_dashlet_property'));
- $sHtml = addslashes($oForm->RenderAsPropertySheet($oPage, true /* bReturnHtml */));
- $sHtml = str_replace("\n", '', $sHtml);
- $sHtml = str_replace("\r", '', $sHtml);
- $oPage->add_script("$('#dashlet_properties_$sDashletId').html('$sHtml')"); // in ajax web page add_script has the same effect as add_ready_script // but is executed BEFORE all 'ready_scripts'
- // but is executed BEFORE all 'ready_scripts'
- }
- }
- break;
-
- case 'save_dashboard':
- $sDashboardId = utils::ReadParam('dashboard_id', '', false, 'raw_data');
- $aParams = array();
- $aParams['layout_class'] = utils::ReadParam('layout_class', '');
- $aParams['title'] = utils::ReadParam('title', '', false, 'raw_data');
- $aParams['cells'] = utils::ReadParam('cells', array(), false, 'raw_data');
- $oDashboard = new RuntimeDashboard($sDashboardId);
- $oDashboard->FromParams($aParams);
- $oDashboard->Save();
- // trigger a reload of the current page since the dashboard just changed
- $oPage->add_ready_script("sLocation = new String(window.location.href); window.location.href=sLocation.replace('&edit=1', '');"); // reloads the page, doing a GET even if we arrived via a POST
- break;
- case 'revert_dashboard':
- $sDashboardId = utils::ReadParam('dashboard_id', '', false, 'raw_data');
- $oDashboard = new RuntimeDashboard($sDashboardId);
- $oDashboard->Revert();
-
- // trigger a reload of the current page since the dashboard just changed
- $oPage->add_ready_script("window.location.href=window.location.href;"); // reloads the page, doing a GET even if we arrived via a POST
- break;
-
- case 'render_dashboard':
- $sDashboardId = utils::ReadParam('dashboard_id', '', false, 'raw_data');
- $aParams = array();
- $aParams['layout_class'] = utils::ReadParam('layout_class', '');
- $aParams['title'] = utils::ReadParam('title', '', false, 'raw_data');
- $aParams['cells'] = utils::ReadParam('cells', array(), false, 'raw_data');
- $oDashboard = new RuntimeDashboard($sDashboardId);
- $oDashboard->FromParams($aParams);
- $oDashboard->Render($oPage, true /* bEditMode */);
- break;
-
- case 'dashlet_creation_dlg':
- $sOQL = utils::ReadParam('oql', '', false, 'raw_data');
- RuntimeDashboard::GetDashletCreationDlgFromOQL($oPage, $sOQL);
- break;
-
- case 'add_dashlet':
- $oForm = RuntimeDashboard::GetDashletCreationForm('');
- $aValues = $oForm->ReadParams();
-
- $sDashletClass = $aValues['dashlet_class'];
- $sMenuId = $aValues['menu_id'];
-
- if (is_subclass_of($sDashletClass, 'Dashlet'))
- {
- $oDashlet = new $sDashletClass(0);
- $oDashlet->FromParams($aValues);
- $index = ApplicationMenu::GetMenuIndexById($sMenuId);
- $oMenu = ApplicationMenu::GetMenuNode($index);
- $oMenu->AddDashlet($oDashlet);
- // navigate to the dashboard page
- if ($aValues['open_editor'])
- {
- $oPage->add_ready_script("window.location.href='".addslashes(utils::GetAbsoluteUrlAppRoot().'pages/UI.php?c[menu]='.urlencode($sMenuId))."&edit=1';"); // reloads the page, doing a GET even if we arrived via a POST
- }
- }
- break;
-
- default:
- $oPage->p("Invalid query.");
- }
- $oPage->output();
- }
- catch (Exception $e)
- {
- echo $e->GetMessage();
- IssueLog::Error($e->getMessage());
- }
- /**
- * Downloads a document to the browser, either as 'inline' or 'attachment'
- *
- * @param WebPage $oPage The web page for the output
- * @param string $sClass Class name of the object
- * @param mixed $id Identifier of the object
- * @param string $sAttCode Name of the attribute containing the document to download
- * @param string $sContentDisposition Either 'inline' or 'attachment'
- * @return none
- */
- function DownloadDocument(WebPage $oPage, $sClass, $id, $sAttCode, $sContentDisposition = 'attachment')
- {
- try
- {
- $oObj = MetaModel::GetObject($sClass, $id, false, false);
- if (!is_object($oObj))
- {
- throw new Exception("Invalid id ($id) for class '$sClass' - the object does not exist or you are not allowed to view it");
- }
- $oDocument = $oObj->Get($sAttCode);
- if (is_object($oDocument))
- {
- $oPage->SetContentType($oDocument->GetMimeType());
- $oPage->SetContentDisposition($sContentDisposition,$oDocument->GetFileName());
- $oPage->add($oDocument->GetData());
- }
- }
- catch(Exception $e)
- {
- $oPage->p($e->getMessage());
- }
- }
- ?>
|