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>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Ole Ostergaard <ole.c.ostergaard@gmail.com>
|
|
|
|
* @author Ole Ostergaard <ole.ostergaard@knime.com>
|
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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
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;
|
|
|
|
|
2018-11-09 12:35:12 +03:00
|
|
|
use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
|
|
|
|
|
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
|
|
|
/**
|
2018-11-09 12:35:12 +03:00
|
|
|
* Insert a row if the matching row does not exists. To accomplish proper race condition avoidance
|
|
|
|
* it is needed that there is also a unique constraint on the values. Then this method will
|
|
|
|
* catch the exception and return 0.
|
2015-03-11 11:00:47 +03:00
|
|
|
*
|
|
|
|
* @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
|
2018-11-09 14:13:30 +03:00
|
|
|
* @deprecated 15.0.0 - use unique index and "try { $db->insert() } catch (UniqueConstraintViolationException $e) {}" instead, because it is more reliable and does not have the risk for deadlocks - see https://github.com/nextcloud/server/pull/12371
|
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);
|
2020-04-10 15:19:56 +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
|
|
|
}
|
2018-01-26 00:23:48 +03:00
|
|
|
$query = substr($query, 0, -5);
|
2013-02-26 11:30:42 +04:00
|
|
|
$query .= ' HAVING COUNT(*) = 0';
|
|
|
|
|
2018-11-09 12:35:12 +03:00
|
|
|
try {
|
|
|
|
return $this->conn->executeUpdate($query, $inserts);
|
|
|
|
} catch (UniqueConstraintViolationException $e) {
|
|
|
|
// if this is thrown then a concurrent insert happened between the insert and the sub-select in the insert, that should have avoided it
|
|
|
|
// it's fine to ignore this then
|
|
|
|
//
|
|
|
|
// more discussions about this can be found at https://github.com/nextcloud/server/pull/12315
|
|
|
|
return 0;
|
|
|
|
}
|
2013-02-26 11:30:42 +04:00
|
|
|
}
|
2019-01-21 19:54:16 +03:00
|
|
|
|
2019-03-21 19:05:57 +03:00
|
|
|
/**
|
2019-02-26 16:08:39 +03:00
|
|
|
* @suppress SqlInjectionChecker
|
|
|
|
*/
|
2019-02-26 16:08:55 +03:00
|
|
|
public function insertIgnoreConflict(string $table,array $values) : int {
|
2019-01-21 19:54:16 +03:00
|
|
|
try {
|
|
|
|
$builder = $this->conn->getQueryBuilder();
|
|
|
|
$builder->insert($table);
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($values as $key => $value) {
|
2019-01-21 19:54:16 +03:00
|
|
|
$builder->setValue($key, $builder->createNamedParameter($value));
|
|
|
|
}
|
|
|
|
return $builder->execute();
|
2020-04-10 15:19:56 +03:00
|
|
|
} catch (UniqueConstraintViolationException $e) {
|
2019-01-21 19:54:16 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2013-02-25 11:19:49 +04:00
|
|
|
}
|