2011-04-16 08:17:40 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
2012-05-26 17:14:24 +00:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2011-04-16 08:17:40 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-10-10 18:49:47 +00:00
|
|
|
define('MDB2_SCHEMA_DUMP_STRUCTURE', '1');
|
2013-02-23 11:12:51 +00:00
|
|
|
|
2013-02-23 12:43:05 +00:00
|
|
|
class DatabaseException extends Exception {
|
2012-12-07 15:09:29 +00:00
|
|
|
private $query;
|
|
|
|
|
2013-06-10 10:56:45 +00:00
|
|
|
//FIXME getQuery seems to be unused, maybe use parent constructor with $message, $code and $previous
|
|
|
|
public function __construct($message, $query = null){
|
2012-12-07 15:09:29 +00:00
|
|
|
parent::__construct($message);
|
|
|
|
$this->query = $query;
|
|
|
|
}
|
|
|
|
|
2013-02-23 12:43:05 +00:00
|
|
|
public function getQuery() {
|
2012-12-07 15:09:29 +00:00
|
|
|
return $this->query;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-16 08:17:40 +00:00
|
|
|
/**
|
|
|
|
* This class manages the access to the database. It basically is a wrapper for
|
2012-11-01 17:11:50 +00:00
|
|
|
* Doctrine with some adaptions.
|
2011-04-16 08:17:40 +00:00
|
|
|
*/
|
|
|
|
class OC_DB {
|
2012-09-22 23:52:34 +00:00
|
|
|
/**
|
2012-11-01 17:11:50 +00:00
|
|
|
* @var \Doctrine\DBAL\Connection
|
2012-09-22 23:52:34 +00:00
|
|
|
*/
|
|
|
|
/**
|
2013-06-27 21:34:36 +00:00
|
|
|
* @var \Doctrine\DBAL\Connection
|
2012-09-22 23:52:34 +00:00
|
|
|
*/
|
2013-02-25 22:45:07 +00:00
|
|
|
static private $connection; //the prefered connection to use, only Doctrine
|
2012-11-01 17:11:50 +00:00
|
|
|
|
2012-04-14 14:28:36 +00:00
|
|
|
static private $type=null;
|
2011-04-16 08:17:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief connects to the database
|
2012-09-22 23:52:34 +00:00
|
|
|
* @return bool true if connection can be established or false on error
|
2011-04-16 08:17:40 +00:00
|
|
|
*
|
|
|
|
* Connects to the database as specified in config.php
|
|
|
|
*/
|
2013-02-25 22:45:07 +00:00
|
|
|
public static function connect() {
|
2012-09-05 12:49:42 +00:00
|
|
|
if(self::$connection) {
|
2012-09-22 23:52:34 +00:00
|
|
|
return true;
|
2011-10-16 18:47:25 +00:00
|
|
|
}
|
2011-09-17 00:30:58 +00:00
|
|
|
|
2011-04-16 08:17:40 +00:00
|
|
|
// The global data we need
|
2011-09-17 00:30:58 +00:00
|
|
|
$name = OC_Config::getValue( "dbname", "owncloud" );
|
|
|
|
$host = OC_Config::getValue( "dbhost", "" );
|
|
|
|
$user = OC_Config::getValue( "dbuser", "" );
|
|
|
|
$pass = OC_Config::getValue( "dbpassword", "" );
|
|
|
|
$type = OC_Config::getValue( "dbtype", "sqlite" );
|
2012-09-05 12:49:42 +00:00
|
|
|
if(strpos($host, ':')) {
|
2012-11-02 18:53:02 +00:00
|
|
|
list($host, $port)=explode(':', $host, 2);
|
2012-12-07 10:35:24 +00:00
|
|
|
} else {
|
2012-05-16 23:06:22 +00:00
|
|
|
$port=false;
|
|
|
|
}
|
2011-04-16 08:17:40 +00:00
|
|
|
|
|
|
|
// do nothing if the connection already has been established
|
2013-02-25 22:45:07 +00:00
|
|
|
if(!self::$connection) {
|
2012-10-09 20:08:29 +00:00
|
|
|
$config = new \Doctrine\DBAL\Configuration();
|
2012-09-07 13:22:01 +00:00
|
|
|
switch($type) {
|
2011-09-17 00:30:58 +00:00
|
|
|
case 'sqlite':
|
|
|
|
case 'sqlite3':
|
2012-10-09 20:08:29 +00:00
|
|
|
$datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' );
|
|
|
|
$connectionParams = array(
|
|
|
|
'user' => $user,
|
|
|
|
'password' => $pass,
|
|
|
|
'path' => $datadir.'/'.$name.'.db',
|
|
|
|
'driver' => 'pdo_sqlite',
|
2011-09-17 00:30:58 +00:00
|
|
|
);
|
2013-02-25 07:19:49 +00:00
|
|
|
$connectionParams['adapter'] = '\OC\DB\AdapterSqlite';
|
2011-09-17 00:30:58 +00:00
|
|
|
break;
|
|
|
|
case 'mysql':
|
2012-10-09 20:08:29 +00:00
|
|
|
$connectionParams = array(
|
|
|
|
'user' => $user,
|
|
|
|
'password' => $pass,
|
|
|
|
'host' => $host,
|
|
|
|
'port' => $port,
|
|
|
|
'dbname' => $name,
|
|
|
|
'charset' => 'UTF8',
|
|
|
|
'driver' => 'pdo_mysql',
|
2011-09-17 00:30:58 +00:00
|
|
|
);
|
2013-02-25 07:19:49 +00:00
|
|
|
$connectionParams['adapter'] = '\OC\DB\Adapter';
|
2011-09-17 00:30:58 +00:00
|
|
|
break;
|
|
|
|
case 'pgsql':
|
2012-10-09 20:08:29 +00:00
|
|
|
$connectionParams = array(
|
|
|
|
'user' => $user,
|
|
|
|
'password' => $pass,
|
|
|
|
'host' => $host,
|
|
|
|
'port' => $port,
|
|
|
|
'dbname' => $name,
|
2013-03-10 10:40:08 +00:00
|
|
|
'driver' => 'pdo_pgsql',
|
2011-09-17 00:30:58 +00:00
|
|
|
);
|
2013-02-25 07:19:49 +00:00
|
|
|
$connectionParams['adapter'] = '\OC\DB\AdapterPgSql';
|
2011-09-17 00:30:58 +00:00
|
|
|
break;
|
2012-08-24 22:05:07 +00:00
|
|
|
case 'oci':
|
2012-10-09 20:08:29 +00:00
|
|
|
$connectionParams = array(
|
|
|
|
'user' => $user,
|
|
|
|
'password' => $pass,
|
|
|
|
'host' => $host,
|
|
|
|
'dbname' => $name,
|
|
|
|
'charset' => 'AL32UTF8',
|
|
|
|
'driver' => 'oci8',
|
2012-08-24 22:05:07 +00:00
|
|
|
);
|
2013-05-24 19:57:34 +00:00
|
|
|
if (!empty($port)) {
|
|
|
|
$connectionParams['port'] = $port;
|
|
|
|
}
|
2013-02-25 07:19:49 +00:00
|
|
|
$connectionParams['adapter'] = '\OC\DB\AdapterOCI8';
|
2012-07-30 20:42:43 +00:00
|
|
|
break;
|
2013-02-10 12:07:59 +00:00
|
|
|
case 'mssql':
|
2013-03-10 10:40:08 +00:00
|
|
|
$connectionParams = array(
|
|
|
|
'user' => $user,
|
|
|
|
'password' => $pass,
|
|
|
|
'host' => $host,
|
|
|
|
'port' => $port,
|
|
|
|
'dbname' => $name,
|
2013-03-17 12:25:28 +00:00
|
|
|
'charset' => 'UTF8',
|
2013-03-10 10:40:08 +00:00
|
|
|
'driver' => 'pdo_sqlsrv',
|
2013-03-12 14:33:37 +00:00
|
|
|
);
|
2013-02-25 07:19:49 +00:00
|
|
|
$connectionParams['adapter'] = '\OC\DB\AdapterSQLSrv';
|
2013-02-10 12:07:59 +00:00
|
|
|
break;
|
2012-09-22 23:52:34 +00:00
|
|
|
default:
|
|
|
|
return false;
|
2011-04-16 08:17:40 +00:00
|
|
|
}
|
2013-02-25 07:19:49 +00:00
|
|
|
$connectionParams['wrapperClass'] = 'OC\DB\Connection';
|
2013-02-25 07:19:49 +00:00
|
|
|
$connectionParams['table_prefix'] = OC_Config::getValue( "dbtableprefix", "oc_" );
|
2013-02-23 11:12:51 +00:00
|
|
|
try {
|
2013-02-25 22:45:07 +00:00
|
|
|
self::$connection = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config);
|
2013-02-25 20:35:11 +00:00
|
|
|
if ($type === 'sqlite' || $type === 'sqlite3') {
|
|
|
|
// Sqlite doesn't handle query caching and schema changes
|
|
|
|
// TODO: find a better way to handle this
|
|
|
|
self::$connection->disableQueryStatementCaching();
|
|
|
|
}
|
2013-02-23 11:12:51 +00:00
|
|
|
} catch(\Doctrine\DBAL\DBALException $e) {
|
|
|
|
OC_Log::write('core', $e->getMessage(), OC_Log::FATAL);
|
2013-01-07 19:15:51 +00:00
|
|
|
OC_User::setUserId(null);
|
2012-08-29 06:38:33 +00:00
|
|
|
|
2013-01-21 13:57:33 +00:00
|
|
|
// send http status 503
|
|
|
|
header('HTTP/1.1 503 Service Temporarily Unavailable');
|
|
|
|
header('Status: 503 Service Temporarily Unavailable');
|
2013-01-22 03:53:32 +00:00
|
|
|
OC_Template::printErrorPage('Failed to connect to database');
|
2013-01-07 19:15:51 +00:00
|
|
|
die();
|
2011-04-16 08:17:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Prepare a SQL query
|
2012-09-22 23:52:34 +00:00
|
|
|
* @param string $query Query string
|
|
|
|
* @param int $limit
|
|
|
|
* @param int $offset
|
2013-06-27 11:13:49 +00:00
|
|
|
* @param bool $isManipulation
|
2013-03-19 17:52:54 +00:00
|
|
|
* @throws DatabaseException
|
2012-11-01 17:11:50 +00:00
|
|
|
* @return \Doctrine\DBAL\Statement prepared SQL query
|
2011-04-16 08:17:40 +00:00
|
|
|
*
|
2012-11-01 17:11:50 +00:00
|
|
|
* SQL query via Doctrine prepare(), needs to be execute()'d!
|
2011-04-16 08:17:40 +00:00
|
|
|
*/
|
2013-06-20 12:46:22 +00:00
|
|
|
static public function prepare( $query , $limit = null, $offset = null, $isManipulation = null) {
|
2011-04-16 08:17:40 +00:00
|
|
|
self::connect();
|
2013-06-20 12:46:22 +00:00
|
|
|
|
|
|
|
if ($isManipulation === null) {
|
|
|
|
//try to guess, so we return the number of rows on manipulations
|
|
|
|
$isManipulation = self::isManipulation($query);
|
|
|
|
}
|
|
|
|
|
2011-04-16 08:17:40 +00:00
|
|
|
// return the result
|
2013-02-25 22:45:07 +00:00
|
|
|
try {
|
|
|
|
$result=self::$connection->prepare($query, $limit, $offset);
|
|
|
|
} catch(\Doctrine\DBAL\DBALException $e) {
|
|
|
|
throw new \DatabaseException($e->getMessage(), $query);
|
2011-04-16 08:17:40 +00:00
|
|
|
}
|
2013-02-25 22:45:07 +00:00
|
|
|
// differentiate between query and manipulation
|
|
|
|
$result=new OC_DB_StatementWrapper($result, $isManipulation);
|
2011-04-16 08:17:40 +00:00
|
|
|
return $result;
|
|
|
|
}
|
2013-02-25 22:45:07 +00:00
|
|
|
|
2013-06-20 12:46:22 +00:00
|
|
|
/**
|
|
|
|
* tries to guess the type of statement based on the first 10 characters
|
|
|
|
* the current check allows some whitespace but does not work with IF EXISTS or other more complex statements
|
|
|
|
*
|
|
|
|
* @param string $sql
|
|
|
|
*/
|
|
|
|
static public function isManipulation( $sql ) {
|
|
|
|
$selectOccurence = stripos ($sql, "SELECT");
|
|
|
|
if ($selectOccurence !== false && $selectOccurence < 10) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$insertOccurence = stripos ($sql, "INSERT");
|
|
|
|
if ($insertOccurence !== false && $insertOccurence < 10) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$updateOccurence = stripos ($sql, "UPDATE");
|
|
|
|
if ($updateOccurence !== false && $updateOccurence < 10) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$deleteOccurance = stripos ($sql, "DELETE");
|
|
|
|
if ($deleteOccurance !== false && $deleteOccurance < 10) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-06-10 10:56:45 +00:00
|
|
|
/**
|
|
|
|
* @brief execute a prepared statement, on error write log and throw exception
|
2013-06-28 09:48:38 +00:00
|
|
|
* @param mixed $stmt OC_DB_StatementWrapper,
|
2013-06-10 10:56:45 +00:00
|
|
|
* an array with 'sql' and optionally 'limit' and 'offset' keys
|
|
|
|
* .. or a simple sql query string
|
|
|
|
* @param array $parameters
|
|
|
|
* @return result
|
|
|
|
* @throws DatabaseException
|
|
|
|
*/
|
|
|
|
static public function executeAudited( $stmt, array $parameters = null) {
|
|
|
|
if (is_string($stmt)) {
|
|
|
|
// convert to an array with 'sql'
|
|
|
|
if (stripos($stmt,'LIMIT') !== false) { //OFFSET requires LIMIT, se we only neet to check for LIMIT
|
|
|
|
// TODO try to convert LIMIT OFFSET notation to parameters, see fixLimitClauseForMSSQL
|
|
|
|
$message = 'LIMIT and OFFSET are forbidden for portability reasons,'
|
|
|
|
. ' pass an array with \'limit\' and \'offset\' instead';
|
|
|
|
throw new DatabaseException($message);
|
|
|
|
}
|
|
|
|
$stmt = array('sql' => $stmt, 'limit' => null, 'offset' => null);
|
|
|
|
}
|
|
|
|
if (is_array($stmt)){
|
|
|
|
// convert to prepared statement
|
|
|
|
if ( ! array_key_exists('sql', $stmt) ) {
|
|
|
|
$message = 'statement array must at least contain key \'sql\'';
|
|
|
|
throw new DatabaseException($message);
|
|
|
|
}
|
|
|
|
if ( ! array_key_exists('limit', $stmt) ) {
|
|
|
|
$stmt['limit'] = null;
|
|
|
|
}
|
|
|
|
if ( ! array_key_exists('limit', $stmt) ) {
|
|
|
|
$stmt['offset'] = null;
|
|
|
|
}
|
|
|
|
$stmt = self::prepare($stmt['sql'], $stmt['limit'], $stmt['offset']);
|
|
|
|
}
|
|
|
|
self::raiseExceptionOnError($stmt, 'Could not prepare statement');
|
2013-06-28 09:48:38 +00:00
|
|
|
if ($stmt instanceof OC_DB_StatementWrapper) {
|
2013-06-10 10:56:45 +00:00
|
|
|
$result = $stmt->execute($parameters);
|
|
|
|
self::raiseExceptionOnError($result, 'Could not execute statement');
|
|
|
|
} else {
|
|
|
|
if (is_object($stmt)) {
|
|
|
|
$message = 'Expected a prepared statement or array got ' . get_class($stmt);
|
|
|
|
} else {
|
|
|
|
$message = 'Expected a prepared statement or array got ' . gettype($stmt);
|
|
|
|
}
|
|
|
|
throw new DatabaseException($message);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2011-04-16 08:17:40 +00:00
|
|
|
/**
|
|
|
|
* @brief gets last value of autoincrement
|
2012-09-22 23:52:34 +00:00
|
|
|
* @param string $table The optional table name (will replace *PREFIX*) and add sequence suffix
|
|
|
|
* @return int id
|
2013-06-10 10:56:45 +00:00
|
|
|
* @throws DatabaseException
|
2011-04-16 08:17:40 +00:00
|
|
|
*
|
2012-11-01 17:11:50 +00:00
|
|
|
* \Doctrine\DBAL\Connection lastInsertId
|
2011-04-16 08:17:40 +00:00
|
|
|
*
|
|
|
|
* Call this method right after the insert command or other functions may
|
|
|
|
* cause trouble!
|
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function insertid($table=null) {
|
2011-04-16 08:17:40 +00:00
|
|
|
self::connect();
|
2013-03-22 17:36:40 +00:00
|
|
|
return self::$connection->lastInsertId($table);
|
2011-04-16 08:17:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Disconnect
|
|
|
|
*
|
|
|
|
* This is good bye, good bye, yeah!
|
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function disconnect() {
|
2011-04-16 08:17:40 +00:00
|
|
|
// Cut connection if required
|
2012-09-05 12:49:42 +00:00
|
|
|
if(self::$connection) {
|
2013-02-25 07:32:38 +00:00
|
|
|
self::$connection->close();
|
2011-04-16 08:17:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-10 10:30:33 +00:00
|
|
|
/** else {
|
2011-04-16 08:17:40 +00:00
|
|
|
* @brief saves database scheme to xml file
|
2012-09-22 23:52:34 +00:00
|
|
|
* @param string $file name of file
|
|
|
|
* @param int $mode
|
|
|
|
* @return bool
|
2011-04-16 08:17:40 +00:00
|
|
|
*
|
|
|
|
* TODO: write more documentation
|
|
|
|
*/
|
2012-10-12 13:37:44 +00:00
|
|
|
public static function getDbStructure( $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) {
|
2013-02-24 21:12:02 +00:00
|
|
|
self::connect();
|
|
|
|
return OC_DB_Schema::getDbStructure(self::$connection, $file);
|
2011-04-16 08:17:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Creates tables from XML file
|
2012-09-22 23:52:34 +00:00
|
|
|
* @param string $file file to read structure from
|
|
|
|
* @return bool
|
2011-04-16 08:17:40 +00:00
|
|
|
*
|
|
|
|
* TODO: write more documentation
|
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function createDbFromStructure( $file ) {
|
2013-02-24 21:12:02 +00:00
|
|
|
self::connect();
|
|
|
|
$result = OC_DB_Schema::createDbFromStructure(self::$connection, $file);
|
|
|
|
return $result;
|
2011-04-16 08:17:40 +00:00
|
|
|
}
|
2012-08-29 06:38:33 +00:00
|
|
|
|
2011-10-23 13:25:38 +00:00
|
|
|
/**
|
|
|
|
* @brief update the database scheme
|
2012-09-22 23:52:34 +00:00
|
|
|
* @param string $file file to read structure from
|
2013-03-19 17:52:54 +00:00
|
|
|
* @throws Exception
|
2012-09-22 23:52:34 +00:00
|
|
|
* @return bool
|
2011-10-23 13:25:38 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function updateDbFromStructure($file) {
|
2013-02-24 21:12:02 +00:00
|
|
|
self::connect();
|
2012-10-10 18:49:47 +00:00
|
|
|
try {
|
2013-02-24 21:12:02 +00:00
|
|
|
$result = OC_DB_Schema::updateDbFromStructure(self::$connection, $file);
|
2012-10-10 18:49:47 +00:00
|
|
|
} catch (Exception $e) {
|
|
|
|
OC_Log::write('core', 'Failed to update database structure ('.$e.')', OC_Log::FATAL);
|
2013-02-23 11:12:51 +00:00
|
|
|
throw $e;
|
2011-04-16 08:17:40 +00:00
|
|
|
}
|
2012-10-10 18:49:47 +00:00
|
|
|
return $result;
|
2011-04-16 08:17:40 +00:00
|
|
|
}
|
|
|
|
|
2012-09-17 14:01:25 +00:00
|
|
|
/**
|
|
|
|
* @brief Insert a row if a matching row doesn't exists.
|
2012-11-12 22:34:02 +00:00
|
|
|
* @param string $table. The table to insert into in the form '*PREFIX*tableName'
|
|
|
|
* @param array $input. An array of fieldname/value pairs
|
2013-07-05 12:05:42 +00:00
|
|
|
* @returns int number of updated rows
|
2012-09-17 14:01:25 +00:00
|
|
|
*/
|
|
|
|
public static function insertIfNotExist($table, $input) {
|
|
|
|
self::connect();
|
2013-02-26 07:30:42 +00:00
|
|
|
return self::$connection->insertIfNotExist($table, $input);
|
2012-09-17 14:01:25 +00:00
|
|
|
}
|
2013-01-16 00:11:19 +00:00
|
|
|
|
2011-06-12 15:51:31 +00:00
|
|
|
/**
|
|
|
|
* @brief drop a table
|
2012-09-22 23:52:34 +00:00
|
|
|
* @param string $tableName the table to drop
|
2011-06-12 15:51:31 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function dropTable($tableName) {
|
2013-02-24 21:12:02 +00:00
|
|
|
self::connect();
|
|
|
|
OC_DB_Schema::dropTable(self::$connection, $tableName);
|
2011-06-12 15:51:31 +00:00
|
|
|
}
|
2012-08-29 06:38:33 +00:00
|
|
|
|
2011-06-12 15:51:31 +00:00
|
|
|
/**
|
|
|
|
* remove all tables defined in a database structure xml file
|
|
|
|
* @param string $file the xml file describing the tables
|
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function removeDBStructure($file) {
|
2013-02-24 21:12:02 +00:00
|
|
|
self::connect();
|
|
|
|
OC_DB_Schema::removeDBStructure(self::$connection, $file);
|
2011-06-12 15:51:31 +00:00
|
|
|
}
|
2012-08-29 06:38:33 +00:00
|
|
|
|
2012-03-01 19:41:14 +00:00
|
|
|
/**
|
2013-03-19 17:52:54 +00:00
|
|
|
* @brief replaces the ownCloud tables with a new set
|
2012-03-20 20:19:21 +00:00
|
|
|
* @param $file string path to the MDB2 xml db export file
|
2012-03-01 19:41:14 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function replaceDB( $file ) {
|
2013-02-24 21:12:02 +00:00
|
|
|
self::connect();
|
|
|
|
OC_DB_Schema::replaceDB(self::$connection, $file);
|
2012-09-05 12:49:42 +00:00
|
|
|
}
|
2012-08-29 06:38:33 +00:00
|
|
|
|
2011-07-31 18:24:53 +00:00
|
|
|
/**
|
2011-09-17 00:30:58 +00:00
|
|
|
* Start a transaction
|
2011-07-31 18:24:53 +00:00
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function beginTransaction() {
|
2011-07-31 22:07:46 +00:00
|
|
|
self::connect();
|
2011-09-17 00:30:58 +00:00
|
|
|
self::$connection->beginTransaction();
|
2011-07-31 18:24:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-09-17 00:30:58 +00:00
|
|
|
* Commit the database changes done during a transaction that is in progress
|
2011-07-31 18:24:53 +00:00
|
|
|
*/
|
2012-09-05 12:49:42 +00:00
|
|
|
public static function commit() {
|
2011-07-31 22:07:46 +00:00
|
|
|
self::connect();
|
2011-09-17 00:30:58 +00:00
|
|
|
self::$connection->commit();
|
|
|
|
}
|
2012-03-01 19:41:14 +00:00
|
|
|
|
|
|
|
/**
|
2012-11-01 17:11:50 +00:00
|
|
|
* check if a result is an error, works with Doctrine
|
2012-03-01 19:41:14 +00:00
|
|
|
* @param mixed $result
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-07 13:22:01 +00:00
|
|
|
public static function isError($result) {
|
2013-07-11 16:47:19 +00:00
|
|
|
//Doctrine returns false on error (and throws an exception)
|
|
|
|
return $result === false;
|
2012-03-01 19:41:14 +00:00
|
|
|
}
|
2013-06-10 10:56:45 +00:00
|
|
|
/**
|
2013-06-24 06:27:25 +00:00
|
|
|
* check if a result is an error and throws an exception, works with \Doctrine\DBAL\DBALException
|
2013-06-10 10:56:45 +00:00
|
|
|
* @param mixed $result
|
2013-06-27 14:48:09 +00:00
|
|
|
* @param string $message
|
2013-06-10 10:56:45 +00:00
|
|
|
* @return void
|
|
|
|
* @throws DatabaseException
|
|
|
|
*/
|
|
|
|
public static function raiseExceptionOnError($result, $message = null) {
|
|
|
|
if(self::isError($result)) {
|
|
|
|
if ($message === null) {
|
|
|
|
$message = self::getErrorMessage($result);
|
|
|
|
} else {
|
|
|
|
$message .= ', Root cause:' . self::getErrorMessage($result);
|
|
|
|
}
|
2013-06-12 13:48:22 +00:00
|
|
|
throw new DatabaseException($message, self::getErrorCode($result));
|
2013-06-10 10:56:45 +00:00
|
|
|
}
|
|
|
|
}
|
2012-10-14 19:04:08 +00:00
|
|
|
|
2013-06-10 10:56:45 +00:00
|
|
|
public static function getErrorCode($error) {
|
2013-06-24 06:27:25 +00:00
|
|
|
$code = self::$connection->errorCode();
|
2013-06-10 10:56:45 +00:00
|
|
|
return $code;
|
|
|
|
}
|
2012-09-12 10:45:20 +00:00
|
|
|
/**
|
|
|
|
* returns the error code and message as a string for logging
|
2012-11-01 17:11:50 +00:00
|
|
|
* works with DoctrineException
|
2012-09-12 10:45:20 +00:00
|
|
|
* @param mixed $error
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function getErrorMessage($error) {
|
2013-02-25 22:45:07 +00:00
|
|
|
if (self::$connection) {
|
|
|
|
$msg = self::$connection->errorCode() . ': ';
|
|
|
|
$errorInfo = self::$connection->errorInfo();
|
2012-09-12 10:45:20 +00:00
|
|
|
if (is_array($errorInfo)) {
|
|
|
|
$msg .= 'SQLSTATE = '.$errorInfo[0] . ', ';
|
|
|
|
$msg .= 'Driver Code = '.$errorInfo[1] . ', ';
|
|
|
|
$msg .= 'Driver Message = '.$errorInfo[2];
|
|
|
|
}
|
2013-06-27 14:48:09 +00:00
|
|
|
return $msg;
|
2012-09-12 10:45:20 +00:00
|
|
|
}
|
2013-06-27 14:48:09 +00:00
|
|
|
|
|
|
|
return '';
|
2012-09-12 10:45:20 +00:00
|
|
|
}
|
2013-02-26 21:41:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param bool $enabled
|
|
|
|
*/
|
|
|
|
static public function enableCaching($enabled) {
|
2013-02-25 20:35:11 +00:00
|
|
|
if ($enabled) {
|
|
|
|
self::$connection->enableQueryStatementCaching();
|
|
|
|
} else {
|
|
|
|
self::$connection->disableQueryStatementCaching();
|
2013-02-26 21:41:48 +00:00
|
|
|
}
|
|
|
|
}
|
2011-09-17 00:30:58 +00:00
|
|
|
}
|