123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <?php
- // Copyright (C) 2010-2017 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/>
- /**
- * Store and retrieve user's preferences (i.e persistent per user settings)
- *
- * @copyright Copyright (C) 2010-2017 Combodo SARL
- * @license http://opensource.org/licenses/AGPL-3.0
- */
- require_once(APPROOT.'/core/dbobject.class.php');
- require_once(APPROOT.'/core/userrights.class.inc.php');
- /**
- * This class is used to store, in a persistent manner, user related settings (preferences)
- * For each user, one record in the database will be created, making their preferences permanent and storing a list
- * of properties (pairs of name/value strings)
- * This overcomes some limitations of cookies: limited number of cookies, maximum size, depends on the browser, etc..
- * This class is used in conjunction with the GetUserPreferences/SetUserPreferences javascript functions (utils.js)
- */
- class appUserPreferences extends DBObject
- {
- static $oUserPrefs = null; // Local cache
-
- /**
- * Get the value of the given property/preference
- * If not set, the default value will be returned
- * @param string $sCode Code/Name of the property to set
- * @param string $sDefaultValue The default value
- * @return string The value of the property for the current user
- */
- static function GetPref($sCode, $sDefaultValue)
- {
- if (self::$oUserPrefs == null)
- {
- self::Load();
- }
- $aPrefs = self::$oUserPrefs->Get('preferences');
- if (array_key_exists($sCode, $aPrefs))
- {
- return $aPrefs[$sCode];
- }
- else
- {
- return $sDefaultValue;
- }
- }
-
- /**
- * Set the value for a given preference, and stores it into the database
- * @param string $sCode Code/Name of the property/preference to set
- * @param string $sValue Value to set
- */
- static function SetPref($sCode, $sValue)
- {
- if (self::$oUserPrefs == null)
- {
- self::Load();
- }
- $aPrefs = self::$oUserPrefs->Get('preferences');
- if (array_key_exists($sCode, $aPrefs) && ($aPrefs[$sCode] === $sValue))
- {
- // Do not write it again
- }
- else
- {
- $aPrefs[$sCode] = $sValue;
- self::$oUserPrefs->Set('preferences', $aPrefs);
- self::Save();
- }
- }
-
- /**
- * Clears the value for a given preference (or list of preferences that matches a pattern), and updates the database
- * @param string $sPattern Code/Pattern of the properties/preferences to reset
- * @param boolean $bPattern Whether or not the supplied code is a PCRE pattern
- */
- static function UnsetPref($sCodeOrPattern, $bPattern = false)
- {
- if (self::$oUserPrefs == null)
- {
- self::Load();
- }
- $aPrefs = self::$oUserPrefs->Get('preferences');
- if ($bPattern)
- {
- // the supplied code is a pattern, clear all preferences that match
- foreach($aPrefs as $sKey => $void)
- {
- if (preg_match($sCodeOrPattern, $sKey))
- {
- unset($aPrefs[$sKey]);
- }
- }
- self::$oUserPrefs->Set('preferences', $aPrefs);
- }
- else
- {
- unset($aPrefs[$sCodeOrPattern]);
- self::$oUserPrefs->Set('preferences', $aPrefs);
- }
- // Save only if needed
- if (self::$oUserPrefs->IsModified())
- {
- self::Save();
- }
- }
-
- /**
- * Call this function to get all the preferences for the user, packed as a JSON object
- * @return string JSON representation of the preferences
- */
- static function GetAsJSON()
- {
- if (self::$oUserPrefs == null)
- {
- self::Load();
- }
- $aPrefs = self::$oUserPrefs->Get('preferences');
- return json_encode($aPrefs);
- }
- /**
- * Call this function if the user has changed (like when doing a logoff...)
- */
- static public function ResetPreferences()
- {
- self::$oUserPrefs = null;
- }
- /**
- * Call this function to ERASE all the preferences from the current user
- */
- static public function ClearPreferences()
- {
- self::$oUserPrefs = null;
- }
-
- static protected function Save()
- {
- if (self::$oUserPrefs != null)
- {
- if (self::$oUserPrefs->IsModified())
- {
- self::$oUserPrefs->DBUpdate();
- }
- }
- }
-
- /**
- * Loads the preferences for the current user, creating the record in the database
- * if needed
- */
- static protected function Load()
- {
- if (self::$oUserPrefs != null) return;
- $oSearch = new DBObjectSearch('appUserPreferences');
- $oSearch->AddCondition('userid', UserRights::GetUserId(), '=');
- $oSet = new DBObjectSet($oSearch);
- $oObj = $oSet->Fetch();
- if ($oObj == null)
- {
- // No prefs (yet) for this user, create the object
- $oObj = new appUserPreferences();
- $oObj->Set('userid', UserRights::GetUserId());
- $oObj->Set('preferences', array()); // Default preferences: an empty array
- try
- {
- $oObj->DBInsert();
- }
- catch(Exception $e)
- {
- // Ignore errors
- }
- }
- self::$oUserPrefs = $oObj;
- }
- public static function Init()
- {
- $aParams = array
- (
- "category" => "gui",
- "key_type" => "autoincrement",
- "name_attcode" => "userid",
- "state_attcode" => "",
- "reconc_keys" => array(),
- "db_table" => "priv_app_preferences",
- "db_key_field" => "id",
- "db_finalclass_field" => "",
- );
-
- MetaModel::Init_Params($aParams);
- MetaModel::Init_AddAttribute(new AttributeExternalKey("userid", array("targetclass"=>"User", "allowed_values"=>null, "sql"=>"userid", "is_null_allowed"=>false, "on_target_delete"=>DEL_AUTO, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributePropertySet("preferences", array("allowed_values"=>null, "sql"=>"preferences", "default_value"=>null, "is_null_allowed"=>true, "depends_on"=>array())));
- }
- /**
- * Overloading this function here to secure a fix done right before the release
- * The real fix should be to implement this verb in DBObject
- */
- public function DBDeleteTracked(CMDBChange $oChange, $bSkipStrongSecurity = null, &$oDeletionPlan = null)
- {
- $this->DBDelete($oDeletionPlan);
- }
- }
- ?>
|