File Manager
<?php
#BEGIN_LICENSE
#-------------------------------------------------------------------------
# Module: CGExtensions (c) 2008-2014 by Robert Campbell
# (calguy1000@cmsmadesimple.org)
# An addon module for CMS Made Simple to provide useful functions
# and commonly used gui capabilities to other modules.
#
#-------------------------------------------------------------------------
# CMSMS - CMS Made Simple is (c) 2005 by Ted Kulp (wishy@cmsmadesimple.org)
# Visit the CMSMS Homepage at: http://www.cmsmadesimple.org
#
#-------------------------------------------------------------------------
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# However, as a special exception to the GPL, this software is distributed
# as an addon module to CMS Made Simple. You may not use this software
# in any Non GPL version of CMS Made simple, or in any version of CMS
# Made simple that does not indicate clearly and obviously in its admin
# section that the site was built with CMS Made simple.
#
# This program 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 General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# Or read it online: http://www.gnu.org/licenses/licenses.html#GPL
#
#-------------------------------------------------------------------------
#END_LICENSE
/**
* A database based key/value store.
*
* @package CGExtensions
* @category Utilities
* @deprecated
* @author calguy1000 <calguy1000@cmsmadesimple.org>
* @copyright Copyright 2010 by Robert Campbell
*/
/**
* This class implements a simple key/value store utilizing the database intended for storing small amounts of temporary data that must survive both the request, and the session
* but can have a limited lifetime.
*
* Each entry can have up to 3 cascading keys.
* It features automatic deletion of expired keys.
*
* @package CGExtensions
*/
class cge_datastore
{
/**
* @ignore
*/
private $_expiry;
/**
* @ignore
*/
private $_last_cleanup;
/**
* @ignore
*/
private $_cleanup_interval;
/**
* Construct a new datastore object.
*
* @param int $expiry The amount of time until values stored with this object will expire. Minimum of 30 seconds.
* @param int $cleanup_interval The amount of time after which
*/
public function __construct($expiry = 3600)
{
$expiry = max(30,$expiry);
$this->_expiry = $expiry;
$this->_cleanup_interval = $expiry;
$this->_last_cleanup = -1;
}
/**
* Adjust the expiry of data stored with this object.
*
* @param int $num The amount of time until values stored with this object will expire. Minimum of 30 seconds.
*/
public function set_expiry($num)
{
$num = max($num,30);
$this->_expiry($num);
}
/**
* Remove all expired entries from the database.
* This method will return all expired entries from the database, regardless of whether they were stored with this instance or not.
*/
public function remove_expired()
{
$now = time();
if( ($now - $this->_last_cleanup) > $this->_cleanup_interval ) {
$db = cge_utils::get_db();
$query = 'DELETE FROM '.CGEXTENSIONS_TABLE_ASSOCDATA.' WHERE expiry < NOW() AND expiry != -1';
$db->Execute($query);
$this->_last_cleanup = $now;
}
}
/**
* Erase the specified data from the database
*
* @param string $key1
* @param string $key2 - An optional additional key that is combined with key1
* @param string $key3 - An optional additional key that is combined with key1 and key2
* @param string $key4 - An optional additional key that is combined with key1, key2, and key3
*/
public function erase($key1,$key2 = '',$key3 = '', $key4 = '')
{
$db = cge_utils::get_db();
$query = 'DELETE FROM '.CGEXTENSIONS_TABLE_ASSOCDATA.' WHERE key1 = ? AND key2 = ? AND key3 = ? AND key4 = ?';
$db->Execute($query,array($key1,$key2,$key3,$key4));
$this->remove_expired();
}
/**
* Store the specified data into the database
*
* @param mixed $data
* @param string $key1
* @param string $key2 - An optional additional key that is combined with key1
* @param string $key3 - An optional additional key that is combined with key1 and key2
* @param string $key4 - An optional additional key that is combined with key1, key2, and key3
*/
public function store($data,$key1,$key2='',$key3='',$key4='')
{
if( empty($data) ) return FALSE;
$this->erase($key1,$key2,$key3,$key4);
$query = 'INSERT INTO '.CGEXTENSIONS_TABLE_ASSOCDATA."
(key1,key2,key3,key4,data,expiry,create_date,modified_date)
VALUES (?,?,?,?,?,DATE_ADD(NOW(),INTERVAL ? SECOND),NOW(),NOW())";
$db = cge_utils::get_db();
$dbr = $db->Execute($query,array($key1,$key2,$key3,$key4,$data,$this->_expiry));
$this->remove_expired();
}
/**
* Retrieve the specified data from the database
*
* @param string $key1
* @param string $key2 - An optional additional key that is combined with key1
* @param string $key3 - An optional additional key that is combined with key1 and key2
* @param string $key4 - An optional additional key that is combined with key1, key2, and key3
* @return mixed
*/
public function get($key1,$key2 = '',$key3 = '', $key4 = '')
{
$this->remove_expired();
$query = 'SELECT data FROM '.CGEXTENSIONS_TABLE_ASSOCDATA.'
WHERE key1 = ? AND key2 = ? AND key3 = ? AND key4 = ?
AND expiry > NOW() ORDER BY modified_date LIMIT 1';
$db = cge_utils::get_db(); $tmp = $db->GetOne($query,array($key1,$key2,$key3,$key4));
if( !$tmp ) return;
return $tmp;
}
/**
* List all of the data matching the specified keys.
* The fiewer keys specified should result in more matches.
*
* @param string $key1
* @param string $key2 - An optional additional key that is combined with key1
* @param string $key3 - An optional additional key that is combined with key1 and key2
* @return array
*/
public function listall($key1,$key2 = null,$key3 = null)
{
$parms = array();
$where[] = array();
$where[] = 'key1 = ?';
$parms[] = $key1;
$query = 'SELECT key1,key2,key3,key4 FROM '.CGEXTENSIONS_TABLE_ASSOCDATA;
if( !empty($key2) ) {
$where[] = 'key2 = ?';
$parms[] = $key2;
if( !empty($key3) ) {
$where[] = 'key3 = ?';
$parms[] = $key3;
}
}
if( count($where) ) $query .= ' WHERE ' + implode(' AND ',$where);
$db = cge_utils::get_db();
$data = $db->GetArray($query,$parms);
if( !$data ) return;
return $data;
}
} // end of class
?>
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com