2019-07-27 14:37:24 +02:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-07-27 14:37:24 +02:00
|
|
|
|
|
|
|
namespace Friendica\Test\Util\Database;
|
|
|
|
|
|
|
|
use Friendica\Database\Database;
|
2020-10-18 20:31:57 +02:00
|
|
|
use Friendica\Database\DatabaseException;
|
2019-07-27 14:37:24 +02:00
|
|
|
use PDO;
|
|
|
|
use PDOException;
|
|
|
|
|
2019-07-27 15:35:53 +02:00
|
|
|
/**
|
|
|
|
* Overrides the Friendica database class for re-using the connection
|
|
|
|
* for different tests
|
2019-07-28 17:40:42 +02:00
|
|
|
*
|
|
|
|
* Overrides functionality to enforce one transaction per call (for nested transactions)
|
2019-07-27 15:35:53 +02:00
|
|
|
*/
|
2019-07-27 14:37:24 +02:00
|
|
|
class StaticDatabase extends Database
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var ExtendedPDO
|
|
|
|
*/
|
|
|
|
private static $staticConnection;
|
|
|
|
|
2021-05-24 20:30:56 +02:00
|
|
|
/** @var bool */
|
|
|
|
private $_locked = false;
|
|
|
|
|
2019-07-27 14:37:24 +02:00
|
|
|
/**
|
|
|
|
* Override the behaviour of connect, due there is just one, static connection at all
|
|
|
|
*
|
|
|
|
* @return bool|void
|
|
|
|
*/
|
|
|
|
public function connect()
|
|
|
|
{
|
|
|
|
if (!is_null($this->connection) && $this->connected()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset(self::$staticConnection)) {
|
2019-07-28 17:40:42 +02:00
|
|
|
self::statConnect($_SERVER);
|
2019-07-27 14:37:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->driver = 'pdo';
|
|
|
|
$this->connection = self::$staticConnection;
|
|
|
|
$this->connected = true;
|
2020-05-17 12:03:11 +02:00
|
|
|
$this->emulate_prepares = false;
|
2019-07-27 14:37:24 +02:00
|
|
|
|
|
|
|
return $this->connected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override the transaction since there are now hierachical transactions possible
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function transaction()
|
|
|
|
{
|
2019-07-28 17:40:42 +02:00
|
|
|
if (!$this->in_transaction && !$this->connection->beginTransaction()) {
|
2019-07-27 14:37:24 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->in_transaction = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-24 20:30:56 +02:00
|
|
|
/** Mock for locking tables */
|
|
|
|
public function lock($table)
|
|
|
|
{
|
|
|
|
if ($this->_locked) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->in_transaction = true;
|
|
|
|
$this->_locked = true;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Mock for unlocking tables */
|
|
|
|
public function unlock()
|
|
|
|
{
|
|
|
|
// See here: https://dev.mysql.com/doc/refman/5.7/en/lock-tables-and-transactions.html
|
|
|
|
$this->performCommit();
|
|
|
|
|
|
|
|
$this->in_transaction = false;
|
|
|
|
$this->_locked = false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-07-27 14:37:24 +02:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Does a commit
|
2019-07-27 14:37:24 +02:00
|
|
|
*
|
2020-10-18 20:31:57 +02:00
|
|
|
* @return bool Was the command executed successfully?
|
2019-07-27 14:37:24 +02:00
|
|
|
*/
|
|
|
|
public function commit()
|
|
|
|
{
|
|
|
|
if (!$this->performCommit()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$this->in_transaction = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-07-28 17:40:42 +02:00
|
|
|
/**
|
|
|
|
* Setup of the global, static connection
|
|
|
|
* Either through explicit calling or through implicit using the Database
|
|
|
|
*
|
|
|
|
* @param array $server $_SERVER variables
|
2020-10-18 20:31:57 +02:00
|
|
|
*
|
|
|
|
* @throws \Exception
|
2019-07-28 17:40:42 +02:00
|
|
|
*/
|
|
|
|
public static function statConnect(array $server)
|
|
|
|
{
|
|
|
|
// Use environment variables for mysql if they are set beforehand
|
|
|
|
if (!empty($server['MYSQL_HOST'])
|
2020-08-19 12:28:34 +02:00
|
|
|
&& (!empty($server['MYSQL_USERNAME']) || !empty($server['MYSQL_USER']))
|
2019-07-28 17:40:42 +02:00
|
|
|
&& $server['MYSQL_PASSWORD'] !== false
|
|
|
|
&& !empty($server['MYSQL_DATABASE']))
|
|
|
|
{
|
|
|
|
$db_host = $server['MYSQL_HOST'];
|
|
|
|
if (!empty($server['MYSQL_PORT'])) {
|
|
|
|
$db_host .= ':' . $server['MYSQL_PORT'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($server['MYSQL_USERNAME'])) {
|
|
|
|
$db_user = $server['MYSQL_USERNAME'];
|
|
|
|
} else {
|
|
|
|
$db_user = $server['MYSQL_USER'];
|
|
|
|
}
|
|
|
|
$db_pw = (string) $server['MYSQL_PASSWORD'];
|
|
|
|
$db_data = $server['MYSQL_DATABASE'];
|
|
|
|
}
|
|
|
|
|
2020-10-18 20:31:57 +02:00
|
|
|
if (empty($db_host) || empty($db_user) || empty($db_data)) {
|
|
|
|
throw new DatabaseException('Either one of the following settings are missing: Host, User or Database', 999, 'CONNECT');
|
|
|
|
}
|
|
|
|
|
2019-07-28 17:40:42 +02:00
|
|
|
$port = 0;
|
|
|
|
$serveraddr = trim($db_host);
|
|
|
|
$serverdata = explode(':', $serveraddr);
|
|
|
|
$server = $serverdata[0];
|
|
|
|
if (count($serverdata) > 1) {
|
|
|
|
$port = trim($serverdata[1]);
|
|
|
|
}
|
|
|
|
$server = trim($server);
|
|
|
|
$user = trim($db_user);
|
2020-10-18 20:31:57 +02:00
|
|
|
$pass = trim($db_pw ?? '');
|
2019-07-28 17:40:42 +02:00
|
|
|
$db = trim($db_data);
|
|
|
|
|
|
|
|
if (!(strlen($server) && strlen($user))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$connect = "mysql:host=" . $server . ";dbname=" . $db;
|
|
|
|
|
|
|
|
if ($port > 0) {
|
|
|
|
$connect .= ";port=" . $port;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
self::$staticConnection = @new ExtendedPDO($connect, $user, $pass);
|
|
|
|
self::$staticConnection->setAttribute(PDO::ATTR_AUTOCOMMIT,0);
|
|
|
|
} catch (PDOException $e) {
|
|
|
|
/// @TODO At least log exception, don't ignore it!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-27 14:37:24 +02:00
|
|
|
/**
|
2019-07-27 15:35:53 +02:00
|
|
|
* @return ExtendedPDO The global, static connection
|
2019-07-27 14:37:24 +02:00
|
|
|
*/
|
|
|
|
public static function getGlobConnection()
|
|
|
|
{
|
|
|
|
return self::$staticConnection;
|
|
|
|
}
|
|
|
|
|
2019-07-27 15:35:53 +02:00
|
|
|
/**
|
|
|
|
* Perform a global rollback for every nested transaction of the static connection
|
|
|
|
*/
|
2019-07-27 14:37:24 +02:00
|
|
|
public static function statRollback()
|
|
|
|
{
|
|
|
|
if (isset(self::$staticConnection)) {
|
|
|
|
while (self::$staticConnection->getTransactionDepth() > 0) {
|
|
|
|
self::$staticConnection->rollBack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|