123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386 |
- <?PHP
- /**
- * The Staple_DB class extends the MySQLi class to give added functionality. The Database
- * configuration file requires these fields:
- *
- * host - the mysql hostname of the database server to connect to.
- * username - MySQL username to use to connect to the database.
- * password - MySQL password to use to connect to the database.
- * db - the database to bind to.
- *
- * Database configuration file is optional. You can specify a configuration array and send it to
- * the get function at runtime, or you can use the set functions to configure the database
- * connection. If you use the set functions, you will have to manually connect to the database
- * by calling the connect function or constructor for this object.
- *
- * @todo add a database reconnection function for when the username, host, pw, or db changes.
- * @author Ironpilot
- * @copyright Copywrite (c) 2011, STAPLE CODE
- *
- * This file is part of the STAPLE Framework.
- *
- * The STAPLE Framework is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by the
- * Free Software Foundation, either version 3 of the License, or (at your option)
- * any later version.
- *
- * The STAPLE Framework 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 Lesser General Public License for
- * more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with the STAPLE Framework. If not, see <http://www.gnu.org/licenses/>.
- */
- class Staple_DB extends mysqli
- {
- /**
- *
- * Holds the singleton instance for the object.
- * @var Staple_DB
- * @static
- */
- protected static $conn;
- /**
- *
- * Hostname for the database server
- * @var string
- */
- protected $host;
- /**
- *
- * Username to access to the database server
- * @var string
- */
- protected $username;
- /**
- *
- * Password to connect to the database
- * @var string
- */
- protected $password;
-
- /**
- *
- * Database name on the server
- * @var string
- */
- protected $db;
-
- /**
- * A boolean value that signifies an active connection to the database server.
- * @var boolean
- */
- protected $connected = false;
-
- /**
- * Stores the last executed SQL Statement
- * @var string
- */
- public static $last_query;
-
- /**
- * Storage for Named Database Connections
- * @var array[Staple_DB]
- */
- protected static $namedConnections = array();
-
- /**
- *
- * Overrides the default MySQLi constructor to add funtionality to retrieve database
- * settings from configuration file.
- *
- * @throws Exception
- */
- public function __construct(array $config = array())
- {
- if($this->checkConfig($config))
- {
- $this->host = $config['host'];
- $this->username = $config['username'];
- $this->password = $config['password'];
- $this->db = $config['db'];
- }
- elseif(!$this->isReady())
- {
- $globalSettings = Staple_Config::get('db');
- if($this->checkConfig($globalSettings))
- {
- $this->host = $globalSettings['host'];
- $this->username = $globalSettings['username'];
- $this->password = $globalSettings['password'];
- $this->db = $globalSettings['db'];
- }
- }
-
- if($this->isReady())
- {
- @parent::__construct($this->host, $this->username, $this->password, $this->db);
- if(isset($this->connect_error))
- {
- throw new Exception("Database Connection Error");
- }
- else
- {
- $this->connected = true;
- }
- }
- }
-
- public function __destruct()
- {
- //Close an open connection
- try{
- @$this->close();
- }
- catch(Exception $e){}
- }
-
- /**
- *
- * Creates and returns the primary database connection.
- * @return Staple_DB
- * @static
- */
- public static function get(array $conf = array())
- {
- if (!isset(self::$conn) || $conf != array()) {
- $c = __CLASS__;
- self::$conn = new $c($conf);
- }
- return self::$conn;
- }
-
- /**
- * Creates and/or returns a named database connection.
- * @return Staple_DB
- * @static
- */
- public static function getNamedConnection($name)
- {
- if (!isset(self::$namedConnections[$name])) {
- $c = __CLASS__;
- self::$namedConnections[$name] = new $c(Staple_Config::get($name));
- }
- return self::$namedConnections[$name];
- }
-
- /**
- * Overrides the MySQL connect() function to perform a check for required connection details.
- * connect() is an alias for mysqli->__construct().
- * @see mysqli::connect()
- */
- public function connect($host = NULL, $user = NULL, $password = NULL, $database = NULL, $port = NULL, $socket = NULL)
- {
- if($this->isReady())
- {
- $this->__construct();
- }
- else
- {
- throw new Exception("Database Connection Parameters Not Specified.");
- }
- }
-
- /**
- * (non-PHPdoc)
- * @see mysqli::change_user()
- * @return bool
- */
- public function change_user($user, $password, $database = NULL)
- {
- if(isset($database))
- {
- $this->setDb($database);
- }
- $this->setUsername($user);
- $this->setPassword($password);
- return parent::change_user($this->getUsername(), $this->password, $this->getDb());
- }
-
- /**
- * (non-PHPdoc)
- * @see mysqli::select_db()
- */
- public function select_db($dbname)
- {
- $this->setDb($dbname);
- return parent::select_db($this->getDb());
- }
-
- /**
- * (non-PHPdoc)
- * @see mysqli::query()
- * @return mysqli_result | bool
- */
- public function query($query,$resultmode = MYSQLI_STORE_RESULT)
- {
- /**
- * @todo add self::multi_query to this function.
- */
- if($this->connected === true)
- {
- self::$last_query = $query;
- return parent::query($query,$resultmode);
- }
- else
- {
- throw new Exception('No Database Connection');
- }
- }
-
- /**
- * @return the $host
- */
- public function getHost()
- {
- return $this->host;
- }
- /**
- * @param string $host
- */
- public function setHost($host)
- {
- $this->host = $host;
- return $this;
- }
- /**
- * @return the $username
- */
- public function getUsername()
- {
- return $this->username;
- }
- /**
- * @param string $username
- */
- public function setUsername($username)
- {
- $this->username = $username;
- return $this;
- }
- /**
- * @return the $db
- */
- public function getDb()
- {
- return $this->db;
- }
- /**
- * @param string $db
- */
- public function setDb($db)
- {
- $this->db = $db;
- return $this;
- }
- /**
- * Sets the database password parameter.
- * @param string $password
- */
- public function setPassword($password)
- {
- $this->password = $password;
- return $this;
- }
-
- /**
- * @return the $connected
- */
- public function getConnected()
- {
- return $this->connected;
- }
- /**
- * @param boolean $connected
- */
- protected function setConnected($connected)
- {
- $this->connected = (bool)$connected;
- return $this;
- }
- /**
- * @return the $last_query
- */
- public function getLastQuery()
- {
- return self::$last_query;
- }
- /**
- * @param string $last_query
- */
- protected function setLastQuery($last_query)
- {
- self::$last_query = $last_query;
- }
-
- /**
- * Returns any database errors that occurred on the last database query.
- * @return array[array];
- */
- public function getErrors()
- {
- //PHP_VERSION 5.4.0 supports the error list array.
- if(PHP_VERSION_ID > 50400)
- {
- return $this->error_list;
- }
- else
- {
- //Make the PHP 5.4 version manually.
- if(strlen($this->error) >= 1)
- {
- return array(array('errno'=>$this->errno, 'sqlstate'=>$this->sqlstate, 'error'=>$this->error));
- }
- else
- {
- return array();
- }
- }
- }
- /**
- *
- * Checks the configuration file to make sure that all required keys exist.
- * @param array $config
- * @throws Exception
- */
- protected function checkConfig(array $config)
- {
- $keys = array('host','username','password','db');
- foreach($keys as $value)
- {
- if(!array_key_exists($value, $config))
- {
- return false;
- }
- }
- return true;
- }
-
- /**
- * Checks that all required connection parameters have been set.
- * @return bool
- */
- protected function isReady()
- {
- $keys = array($this->host,$this->username,$this->password,$this->db);
- foreach($keys as $config)
- {
- if(strlen($config) < 1)
- {
- return false;
- }
- }
- return true;
- }
- }
|