Someone added some prefs hooks to the file-based prefs backend but never added them...
[squirrelmail.git] / functions / db_prefs.php
index 63db4a26186c6bec9112e4ea56e7fb0148db4a43..71422f1345587e04353774889f6efdb096091d7e 100644 (file)
@@ -3,14 +3,10 @@
 /**
  * db_prefs.php
  *
- * Copyright (c) 1999-2005 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
  * This contains functions for manipulating user preferences
  * stored in a database, accessed though the Pear DB layer.
  *
  * Database:
- * ---------
  *
  * The preferences table should have three columns:
  *    user       char  \  primary
@@ -25,6 +21,8 @@
  * Configuration of databasename, username and password is done
  * by using conf.pl or the administrator plugin
  *
+ * @copyright © 1999-2007 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
  * @subpackage prefs
@@ -41,17 +39,11 @@ define('SMDB_MYSQL', 1);
 /** PostgreSQL */
 define('SMDB_PGSQL', 2);
 
-require_once(SM_PATH . 'config/config.php');
-if (!include_once('DB.php')) {
-    // same error also in abook_database.php
-    require_once(SM_PATH . 'functions/display_messages.php');
-    $error  = _("Could not include PEAR database functions required for the database backend.") . "<br />\n";
-    $error .= sprintf(_("Is PEAR installed, and is the include path set correctly to find %s?"),
-                        '<tt>DB.php</tt>') . "<br />\n";
-    $error .= _("Please contact your system administrator and report this error.");
-    error_box($error, $color);
-    exit;
-}
+/**
+ * don't display errors (no code execution in functions/*.php).
+ * will handle error in dbPrefs class.
+ */
+@include_once('DB.php');
 
 global $prefs_are_cached, $prefs_cache;
 
