2013-02-25 07:19:49 +00:00
|
|
|
<?php
|
2024-05-23 07:26:56 +00:00
|
|
|
|
2013-02-25 07:19:49 +00:00
|
|
|
/**
|
2024-05-23 07:26:56 +00:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2013-02-25 07:19:49 +00:00
|
|
|
*/
|
|
|
|
namespace OC\DB;
|
|
|
|
|
2018-11-09 09:35:12 +00:00
|
|
|
use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
|
|
|
|
|
2013-02-25 07:19:49 +00:00
|
|
|
class AdapterSqlite extends Adapter {
|
2016-05-19 10:34:40 +00:00
|
|
|
/**
|
|
|
|
* @param string $tableName
|
|
|
|
*/
|
|
|
|
public function lockTable($tableName) {
|
|
|
|
$this->conn->executeUpdate('BEGIN EXCLUSIVE TRANSACTION');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function unlockTable() {
|
|
|
|
$this->conn->executeUpdate('COMMIT TRANSACTION');
|
|
|
|
}
|
|
|
|
|
2013-02-25 21:49:55 +00:00
|
|
|
public function fixupStatement($statement) {
|
2014-09-17 11:47:55 +00:00
|
|
|
$statement = preg_replace('/`(\w+)` ILIKE \?/', 'LOWER($1) LIKE LOWER(?)', $statement);
|
2020-04-09 14:07:47 +00:00
|
|
|
$statement = str_replace('`', '"', $statement);
|
|
|
|
$statement = str_ireplace('NOW()', 'datetime(\'now\')', $statement);
|
2016-02-25 12:14:20 +00:00
|
|
|
$statement = str_ireplace('GREATEST(', 'MAX(', $statement);
|
2020-04-09 14:07:47 +00:00
|
|
|
$statement = str_ireplace('UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $statement);
|
2013-02-25 21:49:55 +00:00
|
|
|
return $statement;
|
|
|
|
}
|
2013-02-26 07:30:42 +00:00
|
|
|
|
2015-03-09 21:12:31 +00:00
|
|
|
/**
|
2018-11-09 09:35:12 +00: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 08:00:47 +00: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 14:41:00 +00:00
|
|
|
* Please note: text fields (clob) must not be used in the compare array
|
2015-03-11 08:00:47 +00:00
|
|
|
* @return int number of inserted rows
|
2021-01-03 14:28:31 +00:00
|
|
|
* @throws \Doctrine\DBAL\Exception
|
2018-11-09 11:13:30 +00: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
|
2015-03-09 21:12:31 +00:00
|
|
|
*/
|
2024-03-28 15:13:19 +00:00
|
|
|
public function insertIfNotExist($table, $input, ?array $compare = null) {
|
2015-03-12 08:18:43 +00:00
|
|
|
if (empty($compare)) {
|
2015-03-09 16:25:02 +00:00
|
|
|
$compare = array_keys($input);
|
|
|
|
}
|
2015-03-06 13:50:51 +00:00
|
|
|
$fieldList = '`' . implode('`,`', array_keys($input)) . '`';
|
|
|
|
$query = "INSERT INTO `$table` ($fieldList) SELECT "
|
2020-10-05 13:12:57 +00:00
|
|
|
. str_repeat('?,', count($input) - 1) . '? '
|
2015-03-06 13:50:51 +00:00
|
|
|
. " WHERE NOT EXISTS (SELECT 1 FROM `$table` WHERE ";
|
|
|
|
|
|
|
|
$inserts = array_values($input);
|
2015-03-09 16:25:02 +00:00
|
|
|
foreach ($compare as $key) {
|
2014-07-02 13:27:27 +00:00
|
|
|
$query .= '`' . $key . '`';
|
2015-03-09 16:25:02 +00:00
|
|
|
if (is_null($input[$key])) {
|
2014-07-02 13:27:27 +00:00
|
|
|
$query .= ' IS NULL AND ';
|
|
|
|
} else {
|
2015-03-09 16:25:02 +00:00
|
|
|
$inserts[] = $input[$key];
|
2014-07-02 13:27:27 +00:00
|
|
|
$query .= ' = ? AND ';
|
|
|
|
}
|
2013-02-26 07:30:42 +00:00
|
|
|
}
|
2018-01-25 21:23:48 +00:00
|
|
|
$query = substr($query, 0, -5);
|
2015-03-06 13:50:51 +00:00
|
|
|
$query .= ')';
|
2014-07-02 13:27:27 +00:00
|
|
|
|
2018-11-09 09:35:12 +00: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 07:30:42 +00:00
|
|
|
}
|
2024-06-12 09:24:07 +00:00
|
|
|
|
|
|
|
public function insertIgnoreConflict(string $table, array $values): int {
|
|
|
|
$builder = $this->conn->getQueryBuilder();
|
|
|
|
$builder->insert($table);
|
|
|
|
$updates = [];
|
|
|
|
foreach ($values as $key => $value) {
|
|
|
|
$builder->setValue($key, $builder->createNamedParameter($value));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->conn->executeStatement(
|
|
|
|
$builder->getSQL() . ' ON CONFLICT DO NOTHING',
|
|
|
|
$builder->getParameters(),
|
|
|
|
$builder->getParameterTypes()
|
|
|
|
);
|
|
|
|
}
|
2013-02-25 07:19:49 +00:00
|
|
|
}
|