123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- <?php
- /*
- * db_prefs.php
- *
- * Copyright (c) 1999-2003 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
- * prefkey char / key
- * prefval blob
- *
- * CREATE TABLE userprefs (user CHAR(128) 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 using conf.pl or the administrator plugin
- *
- * $Id$
- */
- define('SMDB_UNKNOWN', 0);
- define('SMDB_MYSQL', 1);
- define('SMDB_PGSQL', 2);
- require_once('DB.php');
- require_once(SM_PATH . 'config/config.php');
- global $prefs_are_cached, $prefs_cache;
- function cachePrefValues($username) {
- global $prefs_are_cached, $prefs_cache;
- if ($prefs_are_cached) {
- return;
- }
- sqsession_unregister('prefs_cache');
- sqsession_unregister('prefs_are_cached');
- $db = new dbPrefs;
- if(isset($db->error)) {
- printf( _("Preference database error (%s). Exiting abnormally"),
- $db->error);
- exit;
- }
- $db->fillPrefsCache($username);
- if (isset($db->error)) {
- printf( _("Preference database error (%s). Exiting abnormally"),
- $db->error);
- exit;
- }
- $prefs_are_cached = true;
- sqsession_register($prefs_cache, 'prefs_cache');
- sqsession_register($prefs_are_cached, 'prefs_are_cached');
- }
- class dbPrefs {
- var $table = 'userprefs';
- var $user_field = 'user';
- var $key_field = 'prefkey';
- var $val_field = 'prefval';
- var $dbh = NULL;
- var $error = NULL;
- var $db_type = SMDB_UNKNOWN;
- var $default = Array('theme_default' => 0,
- 'show_html_default' => '0');
- function open() {
- global $prefs_dsn, $prefs_table;
- global $prefs_user_field, $prefs_key_field, $prefs_val_field;
- if(isset($this->dbh)) {
- return true;
- }
- if (preg_match('/^mysql/', $prefs_dsn)) {
- $this->db_type = SMDB_MYSQL;
- } elseif (preg_match('/^pgsql/', $prefs_dsn)) {
- $this->db_type = SMDB_PGSQL;
- }
- if (!empty($prefs_table)) {
- $this->table = $prefs_table;
- }
- if (!empty($prefs_user_field)) {
- $this->user_field = $prefs_user_field;
- }
- if (!empty($prefs_key_field)) {
- $this->key_field = $prefs_key_field;
- }
- if (!empty($prefs_val_field)) {
- $this->val_field = $prefs_val_field;
- }
- $dbh = DB::connect($prefs_dsn, true);
- if(DB::isError($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;
- }
- function getKey($user, $key, $default = '') {
- global $prefs_cache;
- cachePrefValues($user);
- if (isset($prefs_cache[$key])) {
- return $prefs_cache[$key];
- } else {
- if (isset($this->default[$key])) {
- return $this->default[$key];
- } else {
- return $default;
- }
- }
- }
- function deleteKey($user, $key) {
- global $prefs_cache;
- if (!$this->open()) {
- return false;
- }
- $query = sprintf("DELETE FROM %s WHERE %s='%s' AND %s='%s'",
- $this->table,
- $this->user_field,
- $this->dbh->quoteString($user),
- $this->key_field,
- $this->dbh->quoteString($key));
- $res = $this->dbh->simpleQuery($query);
- if(DB::isError($res)) {
- $this->failQuery($res);
- }
- unset($prefs_cache[$key]);
- return true;
- }
- function setKey($user, $key, $value) {
- if (!$this->open()) {
- return false;
- }
- if ($this->db_type == SMDB_MYSQL) {
- $query = sprintf("REPLACE INTO %s (%s, %s, %s) ".
- "VALUES('%s','%s','%s')",
- $this->table,
- $this->user_field,
- $this->key_field,
- $this->val_field,
- $this->dbh->quoteString($user),
- $this->dbh->quoteString($key),
- $this->dbh->quoteString($value));
- $res = $this->dbh->simpleQuery($query);
- if(DB::isError($res)) {
- $this->failQuery($res);
- }
- } elseif ($this->db_type == SMDB_PGSQL) {
- $this->dbh->simpleQuery("BEGIN TRANSACTION");
- $query = sprintf("DELETE FROM %s WHERE %s='%s' AND %s='%s'",
- $this->table,
- $this->user_field,
- $this->dbh->quoteString($user),
- $this->key_field,
- $this->dbh->quoteString($key));
- $res = $this->dbh->simpleQuery($query);
- if (DB::isError($res)) {
- $this->dbh->simpleQuery("ROLLBACK TRANSACTION");
- $this->failQuery($res);
- }
- $query = sprintf("INSERT INTO %s (%s, %s, %s) VALUES ('%s', '%s', '%s')",
- $this->table,
- $this->user_field,
- $this->key_field,
- $this->val_field,
- $this->dbh->quoteString($user),
- $this->dbh->quoteString($key),
- $this->dbh->quoteString($value));
- $res = $this->dbh->simpleQuery($query);
- if (DB::isError($res)) {
- $this->dbh->simpleQuery("ROLLBACK TRANSACTION");
- $this->failQuery($res);
- }
- $this->dbh->simpleQuery("COMMIT TRANSACTION");
- } else {
- $query = sprintf("DELETE FROM %s WHERE %s='%s' AND %s='%s'",
- $this->table,
- $this->user_field,
- $this->dbh->quoteString($user),
- $this->key_field,
- $this->dbh->quoteString($key));
- $res = $this->dbh->simpleQuery($query);
- if (DB::isError($res)) {
- $this->failQuery($res);
- }
- $query = sprintf("INSERT INTO %s (%s, %s, %s) VALUES ('%s', '%s', '%s')",
- $this->table,
- $this->user_field,
- $this->key_field,
- $this->val_field,
- $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;
- }
- function fillPrefsCache($user) {
- global $prefs_cache;
- if (!$this->open()) {
- return;
- }
- $prefs_cache = array();
- $query = sprintf("SELECT %s as prefkey, %s as prefval FROM %s ".
- "WHERE %s = '%s'",
- $this->key_field,
- $this->val_field,
- $this->table,
- $this->user_field,
- $this->dbh->quoteString($user));
- $res = $this->dbh->query($query);
- if (DB::isError($res)) {
- $this->failQuery($res);
- }
- while ($row = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
- $prefs_cache[$row['prefkey']] = $row['prefval'];
- }
- }
- } /* end class dbPrefs */
- /* returns the value for the pref $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;
- }
- return $db->getKey($username, $string, $default);
- }
- /* Remove the pref $string */
- function removePref($data_dir, $username, $string) {
- $db = new dbPrefs;
- if(isset($db->error)) {
- $db->failQuery();
- }
- $db->deleteKey($username, $string);
- return;
- }
- /* sets the pref, $string, to $set_to */
- function setPref($data_dir, $username, $string, $set_to) {
- global $prefs_cache;
- if (isset($prefs_cache[$string]) && ($prefs_cache[$string] == $set_to)) {
- return;
- }
- if ($set_to === '') {
- removePref($data_dir, $username, $string);
- return;
- }
- $db = new dbPrefs;
- if(isset($db->error)) {
- $db->failQuery();
- }
- $db->setKey($username, $string, $set_to);
- $prefs_cache[$string] = $set_to;
- assert_options(ASSERT_ACTIVE, 1);
- assert_options(ASSERT_BAIL, 1);
- assert ('$set_to == $prefs_cache[$string]');
- return;
- }
- /* This checks if the prefs are available */
- function checkForPrefs($data_dir, $username) {
- $db = new dbPrefs;
- if(isset($db->error)) {
- $db->failQuery();
- }
- }
- /* Writes the Signature */
- function setSig($data_dir, $username, $number, $string) {
- if ($number == "g") {
- $key = '___signature___';
- } else {
- $key = sprintf('___sig%s___', $number);
- }
- setPref($data_dir, $username, $key, $string);
- return;
- }
- /* Gets the signature */
- function getSig($data_dir, $username, $number) {
- if ($number == "g") {
- $key = '___signature___';
- } else {
- $key = sprintf('___sig%d___', $number);
- }
- return getPref($data_dir, $username, $key);
- }
- ?>
|