@@ -92,9 +84,11 @@ function cachePrefValues($username) {
 
 /**
  * Class used to handle connections to prefs database and operations with preferences
+ *
  * @package squirrelmail
  * @subpackage prefs
  * @since 1.1.3
+ *
  */
 class dbPrefs {
     /**
@@ -102,16 +96,19 @@ class dbPrefs {
      * @var string
      */
     var $table = 'userprefs';
+
     /**
      * Field used to store owner of preference
      * @var string
      */
     var $user_field = 'user';
+
     /**
      * Field used to store preference name
      * @var string
      */
     var $key_field = 'prefkey';
+
     /**
      * Field used to store preference value
      * @var string
@@ -123,11 +120,13 @@ class dbPrefs {
      * @var object
      */
     var $dbh   = NULL;
+
     /**
      * Error messages
      * @var string
      */
     var $error = NULL;
+
     /**
      * Database type (SMDB_* constants)
      * Is used in setKey().
@@ -148,12 +147,14 @@ class dbPrefs {
      * @since 1.5.1
      */
     var $user_size = 128;
+
     /**
      * Preference key field size
      * @var integer
      * @since 1.5.1
      */
     var $key_size = 64;
+
     /**
      * Preference value field size
      * @var integer
@@ -161,15 +162,50 @@ class dbPrefs {
      */
     var $val_size = 65536;
 
+
+
+    /**
+     * initialize the default preferences array.
+     *
+     */
+    function dbPrefs() {
+        // Try and read the default preferences file.
+        $default_pref = SM_PATH . 'config/default_pref';
+        if (@file_exists($default_pref)) {
+            if ($file = @fopen($default_pref, 'r')) {
+                while (!feof($file)) {
+                    $pref = fgets($file, 1024);
+                    $i = strpos($pref, '=');
+                    if ($i > 0) {
+                        $this->default[trim(substr($pref, 0, $i))] = trim(substr($pref, $i + 1));
+                    }
+                }
+                fclose($file);
+            }
+        }
+    }
+
     /**
      * initialize DB connection object
+     *
      * @return boolean true, if object is initialized
+     *
      */
     function open() {
         global $prefs_dsn, $prefs_table;
         global $prefs_user_field, $prefs_key_field, $prefs_val_field;
         global $prefs_user_size, $prefs_key_size, $prefs_val_size;
 
+        /* test if Pear DB class is available and freak out if it is not */
+        if (! class_exists('DB')) {
+            // same error also in abook_database.php
+            $this->error  = _("Could not include PEAR database functions required for the database backend.") . "\n";
+            $this->error .= sprintf(_("Is PEAR installed, and is the include path set correctly to find %s?"),
+                              'DB.php') . "\n";
+            $this->error .= _("Please contact your system administrator and report this error.");
+            return false;
+        }
+
         if(isset($this->dbh)) {
             return true;
         }
@@ -214,7 +250,9 @@ class dbPrefs {
 
     /**
      * Function used to handle database connection errors
-     * @param object PEAR Error object 
+     *
+     * @param object PEAR Error object
+     *
      */
     function failQuery($res = NULL) {
         if($res == NULL) {
@@ -229,32 +267,48 @@ class dbPrefs {
 
     /**
      * Get user's prefs setting
+     *
      * @param string $user user name
      * @param string $key preference name
      * @param mixed $default (since 1.2.5) default value
+     *
      * @return mixed preference value
+     *
      */
     function getKey($user, $key, $default = '') {
         global $prefs_cache;
 
-        cachePrefValues($user);
+        $temp = array(&$user, &$key);
+        $result = do_hook('get_pref_override', $temp);
+        if (is_null($result)) {
+            cachePrefValues($user);
 
-        if (isset($prefs_cache[$key])) {
-            return $prefs_cache[$key];
-        } else {
-            if (isset($this->default[$key])) {
-                return $this->default[$key];
+            if (isset($prefs_cache[$key])) {
+                $result = $prefs_cache[$key];
             } else {
-                return $default;
+//FIXME: is there a justification for having two prefs hooks so close?  who uses them?
+                $temp = array(&$user, &$key);
+                $result = do_hook('get_pref', $temp);
+                if (is_null($result)) {
+                    if (isset($this->default[$key])) {
+                        $result = $this->default[$key];
+                    } else {
+                        $result = $default;
+                    }
+                }
             }
         }
+        return $result;
     }
 
     /**
      * Delete user's prefs setting
-     * @param string $user user name 
-     * @param string $key preference name
+     *
+     * @param string $user user name
+     * @param string $key  preference name
+     *
      * @return boolean
+     *
      */
     function deleteKey($user, $key) {
         global $prefs_cache;
@@ -281,10 +335,13 @@ class dbPrefs {
 
     /**
      * Set user's preference
-     * @param string $user user name
-     * @param string $key preference name
-     * @param mixed $value preference value
+     *
+     * @param string $user  user name
+     * @param string $key   preference name
+     * @param mixed  $value preference value
+     *
      * @return boolean
+     *
      */
     function setKey($user, $key, $value) {
         if (!$this->open()) {
@@ -296,11 +353,12 @@ class dbPrefs {
          */
         if (strlen($user) > $this->user_size) {
             $this->error = "Oversized username value."
-                ." User's preferences can't be saved. See doc/db-backend.txt troubleshooting documentation.";
+                ." Your preferences can't be saved."
+                ." See the administrator's manual or contact your system administrator.";
 
             /**
-             * Debugging function. Can be used to log all issues that trigger 
-             * oversized field errors. Function should be enabled in all three 
+             * Debugging function. Can be used to log all issues that trigger
+             * oversized field errors. Function should be enabled in all three
              * strlen checks. See http://www.php.net/error-log
              */
             // error_log($user.'|'.$key.'|'.$value."\n",3,'/tmp/oversized_log');
@@ -313,7 +371,8 @@ class dbPrefs {
          */
         if (strlen($key) > $this->key_size) {
             $err_msg = "Oversized user's preference key."
-                ." Some user preferences are not saved. See doc/db-backend.txt troubleshooting documentation.";
+                ." Some preferences were not saved."
+                ." See the administrator's manual or contact your system administrator.";
             // error is not fatal. Only some preference is not saved.
             trigger_error($err_msg,E_USER_WARNING);
             return false;
@@ -323,7 +382,8 @@ class dbPrefs {
          */
         if (strlen($value) > $this->val_size) {
             $err_msg = "Oversized user's preference value."
-                ." Some user preferences are not saved. See doc/db-backend.txt troubleshooting documentation.";
+                ." Some preferences were not saved."
+                ." See the administrator's manual or contact your system administrator.";
             // error is not fatal. Only some preference is not saved.
             trigger_error($err_msg,E_USER_WARNING);
             return false;
@@ -402,8 +462,11 @@ class dbPrefs {
 
     /**
      * Fill preference cache array
+     *
      * @param string $user user name
+     *
      * @since 1.2.3
+     *
      */
     function fillPrefsCache($user) {
         global $prefs_cache;
@@ -434,10 +497,10 @@ class dbPrefs {
 
 
 /**
- * returns the value for the pref $string
+ * Returns the value for the requested preference
  * @ignore
  */
-function getPref($data_dir, $username, $string, $default = '') {
+function getPref($data_dir, $username, $pref_name, $default = '') {
     $db = new dbPrefs;
     if(isset($db->error)) {
         printf( _("Preference database error (%s). Exiting abnormally"),
@@ -445,24 +508,24 @@ function getPref($data_dir, $username, $string, $default = '') {
         exit;
     }
 
-    return $db->getKey($username, $string, $default);
+    return $db->getKey($username, $pref_name, $default);
 }
 
 /**
- * Remove the pref $string
+ * Remove the desired preference setting ($pref_name)
  * @ignore
  */
-function removePref($data_dir, $username, $string) {
+function removePref($data_dir, $username, $pref_name) {
     global $prefs_cache;
     $db = new dbPrefs;
     if(isset($db->error)) {
         $db->failQuery();
     }
 
-    $db->deleteKey($username, $string);
+    $db->deleteKey($username, $pref_name);
 
-    if (isset($prefs_cache[$string])) {
-        unset($prefs_cache[$string]);
+    if (isset($prefs_cache[$pref_name])) {
+        unset($prefs_cache[$pref_name]);
     }
 
     sqsession_register($prefs_cache , 'prefs_cache');
@@ -470,18 +533,18 @@ function removePref($data_dir, $username, $string) {
 }
 
 /**
- * sets the pref, $string, to $set_to
+ * Sets the desired preference setting ($pref_name) to whatever is in $value
  * @ignore
  */
-function setPref($data_dir, $username, $string, $set_to) {
+function setPref($data_dir, $username, $pref_name, $value) {
     global $prefs_cache;
 
-    if (isset($prefs_cache[$string]) && ($prefs_cache[$string] == $set_to)) {
+    if (isset($prefs_cache[$pref_name]) && ($prefs_cache[$pref_name] == $value)) {
         return;
     }
 
-    if ($set_to === '') {
-        removePref($data_dir, $username, $string);
+    if ($value === '') {
+        removePref($data_dir, $username, $pref_name);
         return;
     }
 
@@ -490,11 +553,11 @@ function setPref($data_dir, $username, $string, $set_to) {
         $db->failQuery();
     }
 
-    $db->setKey($username, $string, $set_to);
-    $prefs_cache[$string] = $set_to;
+    $db->setKey($username, $pref_name, $value);
+    $prefs_cache[$pref_name] = $value;
     assert_options(ASSERT_ACTIVE, 1);
     assert_options(ASSERT_BAIL, 1);
-    assert ('$set_to == $prefs_cache[$string]');
+    assert ('$value == $prefs_cache[$pref_name]');
     sqsession_register($prefs_cache , 'prefs_cache');
     return;
 }
@@ -514,13 +577,13 @@ function checkForPrefs($data_dir, $username) {
  * Writes the Signature
  * @ignore
  */
-function setSig($data_dir, $username, $number, $string) {
+function setSig($data_dir, $username, $number, $value) {
     if ($number == "g") {
         $key = '___signature___';
     } else {
         $key = sprintf('___sig%s___', $number);
     }
-    setPref($data_dir, $username, $key, $string);
+    setPref($data_dir, $username, $key, $value);
     return;
 }
 
@@ -536,6 +599,3 @@ function getSig($data_dir, $username, $number) {
     }
     return getPref($data_dir, $username, $key);
 }
-
-// vim: et ts=4
-?>
\ No newline at end of file