source: trunk/lib/Prefs.inc.php @ 158

Last change on this file since 158 was 158, checked in by scdev, 18 years ago

Q - changed Prefs so varable is serialized in the database ... so we can save arrays and such. Updated Auth_* so encrypted userpass is never stored in the session.

File size: 13.2 KB
Line 
1<?php
2/**
3 * Prefs.inc.php
4 * code by strangecode :: www.strangecode.com :: this document contains copyrighted information
5 *
6 * Prefs provides an API for saving arbitrary values in a user's session.
7 * Session prefs can be stored into a database with the optional save() and load() methods.
8 *
9 * @author  Quinn Comendant <quinn@strangecode.com>
10 * @version 2.1
11 *
12 * Example of use:
13---------------------------------------------------------------------
14// Load preferences for the user's session.
15require_once 'codebase/lib/Prefs.inc.php';
16$prefs = new Prefs('my-namespace');
17$prefs->setParam(array(
18    'persistent' => $auth->isLoggedIn(),
19    'user_id' => $auth->get('user_id'),
20));
21$prefs->setDefaults(array(
22    'search_num_results' => 25,
23    'datalog_num_entries' => 25,
24));
25$prefs->load();
26
27// Update preferences. Make sure to validate this input first!
28$prefs->set('search_num_results', getFormData('search_num_results'));
29$prefs->set('datalog_num_entries', getFormData('datalog_num_entries'));
30$prefs->save();
31
32---------------------------------------------------------------------
33 */
34class Prefs {
35
36    // Namespace of this instance of Prefs.
37    var $_ns;
38
39    // Configuration parameters for this object.
40    var $_params = array(
41       
42        // Enable database storage. If this is false, all prefs will live only as long as the session.
43        'persistent' => false,
44       
45        // The current user_id for which to load/save persistent preferences.
46        'user_id' => null,
47       
48        // How long before we force a reload of the persistent prefs data? 3600 = once every hour.
49        'load_timeout' => 3600,
50       
51        // Name of database table to store persistent prefs.
52        'db_table' => 'pref_tbl',
53
54        // Automatically create table and verify columns. Better set to false after site launch.
55        'create_table' => true,
56    );
57
58    /**
59     * Prefs constructor.
60     */
61    function Prefs($namespace='')
62    {
63        $app =& App::getInstance();
64
65        $this->_ns = $namespace;
66       
67        // Initialized the prefs array.
68        if (!isset($_SESSION['_prefs'][$this->_ns])) {
69            $this->clear();
70        }
71
72        // Get create tables config from global context.
73        if (!is_null($app->getParam('db_create_tables'))) {
74            $this->setParam(array('create_table' => $app->getParam('db_create_tables')));
75        }
76    }
77
78    /**
79     * Setup the database table for this class.
80     *
81     * @access  public
82     * @author  Quinn Comendant <quinn@strangecode.com>
83     * @since   04 Jun 2006 16:41:42
84     */
85    function initDB($recreate_db=false)
86    {
87        $app =& App::getInstance();
88        $db =& DB::getInstance();
89
90        static $_db_tested = false;
91
92        if ($recreate_db || !$_db_tested && $this->getParam('create_table')) {
93            if ($recreate_db) {
94                $db->query("DROP TABLE IF EXISTS " . $this->getParam('db_table'));
95                $app->logMsg(sprintf('Dropping and recreating table %s.', $this->getParam('db_table')), LOG_DEBUG, __FILE__, __LINE__);
96            }
97            $db->query("CREATE TABLE IF NOT EXISTS " . $db->escapeString($this->getParam('db_table')) . " (
98                user_id VARCHAR(32) NOT NULL DEFAULT '',
99                pref_namespace VARCHAR(32) NOT NULL DEFAULT '',
100                pref_key VARCHAR(64) NOT NULL DEFAULT '',
101                pref_value TEXT,
102                PRIMARY KEY (user_id, pref_namespace, pref_key)
103            )");
104
105            if (!$db->columnExists($this->getParam('db_table'), array(
106                'user_id',
107                'pref_namespace',
108                'pref_key',
109                'pref_value',
110            ), false, false)) {
111                $app->logMsg(sprintf('Database table %s has invalid columns. Please update this table manually.', $this->getParam('db_table')), LOG_ALERT, __FILE__, __LINE__);
112                trigger_error(sprintf('Database table %s has invalid columns. Please update this table manually.', $this->getParam('db_table')), E_USER_ERROR);
113            }
114        }
115        $_db_tested = true;
116    }
117
118    /**
119     * Set the params of this object.
120     *
121     * @param  array $params   Array of param keys and values to set.
122     */
123    function setParam($params=null)
124    {
125        if (isset($params) && is_array($params)) {
126            // Merge new parameters with old overriding only those passed.
127            $this->_params = array_merge($this->_params, $params);
128        }
129    }
130
131    /**
132     * Return the value of a parameter, if it exists.
133     *
134     * @access public
135     * @param string $param        Which parameter to return.
136     * @return mixed               Configured parameter value.
137     */
138    function getParam($param)
139    {
140        $app =& App::getInstance();
141   
142        if (isset($this->_params[$param])) {
143            return $this->_params[$param];
144        } else {
145            $app->logMsg(sprintf('Parameter is not set: %s', $param), LOG_DEBUG, __FILE__, __LINE__);
146            return null;
147        }
148    }
149
150    /**
151     * Sets the default values for preferences. If a preference is not explicitly
152     * set, the value set here will be used. Can be called multiple times to merge additional
153     * defaults together.
154     *
155     * @param  array $defaults  Array of key-value pairs
156     */
157    function setDefaults($defaults)
158    {
159        if (isset($defaults) && is_array($defaults)) {
160            $_SESSION['_prefs'][$this->_ns]['defaults'] = array_merge($_SESSION['_prefs'][$this->_ns]['defaults'], $defaults);
161        }
162    }
163
164    /**
165     * Store a key-value pair in the session. If the value is different than what is set by setDefaults
166     * the value will be scheduled to be saved in the database.
167     * This function determins what data is saved to the database. Ensure clean values!
168     *
169     * @param  string $key          The name of the preference to modify.
170     * @param  string $val          The new value for this preference.
171     * @param  bool   $persistent   Save this value forever? Set to false and value will exist as long as the session is in use.
172     */
173    function set($key, $val)
174    {
175        $app =& App::getInstance();
176
177        if ('' == $key) {
178            $app->logMsg(sprintf('Key is empty (provided with value: %s)', $val), LOG_NOTICE, __FILE__, __LINE__);
179            return false;
180        }
181       
182        if (!isset($_SESSION['_prefs'][$this->_ns]['defaults'][$key]) || $_SESSION['_prefs'][$this->_ns]['defaults'][$key] != $val || isset($_SESSION['_prefs'][$this->_ns]['persistent'][$key])) {
183            $_SESSION['_prefs'][$this->_ns]['persistent'][$key] = $val;           
184        }
185    }
186
187    /**
188     * Returns the value of the requested preference. Persistent values take precedence, but if none is set
189     * a default value is returned, or if not that, null.
190     *
191     * @param string $key       The name of the preference to retrieve.
192     *
193     * @return string           The value of the preference.
194     */
195    function get($key)
196    {
197        $app =& App::getInstance();
198        if (array_key_exists($key, $_SESSION['_prefs'][$this->_ns]['persistent'])) {
199            return $_SESSION['_prefs'][$this->_ns]['persistent'][$key];
200        } else if (array_key_exists($key, $_SESSION['_prefs'][$this->_ns]['defaults'])) {
201            return $_SESSION['_prefs'][$this->_ns]['defaults'][$key];
202        } else {
203            $app->logMsg(sprintf('Key not found in prefs cache: %s', $key), LOG_DEBUG, __FILE__, __LINE__);
204            return null;
205        }
206    }
207
208    /**
209     * To see if a preference has been set.
210     *
211     * @param string $key       The name of the preference to check.
212     * @return boolean          True if the preference isset and not empty false otherwise.
213     */
214    function exists($key)
215    {
216        return array_key_exists($key, $_SESSION['_prefs'][$this->_ns]['persistent']);
217    }
218
219    /**
220     * Clear a set preference value. This will also remove the value from the database.
221     *
222     * @param string $key       The name of the preference to delete.
223     */
224    function delete($key)
225    {
226        unset($_SESSION['_prefs'][$this->_ns]['persistent'][$key]);
227    }
228
229    /**
230     * Resets the $_SESSION cache. This should be executed with the same consideration
231     * as $auth->clear(), such as when logging out.
232     */
233    function clear()
234    {
235        $_SESSION['_prefs'][$this->_ns] = array(
236            'loaded' => false,
237            'load_datetime' => '1970-01-01',
238            'defaults' => array(),
239            'persistent' => array(),
240        );
241    }
242   
243    /*
244    * Retrieves all prefs from the database and stores them in the $_SESSION.
245    *
246    * @access   public
247    * @param    bool    $force  Set to always load from database, regardless if _isLoaded() or not.
248    * @return   bool    True if loading succeeded.
249    * @author   Quinn Comendant <quinn@strangecode.com>
250    * @version  1.0
251    * @since    04 Jun 2006 16:56:53
252    */
253    function load($force=false)
254    {
255        $app =& App::getInstance();
256        $db =& DB::getInstance();
257       
258        // Skip this method if not using the db.
259        if (true !== $this->getParam('persistent')) {
260            return true;
261        }
262
263        $this->initDB();
264
265        // Prefs already loaded for this session.
266        if (!$force && $this->_isLoaded()) {
267            return true;
268        }
269
270        // User_id must not be empty.
271        if ('' == $this->getParam('user_id')) {
272            $app->logMsg(sprintf('Cannot save prefs because user_id not set.', null), LOG_WARNING, __FILE__, __LINE__);
273            return false;
274        }
275       
276        // Clear existing cache.
277        $this->clear();
278       
279        // Retrieve all prefs for this user and namespace.
280        $qid = $db->query("
281            SELECT pref_key, pref_value
282            FROM " . $db->escapeString($this->getParam('db_table')) . "
283            WHERE user_id = '" . $db->escapeString($this->getParam('user_id')) . "'
284            AND pref_namespace = '" . $db->escapeString($this->_ns) . "'
285            LIMIT 10000
286        ");
287        while (list($key, $val) = mysql_fetch_row($qid)) {
288            $_SESSION['_prefs'][$this->_ns]['persistent'][$key] = unserialize($val);
289        }
290       
291        $app->logMsg(sprintf('Loaded %s prefs from database.', sizeof($_SESSION['_prefs'][$this->_ns]['persistent'])), LOG_DEBUG, __FILE__, __LINE__);
292       
293        // Data loaded only once per session.
294        $_SESSION['_prefs'][$this->_ns]['loaded'] = true;
295        $_SESSION['_prefs'][$this->_ns]['load_datetime'] = date('Y-m-d H:i:s');
296       
297        return true;
298    }
299   
300    /*
301    * Returns true if the prefs had been loaded from the database into the $_SESSION recently.
302    * This function is simply a check so the database isn't access every page load.
303    *
304    * @access   private
305    * @return   bool    True if prefs are loaded.
306    * @author   Quinn Comendant <quinn@strangecode.com>
307    * @version  1.0
308    * @since    04 Jun 2006 17:12:44
309    */
310    function _isLoaded()
311    {
312        if (isset($_SESSION['_prefs'][$this->_ns]['load_datetime'])
313        && strtotime($_SESSION['_prefs'][$this->_ns]['load_datetime']) > time() - $this->getParam('load_timeout')
314        && isset($_SESSION['_prefs'][$this->_ns]['loaded']) 
315        && true === $_SESSION['_prefs'][$this->_ns]['loaded']) {
316            return true;
317        } else {
318            return false;
319        }
320    }
321   
322    /*
323    * Saves all prefs stored in the $_SESSION into the database.
324    *
325    * @access   public
326    * @return   bool    True if prefs exist and were saved.
327    * @author   Quinn Comendant <quinn@strangecode.com>
328    * @version  1.0
329    * @since    04 Jun 2006 17:19:56
330    */
331    function save()
332    {
333        $app =& App::getInstance();
334        $db =& DB::getInstance();
335       
336        // Skip this method if not using the db.
337        if (true !== $this->getParam('persistent')) {
338            return true;
339        }
340       
341        // User_id must not be empty.
342        if ('' == $this->getParam('user_id')) {
343            $app->logMsg(sprintf('Cannot save prefs because user_id not set.', null), LOG_WARNING, __FILE__, __LINE__);
344            return false;
345        }
346
347        $this->initDB();
348
349        if (isset($_SESSION['_prefs'][$this->_ns]['persistent']) && is_array($_SESSION['_prefs'][$this->_ns]['persistent'])) {
350            // Delete old prefs from database.
351            $db->query("
352                DELETE FROM " . $db->escapeString($this->getParam('db_table')) . "
353                WHERE user_id = '" . $db->escapeString($this->getParam('user_id')) . "'
354                AND pref_namespace = '" . $db->escapeString($this->_ns) . "'
355            ");
356           
357            // Insert new prefs.
358            $insert_values = array();
359            foreach ($_SESSION['_prefs'][$this->_ns]['persistent'] as $key => $val) {
360                $insert_values[] = sprintf("('%s', '%s', '%s', '%s')", 
361                    $db->escapeString($this->getParam('user_id')), 
362                    $db->escapeString($this->_ns), 
363                    $db->escapeString($key), 
364                    $db->escapeString(serialize($val))
365                );
366            }
367            $db->query("
368                INSERT LOW_PRIORITY INTO " . $db->escapeString($this->getParam('db_table')) . "
369                (user_id, pref_namespace, pref_key, pref_value)
370                VALUES " . join(', ', $insert_values) . "
371            ");
372           
373            $app->logMsg(sprintf('Saved %s prefs to database.', sizeof($insert_values)), LOG_DEBUG, __FILE__, __LINE__);
374            return true;
375        }
376       
377        return false;
378    }
379}
380
381
382?>
Note: See TracBrowser for help on using the repository browser.