2013-02-25 11:19:49 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jonny007-MKD <1-23-4-5@web.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2013-02-25 11:19:49 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-02-25 11:19:49 +04:00
|
|
|
namespace OC\DB;
|
|
|
|
|
2013-07-23 20:09:38 +04:00
|
|
|
/**
|
|
|
|
* This handles the way we use to write queries, into something that can be
|
|
|
|
* handled by the database abstraction layer.
|
|
|
|
*/
|
2013-02-25 11:19:49 +04:00
|
|
|
class Adapter {
|
2013-08-02 21:53:04 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\DB\Connection $conn
|
|
|
|
*/
|
2013-02-25 11:19:49 +04:00
|
|
|
protected $conn;
|
|
|
|
|
|
|
|
public function __construct($conn) {
|
|
|
|
$this->conn = $conn;
|
|
|
|
}
|
2013-03-22 21:36:40 +04:00
|
|
|
|
2013-07-23 20:09:38 +04:00
|
|
|
/**
|
|
|
|
* @param string $table name
|
|
|
|
* @return int id of last insert statement
|
|
|
|
*/
|
2013-03-22 21:36:40 +04:00
|
|
|
public function lastInsertId($table) {
|
|
|
|
return $this->conn->realLastInsertId($table);
|
|
|
|
}
|
2013-02-26 01:49:55 +04:00
|
|
|
|
2013-07-23 20:09:38 +04:00
|
|
|
/**
|
2013-08-02 21:53:04 +04:00
|
|
|
* @param string $statement that needs to be changed so the db can handle it
|
2013-07-23 20:09:38 +04:00
|
|
|
* @return string changed statement
|
|
|
|
*/
|
2013-02-26 01:49:55 +04:00
|
|
|
public function fixupStatement($statement) {
|
|
|
|
return $statement;
|
|
|
|
}
|
2013-02-26 11:30:42 +04:00
|
|
|
|
2016-05-19 13:34:40 +03:00
|
|
|
/**
|
|
|
|
* Create an exclusive read+write lock on a table
|
|
|
|
*
|
|
|
|
* @param string $tableName
|
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
|
|
|
public function lockTable($tableName) {
|
|
|
|
$this->conn->beginTransaction();
|
|
|
|
$this->conn->executeUpdate('LOCK TABLE `' .$tableName . '` IN EXCLUSIVE MODE');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Release a previous acquired lock again
|
|
|
|
*
|
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
|
|
|
public function unlockTable() {
|
|
|
|
$this->conn->commit();
|
|
|
|
}
|
|
|
|
|
2013-07-23 20:09:38 +04:00
|
|
|
/**
|
2015-03-11 11:00:47 +03:00
|
|
|
* Insert a row if the matching row does not exists.
|
|
|
|
*
|
|
|
|
* @param string $table The table name (will replace *PREFIX* with the actual prefix)
|
|
|
|
* @param array $input data that should be inserted into the table (column name => value)
|
|
|
|
* @param array|null $compare List of values that should be checked for "if not exists"
|
|
|
|
* If this is null or an empty array, all keys of $input will be compared
|
2015-03-16 17:41:00 +03:00
|
|
|
* Please note: text fields (clob) must not be used in the compare array
|
2015-03-11 11:00:47 +03:00
|
|
|
* @return int number of inserted rows
|
2015-03-10 00:12:31 +03:00
|
|
|
* @throws \Doctrine\DBAL\DBALException
|
2013-07-23 20:09:38 +04:00
|
|
|
*/
|
2015-03-11 11:00:47 +03:00
|
|
|
public function insertIfNotExist($table, $input, array $compare = null) {
|
2015-03-12 11:18:43 +03:00
|
|
|
if (empty($compare)) {
|
2015-03-09 19:25:02 +03:00
|
|
|
$compare = array_keys($input);
|
|
|
|
}
|
2013-02-26 11:30:42 +04:00
|
|
|
$query = 'INSERT INTO `' .$table . '` (`'
|
|
|
|
. implode('`,`', array_keys($input)) . '`) SELECT '
|
|
|
|
. str_repeat('?,', count($input)-1).'? ' // Is there a prettier alternative?
|
|
|
|
. 'FROM `' . $table . '` WHERE ';
|
|
|
|
|
2013-08-23 18:30:41 +04:00
|
|
|
$inserts = array_values($input);
|
2015-03-09 19:25:02 +03:00
|
|
|
foreach($compare as $key) {
|
2013-08-23 18:30:41 +04:00
|
|
|
$query .= '`' . $key . '`';
|
2015-03-09 19:25:02 +03:00
|
|
|
if (is_null($input[$key])) {
|
2013-08-23 18:30:41 +04:00
|
|
|
$query .= ' IS NULL AND ';
|
|
|
|
} else {
|
2015-03-09 19:25:02 +03:00
|
|
|
$inserts[] = $input[$key];
|
2013-08-23 18:30:41 +04:00
|
|
|
$query .= ' = ? AND ';
|
|
|
|
}
|
2013-02-26 11:30:42 +04:00
|
|
|
}
|
|
|
|
$query = substr($query, 0, strlen($query) - 5);
|
|
|
|
$query .= ' HAVING COUNT(*) = 0';
|
|
|
|
|
2015-03-10 00:12:31 +03:00
|
|
|
return $this->conn->executeUpdate($query, $inserts);
|
2013-02-26 11:30:42 +04:00
|
|
|
}
|
2013-02-25 11:19:49 +04:00
|
|
|
}
|