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>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
*
|
|
|
|
* @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;
|
|
|
|
|
2019-07-31 01:53:20 +03:00
|
|
|
use Doctrine\DBAL\DBALException;
|
|
|
|
|
2013-02-25 11:19:49 +04:00
|
|
|
class AdapterPgSql extends Adapter {
|
2019-07-31 01:53:20 +03:00
|
|
|
protected $compatModePre9_5 = null;
|
|
|
|
|
2013-03-22 21:36:40 +04:00
|
|
|
public function lastInsertId($table) {
|
|
|
|
return $this->conn->fetchColumn('SELECT lastval()');
|
|
|
|
}
|
2013-02-26 01:49:55 +04:00
|
|
|
|
2013-08-07 20:16:34 +04:00
|
|
|
const UNIX_TIMESTAMP_REPLACEMENT = 'cast(extract(epoch from current_timestamp) as integer)';
|
2013-02-26 01:49:55 +04:00
|
|
|
public function fixupStatement($statement) {
|
|
|
|
$statement = str_replace( '`', '"', $statement );
|
2013-08-07 20:16:34 +04:00
|
|
|
$statement = str_ireplace( 'UNIX_TIMESTAMP()', self::UNIX_TIMESTAMP_REPLACEMENT, $statement );
|
2013-02-26 01:49:55 +04:00
|
|
|
return $statement;
|
|
|
|
}
|
2019-01-21 19:54:40 +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-07-31 01:53:20 +03:00
|
|
|
if($this->isPre9_5CompatMode() === true) {
|
|
|
|
return parent::insertIgnoreConflict($table, $values);
|
|
|
|
}
|
|
|
|
|
|
|
|
// "upsert" is only available since PgSQL 9.5, but the generic way
|
|
|
|
// would leave error logs in the DB.
|
2019-01-21 19:54:40 +03:00
|
|
|
$builder = $this->conn->getQueryBuilder();
|
2019-02-26 16:08:55 +03:00
|
|
|
$builder->insert($table);
|
2019-07-31 01:53:20 +03:00
|
|
|
foreach ($values as $key => $value) {
|
2019-01-21 19:54:40 +03:00
|
|
|
$builder->setValue($key, $builder->createNamedParameter($value));
|
|
|
|
}
|
|
|
|
$queryString = $builder->getSQL() . ' ON CONFLICT DO NOTHING';
|
2019-02-26 16:08:55 +03:00
|
|
|
return $this->conn->executeUpdate($queryString, $builder->getParameters(), $builder->getParameterTypes());
|
2019-01-21 19:54:40 +03:00
|
|
|
}
|
2019-07-31 01:53:20 +03:00
|
|
|
|
|
|
|
protected function isPre9_5CompatMode(): bool {
|
|
|
|
if($this->compatModePre9_5 !== null) {
|
|
|
|
return $this->compatModePre9_5;
|
|
|
|
}
|
|
|
|
|
|
|
|
$version = $this->conn->fetchColumn('SHOW SERVER_VERSION');
|
|
|
|
$this->compatModePre9_5 = version_compare($version, '9.5', '<');
|
|
|
|
|
|
|
|
return $this->compatModePre9_5;
|
|
|
|
}
|
2013-02-25 11:19:49 +04:00
|
|
|
}
|