Strings update
[squirrelmail.git] / functions / db_prefs.php
index 3d478cf3b51148b313576975db77cd2e06704f19..442e9d26d4cb293f7b0cbff3fff3eb6638382dcc 100644 (file)
 <?php
-   /**
-    **  db_prefs.php
-    **
-    **  This contains functions for manipulating user preferences
-    **  stored in a database, accessed though the Pear DB layer.
-    **
-    **  To use this instead of the regular prefs.php, create a 
-    **  database as described below, and replace prefs.php
-    **  with this file.
-    **
-    **  Database:
-    **  ---------
-    **
-    **  The preferences table should have tree columns:
-    **     username   char  \  primary
-    **     prefkey    char  /  key
-    **     prefval    blob
-    **
-    **    CREATE TABLE userprefs (user CHAR(32) NOT NULL DEFAULT '', 
-    **                            prefkey CHAR(64) NOT NULL DEFAULT '', 
-    **                            prefval BLOB NOT NULL DEFAULT '', 
-    **                            primary key (user,prefkey));
-    **
-    **  Configuration of databasename, username and password is done
-    **  by changing $DSN below.
-    **
-    **  $Id$
-    **/
-
-   if (defined('prefs_php'))
-       return;
-   define('prefs_php', true);
-
-   require_once('DB.php');
-
-   class dbPrefs {
+/**
+ * db_prefs.php
+ *
+ * Copyright (c) 1999-2001 The Squirrelmail Development 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.
+ *
+ * To use this instead of the regular prefs.php, create a
+ * database as described below, and replace prefs.php
+ * with this file.
+ *
+ * Database:
+ * ---------
+ *
+ * The preferences table should have tree columns:
+ *    username   char  \  primary
+ *    prefkey    char  /  key
+ *    prefval    blob
+ *
+ *   CREATE TABLE userprefs (user CHAR(32) NOT NULL DEFAULT '',
+ *                           prefkey CHAR(64) NOT NULL DEFAULT '',
+ *                           prefval BLOB NOT NULL DEFAULT '',
+ *                           primary key (user,prefkey));
+ *
+ * Configuration of databasename, username and password is done
+ * by changing $DSN below.
+ *
+ * $Id$
+ */
+
+/*****************************************************************/
+/*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!!           ***/
+/*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION.             ***/
+/***    + Base level indent should begin at left margin, as    ***/
+/***      the require_once below.                              ***/
+/***    + All identation should consist of four space blocks   ***/
+/***    + Tab characters are evil.                             ***/
+/***    + all comments should use "slash-star ... star-slash"  ***/
+/***      style -- no pound characters, no slash-slash style   ***/
+/***    + FLOW CONTROL STATEMENTS (if, while, etc) SHOULD      ***/
+/***      ALWAYS USE { AND } CHARACTERS!!!                     ***/
+/***    + Please use ' instead of ", when possible. Note "     ***/
+/***      should always be used in _( ) function calls.        ***/
+/*** Thank you for your help making the SM code more readable. ***/
+/*****************************************************************/
+
+require_once('DB.php');
+
+class dbPrefs {
       var $DSN   = 'mysql://user@host/database';
       var $table = 'userprefs';
-      
+
       var $dbh   = NULL;
       var $error = NULL;
 
       var $default = Array('chosen_theme'      => '../themes/default_theme.php',
-                          'show_html_default' => '0');
-      
+                           'show_html_default' => '0');
+
       function dbPrefs() {
-        $this->open();
+         $this->open();
       }
-      
+
       function open() {
-        if(isset($this->dbh)) return true;
-        $dbh = DB::connect($this->DSN, true);
-        
-        if(DB::isError($dbh) || DB::isWarning($dbh)) {
-           $this->error = DB::errorMessage($dbh);
-           return false;
-        }
-        
-        $this->dbh = $dbh;
-        return true;
+        if(isset($this->dbh)) return true;
+        $dbh = DB::connect($this->DSN, true);
+
+        if(DB::isError($dbh) || DB::isWarning($dbh)) {
+            $this->error = DB::errorMessage($dbh);
+            return false;
+        }
+
+        $this->dbh = $dbh;
+        return true;
       }
-      
+
 
       function failQuery($res = NULL) {
-        if($res == NULL) {
-           printf(_("Preference database error (%s). Exiting abnormally"),
-                  $this->error);
-        } else {
-           printf(_("Preference database error (%s). Exiting abnormally"),
-                  DB::errorMessage($res));
-        }
-        exit;
+        if($res == NULL) {
+            printf(_("Preference database error (%s). Exiting abnormally"),
+            $this->error);
+        } else {
+            printf(_("Preference database error (%s). Exiting abnormally"),
+            DB::errorMessage($res));
+        }
+        exit;
       }
 
 
       function getKey($user, $key) {
-        $this->open();
-        $query = sprintf("SELECT prefval FROM %s ".
-                         "WHERE user='%s' AND prefkey='%s'",
-                         $this->table, 
-                         $this->dbh->quoteString($user),
-                         $this->dbh->quoteString($key));
-
-        $res = $this->dbh->query($query);
-        if(DB::isError($res))
-           $this->failQuery($res);
-
-        if($row = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
-           return $row['prefval'];
-        } else {
-           if(isset($this->default[$key])) {
-              return $this->default[$key];
-           } else {
-              return '';
-           }
-        }
-
-        return '';
+        $this->open();
+        $query = sprintf("SELECT prefval FROM %s ".
+                "WHERE user='%s' AND prefkey='%s'",
+                $this->table,
+                $this->dbh->quoteString($user),
+                $this->dbh->quoteString($key));
+
+        $res = $this->dbh->query($query);
+        if(DB::isError($res))
+            $this->failQuery($res);
+
+        if($row = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
+            return $row['prefval'];
+        } else {
+            if(isset($this->default[$key])) {
+            return $this->default[$key];
+            } else {
+            return '';
+            }
+        }
+
+        return '';
       }
 
       function deleteKey($user, $key) {
-        $this->open();
-        $query = sprintf("DELETE FROM %s WHERE user='%s' AND prefkey='%s'",
-                         $this->table, 
-                         $this->dbh->quoteString($user),
-                         $this->dbh->quoteString($key));
+        $this->open();
+        $query = sprintf("DELETE FROM %s WHERE user='%s' AND prefkey='%s'",
+                $this->table,
+                $this->dbh->quoteString($user),
+                $this->dbh->quoteString($key));
 
-        $res = $this->dbh->simpleQuery($query);
-         if(DB::isError($res))
-           $this->failQuery($res);
+        $res = $this->dbh->simpleQuery($query);
+            if(DB::isError($res))
+            $this->failQuery($res);
 
-        if(substr($key, 0, 9) == 'highlight') {
-           $this->renumberHighlightList($user);
-        }
+        if(substr($key, 0, 9) == 'highlight') {
+            $this->renumberHighlightList($user);
+        }
 
-        return true;
+        return true;
       }
 
       function setKey($user, $key, $value) {
-        $this->open();
-        $query = sprintf("REPLACE INTO %s (user,prefkey,prefval) ".
-                         "VALUES('%s','%s','%s')",
-                         $this->table, 
-                         $this->dbh->quoteString($user),
-                         $this->dbh->quoteString($key),
-                         $this->dbh->quoteString($value));
-
-         $res = $this->dbh->simpleQuery($query);
-         if(DB::isError($res)) 
-           $this->failQuery($res);
-
-        return true;
+        $this->open();
+        $query = sprintf("REPLACE INTO %s (user,prefkey,prefval) ".
+                "VALUES('%s','%s','%s')",
+                $this->table,
+                $this->dbh->quoteString($user),
+                $this->dbh->quoteString($key),
+                $this->dbh->quoteString($value));
+
+            $res = $this->dbh->simpleQuery($query);
+            if(DB::isError($res))
+            $this->failQuery($res);
+
+        return true;
       }
 
-      
+
       /**
        ** When a highlight option is deleted the preferences module
        ** must renumber the list.  This should be done somewhere else,
-       ** but it is not, so....  
+       ** but it is not, so....
        **/
       function renumberHighlightList($user) {
-        $this->open();
-        $query = sprintf("SELECT * FROM %s WHERE user='%s' ".
-                         "AND prefkey LIKE 'highlight%%' ORDER BY prefkey",
-                         $this->table, 
-                         $this->dbh->quoteString($user));
-
-        $res = $this->dbh->query($query);
-         if(DB::isError($res))
-           $this->failQuery($res);
-
-        // Store old data in array
-        $rows = Array();
-        while($row = $res->fetchRow(DB_FETCHMODE_ASSOC)) 
-           $rows[] = $row;
-
-        // Renumber keys of old data
-        $hilinum = 0;
-        for($i = 0; $i < count($rows) ; $i++) {
-           $oldkey = $rows[$i]['prefkey'];
-           $newkey = substr($oldkey, 0, 9) . $hilinum;
-           $hilinum++;
-
-           if($oldkey != $newkey) {
-              $query = sprintf("UPDATE %s SET prefkey='%s' WHERE user='%s' ".
-                               "AND prefkey='%s'", 
-                               $this->table,
-                               $this->dbh->quoteString($newkey),
-                               $this->dbh->quoteString($user),
-                               $this->dbh->quoteString($oldkey));
-              
-              $res = $this->dbh->simpleQuery($query);
-              if(DB::isError($res))
-                 $this->failQuery($res);
-           }
-        }
-
-        return;
+        $this->open();
+        $query = sprintf("SELECT * FROM %s WHERE user='%s' ".
+                "AND prefkey LIKE 'highlight%%' ORDER BY prefkey",
+                $this->table,
+                $this->dbh->quoteString($user));
+
+        $res = $this->dbh->query($query);
+            if(DB::isError($res))
+            $this->failQuery($res);
+
+        // Store old data in array
+        $rows = Array();
+        while($row = $res->fetchRow(DB_FETCHMODE_ASSOC))
+            $rows[] = $row;
+
+        // Renumber keys of old data
+        $hilinum = 0;
+        for($i = 0; $i < count($rows) ; $i++) {
+            $oldkey = $rows[$i]['prefkey'];
+            $newkey = substr($oldkey, 0, 9) . $hilinum;
+            $hilinum++;
+
+            if($oldkey != $newkey) {
+            $query = sprintf("UPDATE %s SET prefkey='%s' WHERE user='%s' ".
+                    "AND prefkey='%s'",
+                    $this->table,
+                    $this->dbh->quoteString($newkey),
+                    $this->dbh->quoteString($user),
+                    $this->dbh->quoteString($oldkey));
+
+            $res = $this->dbh->simpleQuery($query);
+            if(DB::isError($res))
+            $this->failQuery($res);
+            }
+        }
+
+        return;
       }
 
    } // end class dbPrefs
 
 
    /** returns the value for the pref $string **/
