123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630 |
- <?php
- // Copyright (C) 2010-2016 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/>
- /**
- * Class cmdbObject
- *
- * @copyright Copyright (C) 2010-2016 Combodo SARL
- * @license http://opensource.org/licenses/AGPL-3.0
- */
- /**
- * cmdbObjectClass
- * the file to include, then the core is yours
- *
- * @package iTopORM
- */
- require_once('coreexception.class.inc.php');
- require_once('config.class.inc.php');
- require_once('log.class.inc.php');
- require_once('kpi.class.inc.php');
- require_once('dict.class.inc.php');
- require_once('attributedef.class.inc.php');
- require_once('filterdef.class.inc.php');
- require_once('stimulus.class.inc.php');
- require_once('valuesetdef.class.inc.php');
- require_once('MyHelpers.class.inc.php');
- require_once('oql/expression.class.inc.php');
- require_once('oql/oqlquery.class.inc.php');
- require_once('oql/oqlexception.class.inc.php');
- require_once('oql/oql-parser.php');
- require_once('oql/oql-lexer.php');
- require_once('oql/oqlinterpreter.class.inc.php');
- require_once('cmdbsource.class.inc.php');
- require_once('sqlquery.class.inc.php');
- require_once('sqlobjectquery.class.inc.php');
- require_once('sqlunionquery.class.inc.php');
- require_once('dbobject.class.php');
- require_once('dbsearch.class.php');
- require_once('dbobjectset.class.php');
- require_once('backgroundprocess.inc.php');
- require_once('asynctask.class.inc.php');
- require_once('dbproperty.class.inc.php');
- // db change tracking data model
- require_once('cmdbchange.class.inc.php');
- require_once('cmdbchangeop.class.inc.php');
- // customization data model
- // Romain: temporary moved into application.inc.php (see explanations there)
- //require_once('trigger.class.inc.php');
- //require_once('action.class.inc.php');
- // application log
- // Romain: temporary moved into application.inc.php (see explanations there)
- //require_once('event.class.inc.php');
- require_once('templatestring.class.inc.php');
- require_once('csvparser.class.inc.php');
- require_once('bulkchange.class.inc.php');
- /**
- * A persistent object, which changes are accurately recorded
- *
- * @package iTopORM
- */
- abstract class CMDBObject extends DBObject
- {
- protected $m_datCreated;
- protected $m_datUpdated;
- // Note: this value is static, but that could be changed because it is sometimes a real issue (see update of interfaces / connected_to
- protected static $m_oCurrChange = null;
- protected static $m_sInfo = null; // null => the information is built in a standard way
- protected static $m_sOrigin = null; // null => the origin is 'interactive'
-
- /**
- * Specify another change (this is mainly for backward compatibility)
- */
- public static function SetCurrentChange(CMDBChange $oChange)
- {
- self::$m_oCurrChange = $oChange;
- }
- //
- // Todo: simplify the APIs and do not pass the current change as an argument anymore
- // SetTrackInfo to be invoked in very few cases (UI.php, CSV import, Data synchro)
- // SetCurrentChange is an alternative to SetTrackInfo (csv ?)
- // GetCurrentChange to be called ONCE (!) by CMDBChangeOp::OnInsert ($this->Set('change', ..GetCurrentChange())
- // GetCurrentChange to create a default change if not already done in the current context
- //
- /**
- * Get a change record (create it if not existing)
- */
- public static function GetCurrentChange($bAutoCreate = true)
- {
- if ($bAutoCreate && is_null(self::$m_oCurrChange))
- {
- self::CreateChange();
- }
- return self::$m_oCurrChange;
- }
- /**
- * Override the additional information (defaulting to user name)
- * A call to this verb should replace every occurence of
- * $oMyChange = MetaModel::NewObject("CMDBChange");
- * $oMyChange->Set("date", time());
- * $oMyChange->Set("userinfo", 'this is done by ... for ...');
- * $iChangeId = $oMyChange->DBInsert();
- */
- public static function SetTrackInfo($sInfo)
- {
- self::$m_sInfo = $sInfo;
- }
- /**
- * Provides information about the origin of the change
- * @param $sOrigin String: one of: interactive, csv-interactive, csv-import.php, webservice-soap, webservice-rest, syncho-data-source, email-processing, custom-extension
- */
- public static function SetTrackOrigin($sOrigin)
- {
- self::$m_sOrigin = $sOrigin;
- }
-
- /**
- * Get the additional information (defaulting to user name)
- */
- protected static function GetTrackInfo()
- {
- if (is_null(self::$m_sInfo))
- {
- return CMDBChange::GetCurrentUserName();
- }
- else
- {
- return self::$m_sInfo;
- }
- }
-
- /**
- * Get the 'origin' information (defaulting to 'interactive')
- */
- protected static function GetTrackOrigin()
- {
- if (is_null(self::$m_sOrigin))
- {
- return 'interactive';
- }
- else
- {
- return self::$m_sOrigin;
- }
- }
-
- /**
- * Create a standard change record (done here 99% of the time, and nearly once per page)
- */
- protected static function CreateChange()
- {
- self::$m_oCurrChange = MetaModel::NewObject("CMDBChange");
- self::$m_oCurrChange->Set("date", time());
- self::$m_oCurrChange->Set("userinfo", self::GetTrackInfo());
- self::$m_oCurrChange->Set("origin", self::GetTrackOrigin());
- self::$m_oCurrChange->DBInsert();
- }
- protected function RecordObjCreation()
- {
- // Delete any existing change tracking about the current object (IDs can be reused due to InnoDb bug; see TRAC #886)
- //
- // 1 - remove the deletion record(s)
- // Note that objclass contain the ROOT class
- $oFilter = new DBObjectSearch('CMDBChangeOpDelete');
- $oFilter->AddCondition('objclass', MetaModel::GetRootClass(get_class($this)), '=');
- $oFilter->AddCondition('objkey', $this->GetKey(), '=');
- MetaModel::PurgeData($oFilter);
- // 2 - any other change tracking information left prior to 2.0.3 (when the purge of the history has been implemented in RecordObjDeletion
- // In that case, objclass is the final class of the object
- $oFilter = new DBObjectSearch('CMDBChangeOp');
- $oFilter->AddCondition('objclass', get_class($this), '=');
- $oFilter->AddCondition('objkey', $this->GetKey(), '=');
- MetaModel::PurgeData($oFilter);
- parent::RecordObjCreation();
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpCreate");
- $oMyChangeOp->Set("objclass", get_class($this));
- $oMyChangeOp->Set("objkey", $this->GetKey());
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- protected function RecordObjDeletion($objkey)
- {
- $sRootClass = MetaModel::GetRootClass(get_class($this));
- // Delete any existing change tracking about the current object
- $oFilter = new DBObjectSearch('CMDBChangeOp');
- $oFilter->AddCondition('objclass', get_class($this), '=');
- $oFilter->AddCondition('objkey', $objkey, '=');
- MetaModel::PurgeData($oFilter);
- parent::RecordObjDeletion($objkey);
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpDelete");
- $oMyChangeOp->Set("objclass", MetaModel::GetRootClass(get_class($this)));
- $oMyChangeOp->Set("objkey", $objkey);
- $oMyChangeOp->Set("fclass", get_class($this));
- $oMyChangeOp->Set("fname", substr($this->GetRawName(), 0, 255)); // Protect against very long friendly names
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- protected function RecordAttChanges(array $aValues, array $aOrigValues)
- {
- parent::RecordAttChanges($aValues, $aOrigValues);
- // $aValues is an array of $sAttCode => $value
- //
- foreach ($aValues as $sAttCode=> $value)
- {
- $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- if ($oAttDef->IsExternalField()) continue;
- if ($oAttDef->IsLinkSet()) continue;
- if ($oAttDef->GetTrackingLevel() == ATTRIBUTE_TRACKING_NONE) continue;
- if (array_key_exists($sAttCode, $aOrigValues))
- {
- $original = $aOrigValues[$sAttCode];
- }
- else
- {
- $original = null;
- }
- if ($oAttDef instanceOf AttributeOneWayPassword)
- {
- // One Way encrypted passwords' history is stored -one way- encrypted
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeOneWayPassword");
- $oMyChangeOp->Set("objclass", get_class($this));
- $oMyChangeOp->Set("objkey", $this->GetKey());
- $oMyChangeOp->Set("attcode", $sAttCode);
- if (is_null($original))
- {
- $original = '';
- }
- $oMyChangeOp->Set("prev_pwd", $original);
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- elseif ($oAttDef instanceOf AttributeEncryptedString)
- {
- // Encrypted string history is stored encrypted
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeEncrypted");
- $oMyChangeOp->Set("objclass", get_class($this));
- $oMyChangeOp->Set("objkey", $this->GetKey());
- $oMyChangeOp->Set("attcode", $sAttCode);
- if (is_null($original))
- {
- $original = '';
- }
- $oMyChangeOp->Set("prevstring", $original);
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- elseif ($oAttDef instanceOf AttributeBlob)
- {
- // Data blobs
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeBlob");
- $oMyChangeOp->Set("objclass", get_class($this));
- $oMyChangeOp->Set("objkey", $this->GetKey());
- $oMyChangeOp->Set("attcode", $sAttCode);
- if (is_null($original))
- {
- $original = new ormDocument();
- }
- $oMyChangeOp->Set("prevdata", $original);
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- elseif ($oAttDef instanceOf AttributeStopWatch)
- {
- // Stop watches - record changes for sub items only (they are visible, the rest is not visible)
- //
- foreach ($oAttDef->ListSubItems() as $sSubItemAttCode => $oSubItemAttDef)
- {
- $item_value = $oSubItemAttDef->GetValue($this);
- $item_original = $oSubItemAttDef->GetValue($this, true);
- if ($item_value != $item_original)
- {
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeScalar");
- $oMyChangeOp->Set("objclass", get_class($this));
- $oMyChangeOp->Set("objkey", $this->GetKey());
- $oMyChangeOp->Set("attcode", $sSubItemAttCode);
-
- $oMyChangeOp->Set("oldvalue", $item_original);
- $oMyChangeOp->Set("newvalue", $item_value);
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- }
- }
- elseif ($oAttDef instanceOf AttributeCaseLog)
- {
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeCaseLog");
- $oMyChangeOp->Set("objclass", get_class($this));
- $oMyChangeOp->Set("objkey", $this->GetKey());
- $oMyChangeOp->Set("attcode", $sAttCode);
- $oMyChangeOp->Set("lastentry", $value->GetLatestEntryIndex());
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- elseif ($oAttDef instanceOf AttributeLongText)
- {
- // Data blobs
- if ($oAttDef->GetFormat() == 'html')
- {
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeHTML");
- }
- else
- {
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeLongText");
- }
- $oMyChangeOp->Set("objclass", get_class($this));
- $oMyChangeOp->Set("objkey", $this->GetKey());
- $oMyChangeOp->Set("attcode", $sAttCode);
- if (!is_null($original) && ($original instanceof ormCaseLog))
- {
- $original = $original->GetText();
- }
- $oMyChangeOp->Set("prevdata", $original);
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- elseif ($oAttDef instanceOf AttributeText)
- {
- // Data blobs
- if ($oAttDef->GetFormat() == 'html')
- {
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeHTML");
- }
- else
- {
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeText");
- }
- $oMyChangeOp->Set("objclass", get_class($this));
- $oMyChangeOp->Set("objkey", $this->GetKey());
- $oMyChangeOp->Set("attcode", $sAttCode);
- if (!is_null($original) && ($original instanceof ormCaseLog))
- {
- $original = $original->GetText();
- }
- $oMyChangeOp->Set("prevdata", $original);
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- elseif ($oAttDef instanceOf AttributeBoolean)
- {
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeScalar");
- $oMyChangeOp->Set("objclass", get_class($this));
- $oMyChangeOp->Set("objkey", $this->GetKey());
- $oMyChangeOp->Set("attcode", $sAttCode);
- $oMyChangeOp->Set("oldvalue", $original ? 1 : 0);
- $oMyChangeOp->Set("newvalue", $value ? 1 : 0);
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- elseif ($oAttDef instanceOf AttributeHierarchicalKey)
- {
- // Hierarchical keys
- //
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeScalar");
- $oMyChangeOp->Set("objclass", get_class($this));
- $oMyChangeOp->Set("objkey", $this->GetKey());
- $oMyChangeOp->Set("attcode", $sAttCode);
- $oMyChangeOp->Set("oldvalue", $original);
- $oMyChangeOp->Set("newvalue", $value[$sAttCode]);
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- else
- {
- // Scalars
- //
- $oMyChangeOp = MetaModel::NewObject("CMDBChangeOpSetAttributeScalar");
- $oMyChangeOp->Set("objclass", get_class($this));
- $oMyChangeOp->Set("objkey", $this->GetKey());
- $oMyChangeOp->Set("attcode", $sAttCode);
- $oMyChangeOp->Set("oldvalue", $original);
- $oMyChangeOp->Set("newvalue", $value);
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- }
- }
- /**
- * Helper to ultimately check user rights before writing (Insert, Update or Delete)
- * The check should never fail, because the UI should prevent from such a usage
- * Anyhow, if the user has found a workaround... the security gets enforced here
- */
- protected function CheckUserRights($bSkipStrongSecurity, $iActionCode)
- {
- if (is_null($bSkipStrongSecurity))
- {
- // This is temporary
- // We have implemented this safety net right before releasing iTop 1.0
- // and we decided that it was too risky to activate it
- // Anyhow, users willing to have a very strong security could set
- // skip_strong_security = 0, in the config file
- $bSkipStrongSecurity = MetaModel::GetConfig()->Get('skip_strong_security');
- }
- if (!$bSkipStrongSecurity)
- {
- $sClass = get_class($this);
- $oSet = DBObjectSet::FromObject($this);
- if (!UserRights::IsActionAllowed($sClass, $iActionCode, $oSet))
- {
- // Intrusion detected
- throw new SecurityException('You are not allowed to modify objects of class: '.$sClass);
- }
- }
- }
- public function DBInsertTracked(CMDBChange $oChange, $bSkipStrongSecurity = null)
- {
- self::SetCurrentChange($oChange);
- $this->CheckUserRights($bSkipStrongSecurity, UR_ACTION_MODIFY);
- $ret = $this->DBInsertTracked_Internal();
- return $ret;
- }
-
- public function DBInsertTrackedNoReload(CMDBChange $oChange, $bSkipStrongSecurity = null)
- {
- self::SetCurrentChange($oChange);
- $this->CheckUserRights($bSkipStrongSecurity, UR_ACTION_MODIFY);
- $ret = $this->DBInsertTracked_Internal(true);
- return $ret;
- }
-
- /**
- * To Be Obsoleted: DO NOT rely on an overload of this method since
- * DBInsertTracked (resp. DBInsertTrackedNoReload) may call directly
- * DBInsert (resp. DBInsertNoReload) in future versions of iTop.
- * @param bool $bDoNotReload
- * @return integer Identifier of the created object
- */
- protected function DBInsertTracked_Internal($bDoNotReload = false)
- {
- if ($bDoNotReload)
- {
- $ret = $this->DBInsertNoReload();
- }
- else
- {
- $ret = $this->DBInsert();
- }
- return $ret;
- }
- public function DBClone($newKey = null)
- {
- return $this->DBCloneTracked_Internal();
- }
- public function DBCloneTracked(CMDBChange $oChange, $newKey = null)
- {
- self::SetCurrentChange($oChange);
- $this->DBCloneTracked_Internal($newKey);
- }
- protected function DBCloneTracked_Internal($newKey = null)
- {
- $newKey = parent::DBClone($newKey);
- $oClone = MetaModel::GetObject(get_class($this), $newKey);
- return $newKey;
- }
- public function DBUpdate()
- {
- // Copy the changes list before the update (the list should be reset afterwards)
- $aChanges = $this->ListChanges();
- if (count($aChanges) == 0)
- {
- return;
- }
-
- $ret = parent::DBUpdate();
- return $ret;
- }
- public function DBUpdateTracked(CMDBChange $oChange, $bSkipStrongSecurity = null)
- {
- self::SetCurrentChange($oChange);
- $this->CheckUserRights($bSkipStrongSecurity, UR_ACTION_MODIFY);
- $this->DBUpdate();
- }
- public function DBDelete(&$oDeletionPlan = null)
- {
- return $this->DBDeleteTracked_Internal($oDeletionPlan);
- }
- public function DBDeleteTracked(CMDBChange $oChange, $bSkipStrongSecurity = null, &$oDeletionPlan = null)
- {
- self::SetCurrentChange($oChange);
- $this->CheckUserRights($bSkipStrongSecurity, UR_ACTION_DELETE);
- $this->DBDeleteTracked_Internal($oDeletionPlan);
- }
- protected function DBDeleteTracked_Internal(&$oDeletionPlan = null)
- {
- $prevkey = $this->GetKey();
- $ret = parent::DBDelete($oDeletionPlan);
- return $ret;
- }
- public static function BulkUpdate(DBSearch $oFilter, array $aValues)
- {
- return $this->BulkUpdateTracked_Internal($oFilter, $aValues);
- }
- public static function BulkUpdateTracked(CMDBChange $oChange, DBSearch $oFilter, array $aValues)
- {
- self::SetCurrentChange($oChange);
- $this->BulkUpdateTracked_Internal($oFilter, $aValues);
- }
- protected static function BulkUpdateTracked_Internal(DBSearch $oFilter, array $aValues)
- {
- // $aValues is an array of $sAttCode => $value
- // Get the list of objects to update (and load it before doing the change)
- $oObjSet = new CMDBObjectSet($oFilter);
- $oObjSet->Load();
- // Keep track of the previous values (will be overwritten when the objects are synchronized with the DB)
- $aOriginalValues = array();
- $oObjSet->Rewind();
- while ($oItem = $oObjSet->Fetch())
- {
- $aOriginalValues[$oItem->GetKey()] = $oItem->m_aOrigValues;
- }
- // Update in one single efficient query
- $ret = parent::BulkUpdate($oFilter, $aValues);
- // Record... in many queries !!!
- $oObjSet->Rewind();
- while ($oItem = $oObjSet->Fetch())
- {
- $aChangedValues = $oItem->ListChangedValues($aValues);
- $oItem->RecordAttChanges($aChangedValues, $aOriginalValues[$oItem->GetKey()]);
- }
- return $ret;
- }
- }
- /**
- * TODO: investigate how to get rid of this class that was made to workaround some language limitation... or a poor design!
- *
- * @package iTopORM
- */
- class CMDBObjectSet extends DBObjectSet
- {
- // this is the public interface (?)
-
- // I have to define those constructors here... :-(
- // just to get the right object class in return.
- // I have to think again to those things: maybe it will work fine if a have a constructor define here (?)
-
- static public function FromScratch($sClass)
- {
- $oFilter = new DBObjectSearch($sClass);
- $oFilter->AddConditionExpression(new FalseExpression());
- $oRetSet = new self($oFilter);
- // NOTE: THIS DOES NOT WORK IF m_bLoaded is private in the base class (and you will not get any error message)
- $oRetSet->m_bLoaded = true; // no DB load
- return $oRetSet;
- }
- // create an object set ex nihilo
- // input = array of objects
- static public function FromArray($sClass, $aObjects)
- {
- $oRetSet = self::FromScratch($sClass);
- $oRetSet->AddObjectArray($aObjects, $sClass);
- return $oRetSet;
- }
- static public function FromArrayAssoc($aClasses, $aObjects)
- {
- // In a perfect world, we should create a complete tree of DBObjectSearch,
- // but as we lack most of the information related to the objects,
- // let's create one search definition
- $sClass = reset($aClasses);
- $sAlias = key($aClasses);
- $oFilter = new DBObjectSearch($sClass, $sAlias);
- $oRetSet = new CMDBObjectSet($oFilter);
- $oRetSet->m_bLoaded = true; // no DB load
- foreach($aObjects as $rowIndex => $aObjectsByClassAlias)
- {
- $oRetSet->AddObjectExtended($aObjectsByClassAlias);
- }
- return $oRetSet;
- }
- }
|