2014-04-14 20:33:21 +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 Andreas Fischer <bantu@owncloud.com>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author tbelau666 <thomas.belau@gmx.de>
|
|
|
|
* @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
|
|
|
*
|
2014-04-14 20:33:21 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-04-14 20:33:21 +04:00
|
|
|
namespace OC\DB;
|
2020-04-09 12:48:10 +03:00
|
|
|
|
2021-01-03 17:28:31 +03:00
|
|
|
use Doctrine\DBAL\Schema\AbstractAsset;
|
2014-12-22 12:44:30 +03:00
|
|
|
use OCP\IConfig;
|
2021-01-03 17:28:31 +03:00
|
|
|
use function preg_match;
|
|
|
|
use function preg_quote;
|
2014-04-14 20:33:21 +04:00
|
|
|
|
|
|
|
/**
|
2020-04-08 23:24:54 +03:00
|
|
|
* Various PostgreSQL specific helper functions.
|
|
|
|
*/
|
2014-04-14 20:33:21 +04:00
|
|
|
class PgSqlTools {
|
2014-12-22 12:44:30 +03:00
|
|
|
|
|
|
|
/** @var \OCP\IConfig */
|
|
|
|
private $config;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OCP\IConfig $config
|
|
|
|
*/
|
|
|
|
public function __construct(IConfig $config) {
|
|
|
|
$this->config = $config;
|
|
|
|
}
|
|
|
|
|
2014-04-14 20:33:21 +04:00
|
|
|
/**
|
2020-04-08 23:24:54 +03:00
|
|
|
* @brief Resynchronizes all sequences of a database after using INSERTs
|
|
|
|
* without leaving out the auto-incremented column.
|
|
|
|
* @param \OC\DB\Connection $conn
|
|
|
|
* @return null
|
|
|
|
*/
|
2014-04-14 20:33:21 +04:00
|
|
|
public function resynchronizeDatabaseSequences(Connection $conn) {
|
|
|
|
$databaseName = $conn->getDatabase();
|
2021-01-03 17:28:31 +03:00
|
|
|
$conn->getConfiguration()->setSchemaAssetsFilter(function ($asset) {
|
|
|
|
/** @var string|AbstractAsset $asset */
|
|
|
|
$filterExpression = '/^' . preg_quote($this->config->getSystemValue('dbtableprefix', 'oc_')) . '/';
|
|
|
|
if ($asset instanceof AbstractAsset) {
|
|
|
|
return preg_match($filterExpression, $asset->getName()) !== false;
|
|
|
|
}
|
|
|
|
return preg_match($filterExpression, $asset) !== false;
|
|
|
|
});
|
2014-12-01 01:17:09 +03:00
|
|
|
|
2014-04-14 20:33:21 +04:00
|
|
|
foreach ($conn->getSchemaManager()->listSequences() as $sequence) {
|
|
|
|
$sequenceName = $sequence->getName();
|
|
|
|
$sqlInfo = 'SELECT table_schema, table_name, column_name
|
|
|
|
FROM information_schema.columns
|
|
|
|
WHERE column_default = ? AND table_catalog = ?';
|
2021-01-03 17:28:31 +03:00
|
|
|
$result = $conn->executeQuery($sqlInfo, [
|
2014-04-14 20:33:21 +04:00
|
|
|
"nextval('$sequenceName'::regclass)",
|
|
|
|
$databaseName
|
2020-03-26 11:30:18 +03:00
|
|
|
]);
|
2021-01-03 17:28:31 +03:00
|
|
|
$sequenceInfo = $result->fetchAssociative();
|
|
|
|
$result->free();
|
|
|
|
/** @var string $tableName */
|
2014-04-14 20:33:21 +04:00
|
|
|
$tableName = $sequenceInfo['table_name'];
|
2021-01-03 17:28:31 +03:00
|
|
|
/** @var string $columnName */
|
2014-04-14 20:33:21 +04:00
|
|
|
$columnName = $sequenceInfo['column_name'];
|
|
|
|
$sqlMaxId = "SELECT MAX($columnName) FROM $tableName";
|
|
|
|
$sqlSetval = "SELECT setval('$sequenceName', ($sqlMaxId))";
|
|
|
|
$conn->executeQuery($sqlSetval);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|