123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- <?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
- /**
- * Class UILinksWidget
- *
- * @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('../application/webpage.class.inc.php');
- require_once('../application/displayblock.class.inc.php');
- class UILinksWidget
- {
- protected $m_sClass;
- protected $m_sAttCode;
- protected $m_sNameSuffix;
- protected $m_iInputId;
-
- public function __construct($sClass, $sAttCode, $iInputId, $sNameSuffix = '')
- {
- $this->m_sClass = $sClass;
- $this->m_sAttCode = $sAttCode;
- $this->m_sNameSuffix = $sNameSuffix;
- $this->m_iInputId = $iInputId;
- }
-
- public function Display(WebPage $oPage, $oCurrentValuesSet = null)
- {
- $sHTMLValue = '';
- $sTargetClass = self::GetTargetClass($this->m_sClass, $this->m_sAttCode);
- // #@# todo - add context information, otherwise any value will be authorized for external keys
- $aAllowedValues = MetaModel::GetAllowedValues_att($this->m_sClass, $this->m_sAttCode, array(), '');
- $oAttDef = MetaModel::GetAttributeDef($this->m_sClass, $this->m_sAttCode);
- $sExtKeyToRemote = $oAttDef->GetExtKeyToRemote();
- $sExtKeyToMe = $oAttDef->GetExtKeyToMe();
- $sStateAttCode = MetaModel::GetStateAttributeCode($this->m_sClass);
- $sDefaultState = MetaModel::GetDefaultState($this->m_sClass);
- $aAttributes = array();
- $sLinkedClass = $oAttDef->GetLinkedClass();
- foreach(MetaModel::ListAttributeDefs($sLinkedClass) as $sAttCode=>$oAttDef)
- {
- if ($sStateAttCode == $sAttCode)
- {
- // State attribute is always hidden from the UI
- }
- else if (!$oAttDef->IsExternalField() && ($sAttCode != $sExtKeyToMe) && ($sAttCode != $sExtKeyToRemote))
- {
- $iFlags = MetaModel::GetAttributeFlags($this->m_sClass, $sDefaultState, $sAttCode);
- if ( !($iFlags & OPT_ATT_HIDDEN) && !($iFlags & OPT_ATT_READONLY) )
- {
- $aAttributes[] = $sAttCode;
- }
- }
- }
- $sAttributes = '[]';
- if (count($aAttributes) > 0)
- {
- $sAttributes = "['".implode("','", $aAttributes)."']";
- }
- if ($oCurrentValuesSet != null)
- {
- // Serialize the link set into a JSon object
- $aCurrentValues = array();
- $oCurrentValuesSet->Rewind(); // Make sure we can iterate through this set...
- while($oLinkObj = $oCurrentValuesSet->Fetch())
- {
- $sRow = '{';
- foreach($aAttributes as $sLinkAttCode)
- {
- $sRow.= "\"$sLinkAttCode\": \"".addslashes($oLinkObj->Get($sLinkAttCode))."\", ";
- }
- $sRow .= "\"$sExtKeyToRemote\": ".$oLinkObj->Get($sExtKeyToRemote).'}';
- $aCurrentValues[] = $sRow;
- }
- $sJSON = '['.implode(',', $aCurrentValues).']';
- }
- else
- {
- $sJSON = '[]'; // Empty array;
- //echo "JSON VA IECH<br/>\n";
- }
- //echo "JASON: $sJSON<br/>\n";;
- // Many values (or even a unknown list) display an autocomplete
- if ( (count($aAllowedValues) == 0) || (count($aAllowedValues) > 50) )
- {
- // too many choices, use an autocomplete
- // The input for the auto complete
- $sTitle = $oAttDef->GetDescription();
- $sHTMLValue .= "<script type=\"text/javascript\">\n";
- $sHTMLValue .= "oLinkWidget{$this->m_iInputId} = new LinksWidget('{$this->m_iInputId}', '$sLinkedClass', '$sExtKeyToMe', '$sExtKeyToRemote', $sAttributes);\n";
- $sHTMLValue .= "</script>\n";
- $oPage->add_at_the_end($this->GetObjectPickerDialog($oPage, $sTargetClass, 'oLinkWidget'.$this->m_iInputId.'.OnOk')); // Forms should not be inside forms
- $oPage->add_at_the_end($this->GetLinkObjectDialog($oPage, $this->m_iInputId)); // Forms should not be inside forms
- $sHTMLValue .= "<input type=\"text\" id=\"ac_{$this->m_iInputId}\" size=\"35\" value=\"\" title=\"".Dict::S('UI:LinksWidget:Autocomplete+')."\"/>";
- $sHTMLValue .= "<input type=\"button\" id=\"ac_add_{$this->m_iInputId}\" value=\"".Dict::S('UI:Button:AddObject')."\" class=\"action\" onClick=\"oLinkWidget{$this->m_iInputId}.AddObject();\"/>";
- $sHTMLValue .= " <input type=\"button\" value=\"".Dict::S('UI:Button:BrowseObjects')."\" class=\"action\" onClick=\"return ManageObjects('$sTitle', '$sTargetClass', '$this->m_iInputId', '$sExtKeyToRemote');\"/> <span id=\"v_{$this->m_iInputId}\"></span>\n";
- // another hidden input to store & pass the object's Id
- $sHTMLValue .= "<input type=\"hidden\" id=\"id_ac_{$this->m_iInputId}\" onChange=\"EnableAddButton('{$this->m_iInputId}');\"/>\n";
- $sHTMLValue .= "<input type=\"hidden\" id=\"{$this->m_iInputId}\" name=\"attr_{$this->m_sAttCode}{$this->m_sNameSuffix}\" value=\"\"/>\n";
- $oPage->add_ready_script("\$('#{$this->m_iInputId}').val('$sJSON');\noLinkWidget{$this->m_iInputId}.Init();\n\$('#ac_{$this->m_iInputId}').autocomplete('./ajax.render.php', { scroll:true, minChars:3, onItemSelect:selectItem, onFindValue:findValue, formatItem:formatItem, autoFill:true, keyHolder:'#id_ac_{$this->m_iInputId}', extraParams:{operation:'ui.linkswidget', sclass:'{$this->m_sClass}', attCode:'{$this->m_sAttCode}', max:30}});");
- $oPage->add_ready_script("\$('#ac_add_{$this->m_iInputId}').attr('disabled', 'disabled');");
- $oPage->add_ready_script("\$('#ac_{$this->m_iInputId}').result( function(event, data, formatted) { if (data) { $('#id_ac_{$this->m_iInputId}').val(data[1]); $('#ac_add_{$this->m_iInputId}').attr('disabled', ''); } else { $('#ac_add_{$this->m_iInputId}').attr('disabled', 'disabled'); } } );");
- }
- else
- {
- // Few choices, use a normal 'select'
- $sHTMLValue = "<select name=\"attr_{$this->m_sAttCode}\" id=\"{$this->m_iInputId}\">\n";
- $sHTMLValue .= "<option value=\"0\">".Dict::S('UI:Combo:SelectValue')."</option>\n";
- if (count($aAllowedValues) > 0)
- {
- foreach($aAllowedValues as $key => $value)
- {
- $sHTMLValue .= "<option value=\"$key\"$sSelected>$value</option>\n";
- }
- }
- $sHTMLValue .= "</select>\n";
- }
- $sHTMLValue .= "<div id=\"{$this->m_iInputId}_values\">\n";
- if ($oCurrentValuesSet != null)
- {
- // transform the DBObjectSet into a CMDBObjectSet !!!
- $aLinkedObjects = $oCurrentValuesSet->ToArray(false);
- // Actual values will be displayed asynchronously, no need to display them here
- //if (count($aLinkedObjects) > 0)
- //{
- // $oSet = CMDBObjectSet::FromArray($sLinkedClass, $aLinkedObjects);
- // $oDisplayBlock = DisplayBlock::FromObjectSet($oSet, 'list');
- // $sHTMLValue .= $oDisplayBlock->GetDisplay($oPage, $this->m_iInputId.'_current', array('linkage' => $sExtKeyToMe, 'menu' => false));
- //}
- }
- $sHTMLValue .= "</div>\n";
- return $sHTMLValue;
- }
- /**
- * This static function is called by the Ajax Page when there is a need to fill an autocomplete combo
- * @param $oPage WebPage The ajax page used for the put^put (sent back to the browser
- * @param $oContext UserContext The context of the user (for limiting the search)
- * @param $sClass string The name of the class of the current object being edited
- * @param $sAttCode string The name of the attribute being edited
- * @param $sName string The partial name that was typed by the user
- * @param $iMaxCount integer The maximum number of items to return
- * @return void
- */
- static public function Autocomplete(WebPage $oPage, UserContext $oContext, $sClass, $sAttCode, $sName, $iMaxCount)
- {
- // #@# todo - add context information, otherwise any value will be authorized for external keys
- $aAllowedValues = MetaModel::GetAllowedValues_att($sClass, $sAttCode, array() /* $aArgs */, $sName);
- if ($aAllowedValues != null)
- {
- $iCount = $iMaxCount;
- foreach($aAllowedValues as $key => $value)
- {
- $oPage->add($value."|".$key."\n");
- $iCount--;
- if ($iCount == 0) break;
- }
- }
- else // No limitation to the allowed values
- {
- // Search for all the object of the linked class
- $oAttDef = $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
- $sLinkedClass = $oAttDef->GetLinkedClass();
- $sSearchClass = self::GetTargetClass($sClass, $sAttCode);
- $oFilter = $oContext->NewFilter($sSearchClass);
- $sSearchAttCode = MetaModel::GetNameAttributeCode($sSearchClass);
- $oFilter->AddCondition($sSearchAttCode, $sName, 'Begins with');
- $oSet = new CMDBObjectSet($oFilter, array($sSearchAttCode => true));
- $iCount = 0;
- while( ($iCount < $iMaxCount) && ($oObj = $oSet->fetch()) )
- {
- $oPage->add($oObj->GetName()."|".$oObj->GetKey()."\n");
- $iCount++;
- }
- }
- }
- /**
- * This static function is called by the Ajax Page display a set of objects being linked
- * to the object being created
- * @param $oPage WebPage The ajax page used for the put^put (sent back to the browser
- * @param $sClass string The name of the 'linking class' which is the class of the objects to display
- * @param $sSet JSON serialized set of objects
- * @param $sExtKeyToMe Name of the attribute in sClass that is pointing to a given object
- * @param $iObjectId The id of the object $sExtKeyToMe is pointing to
- * @return void
- */
- static public function RenderSet($oPage, $sClass, $sJSONSet, $sExtKeyToMe, $sExtKeyToRemote, $iObjectId)
- {
- $aSet = json_decode($sJSONSet, true); // true means hash array instead of object
- $oSet = CMDBObjectSet::FromScratch($sClass);
- foreach($aSet as $aObject)
- {
- $oObj = MetaModel::NewObject($sClass);
- foreach($aObject as $sAttCode => $value)
- {
- $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
- if ($oAttDef->IsExternalKey())
- {
- $oTargetObj = MetaModel::GetObject($oAttDef->GetTargetClass(), $value); // @@ optimization, don't do & query per object in the set !
- $oObj->Set($sAttCode, $oTargetObj);
- }
- else
- {
- $oObj->Set($sAttCode, $value);
- }
- }
- $oSet->AddObject($oObj);
- }
- $aExtraParams = array();
- $aExtraParams['link_attr'] = $sExtKeyToMe;
- $aExtraParams['object_id'] = $iObjectId;
- $aExtraParams['target_attr'] = $sExtKeyToRemote;
- $aExtraParams['menu'] = false;
- $aExtraParams['select'] = false;
- $aExtraParams['view_link'] = false;
-
- cmdbAbstractObject::DisplaySet($oPage, $oSet, $aExtraParams);
- }
-
- protected static function GetTargetClass($sClass, $sAttCode)
- {
- $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
- $sLinkedClass = $oAttDef->GetLinkedClass();
- switch(get_class($oAttDef))
- {
- case 'AttributeLinkedSetIndirect':
- $oLinkingAttDef = MetaModel::GetAttributeDef($sLinkedClass, $oAttDef->GetExtKeyToRemote());
- $sTargetClass = $oLinkingAttDef->GetTargetClass();
- break;
- case 'AttributeLinkedSet':
- $sTargetClass = $sLinkedClass;
- break;
- }
-
- return $sTargetClass;
- }
-
- protected function GetObjectPickerDialog($oPage, $sTargetClass, $sOkFunction)
- {
- $sDialogTitle = Dict::S('UI:ManageObjectsDlg');
- $sOkBtnLabel = Dict::S('UI:Button:Ok');
- $sCancelBtnLabel = Dict::S('UI:Button:Cancel');
- $sAddBtnLabel = Dict::S('UI:Button:AddToList');
- $sRemoveBtnLabel = Dict::S('UI:Button:RemoveFromList');
- $sFilterBtnLabel = Dict::S('UI:Button:FilterList');
- $sLabelSelectedObjects = Dict::S('UI:Label:SelectedObjects');
- $sLabelAvailableObjects = Dict::S('UI:Label:AvailableObjects');
- $sHTML = <<< EOF
- <div style="display:none" title="$sDialogTitle" id="ManageObjectsDlg_{$this->m_iInputId}">
- <div class="wizContainer">
- <table width="100%">
- <tr>
- <td>
- <p>$sLabelSelectedObjects</p>
- <button type="button" class="action" onClick="FilterLeft('$sTargetClass');"><span>$sFilterBtnLabel</span></button>
- <p><select id="selected_objects_{$this->m_iInputId}" size="10" multiple onChange="Manage_UpdateButtons('$this->m_iInputId')" style="width:300px;">
- </select></p>
- </td>
- <td style="text-align:center; valign:middle;">
- <p><button type="button" id="btn_add_objects_{$this->m_iInputId}" onClick="Manage_AddObjects('$this->m_iInputId');">$sAddBtnLabel</button></p>
- <p><button type="button" id="btn_remove_objects_{$this->m_iInputId}" onClick="Manage_RemoveObjects('$this->m_iInputId');">$sRemoveBtnLabel</button></p>
- </td>
- <td>
- <p>$sLabelAvailableObjects</p>
- <button type="button" class="action" onClick="FilterRight('$sTargetClass');"><span>$sFilterBtnLabel</span></button>
- <p><select id="available_objects_{$this->m_iInputId}" size="10" multiple onChange="Manage_UpdateButtons('$this->m_iInputId')" style="width:300px;">
- </select></p>
- </td>
- </tr>
- <tr>
- <td colspan="3">
- <input type="submit" onClick="$('#ManageObjectsDlg_{$this->m_iInputId}').dialog('close'); $sOkFunction('$sTargetClass', 'selected_objects'); return false;" value="$sOkBtnLabel" /> <button type="button" onClick="$('#ManageObjectsDlg_{$this->m_iInputId}').dialog('close');">$sCancelBtnLabel</button>
- </td>
- </tr>
- </table>
- </div>
- </div>
- EOF;
- $oPage->add_ready_script("$('#ManageObjectsDlg_$this->m_iInputId').dialog( {autoOpen: false, modal: true, width: 750, height: 350} );"); // JQuery UI dialog
- //$oPage->add_ready_script("UpdateObjectList('$sClass');");
- return $sHTML;
- }
-
- protected function GetLinkObjectDialog($oPage, $sId)
- {
- $oAttDef = MetaModel::GetAttributeDef($this->m_sClass, $this->m_sAttCode);
- $sLinkedClass = $oAttDef->GetLinkedClass();
- $sStateAttCode = MetaModel::GetStateAttributeCode($sLinkedClass);
- $sDefaultState = MetaModel::GetDefaultState($sLinkedClass);
- $oAttDef = MetaModel::GetAttributeDef($this->m_sClass, $this->m_sAttCode);
- $sExtKeyToMe = $oAttDef->GetExtKeyToMe();
- $sExtKeyToRemote = $oAttDef->GetExtKeyToRemote();
-
- $sHTML = "<div style=\"display:none\" title=\"".Dict::Format('UI:Link_Class_Attributes', MetaModel::GetName($sLinkedClass))."\" id=\"LinkDlg_$sId\">\n";
- $sHTML .= "<div class=\"wizContainer\">\n";
- $sHTML .= "<form action=\"./UI.php\" onSubmit=\"return oLinkWidget$sId.OnLinkOk();\">\n";
- $index = 0;
- $aAttrsMap = array();
- $aDetails = array();
- foreach(MetaModel::ListAttributeDefs($sLinkedClass) as $sAttCode=>$oAttDef)
- {
- if ($sStateAttCode == $sAttCode)
- {
- // State attribute is always hidden from the UI
- //$sHTMLValue = $this->GetStateLabel();
- //$aDetails[] = array('label' => $oAttDef->GetLabel(), 'value' => $sHTMLValue);
- }
- else if (!$oAttDef->IsExternalField() && ($sAttCode != $sExtKeyToMe) && ($sAttCode != $sExtKeyToRemote))
- {
- $iFlags = MetaModel::GetAttributeFlags($sLinkedClass, $sDefaultState, $sAttCode);
- if ($iFlags & OPT_ATT_HIDDEN)
- {
- // Attribute is hidden, do nothing
- }
- else
- {
- if ($iFlags & OPT_ATT_READONLY)
- {
- // Attribute is read-only
- $sHTMLValue = $this->GetAsHTML($sAttCode);
- }
- else
- {
- $sValue = ""; //$this->Get($sAttCode);
- $sDisplayValue = ""; //$this->GetEditValue($sAttCode);
- $sSubId = $sId.'_'.$index;
- $aAttrsMap[$sAttCode] = $sSubId;
- $index++;
- $sHTMLValue = cmdbAbstractObject::GetFormElementForField($oPage, $sLinkedClass, $sAttCode, $oAttDef, $sValue, $sDisplayValue, $sSubId, $this->m_sAttCode);
- }
- $aDetails[] = array('label' => $oAttDef->GetLabel(), 'value' => $sHTMLValue);
- }
- }
- }
- $sHTML .= $oPage->GetDetails($aDetails);
- $sHTML .= "<input type=\"submit\" onClick=\"oLinkWidget$sId.OnLinkOk(); return false;\" value=\"".Dict::S('UI:Button:Ok')."\" /> <button type=\"button\" onClick=\"oLinkWidget$sId.OnLinkCancel()\">".Dict::S('UI:Button:Cancel')."</button>\n";
- $sHTML .= "</form>\n";
- $sHTML .= "</div>\n";
- $sHTML .= "</div>\n";
- $oPage->add_ready_script("$('#LinkDlg_$sId').dialog( {autoOpen: false, modal: true, width: 300 } );"); // jQuery UI dialog
- //$oPage->add_ready_script("UpdateObjectList('$sClass');");
- return $sHTML;
- }
- }
- ?>
|