-   function getPref($data_dir, $username, $string) {
+   function getPref($data_dir, $username, $string, $default ) {
       $db = new dbPrefs;
       if(isset($db->error)) {
-        printf(_("Preference database error (%s). Exiting abnormally"),
-               $db->error);
-        exit;
+        printf( _("Preference database error (%s). Exiting abnormally"),
+                $db->error);
+        exit;
       }
 
       return $db->getKey($username, $string);
       $db->deleteKey($username, $string);
       return;
    }
-   
+
    /** sets the pref, $string, to $set_to **/
    function setPref($data_dir, $username, $string, $set_to) {
       $db = new dbPrefs;
       if(isset($db->error))
-        $db->failQuery();
+         $db->failQuery();
 
       $db->setKey($username, $string, $set_to);
       return;
    function checkForPrefs($data_dir, $username) {
       $db = new dbPrefs;
       if(isset($db->error))
-        $db->failQuery();
+         $db->failQuery();
    }
 
    /** Writes the Signature **/
    function setSig($data_dir, $username, $string) {
       $db = new dbPrefs;
-      if(isset($db->error)) 
-        $db->failQuery();
+      if(isset($db->error))
+         $db->failQuery();
 
       $db->setKey($username, "___signature___", $string);
       return;
    function getSig($data_dir, $username) {
       $db = new dbPrefs;
       if(isset($db->error))
-        $db->failQuery();
+         $db->failQuery();
 
       return $db->getKey($username, "___signature___");
    }