]> git.mxchange.org Git - friendica.git/blob - tests/Util/Database/StaticDatabase.php
Merge branch '2021.06-rc' of https://github.com/friendica/friendica into 2021.06...
[friendica.git] / tests / Util / Database / StaticDatabase.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test\Util\Database;
23
24 use Friendica\Database\Database;
25 use Friendica\Database\DatabaseException;
26 use PDO;
27 use PDOException;
28
29 /**
30  * Overrides the Friendica database class for re-using the connection
31  * for different tests
32  *
33  * Overrides functionality to enforce one transaction per call (for nested transactions)
34  */
35 class StaticDatabase extends Database
36 {
37         /**
38          * @var ExtendedPDO
39          */
40         private static $staticConnection;
41
42         /** @var bool  */
43         private $_locked = false;
44
45         /**
46          * Override the behaviour of connect, due there is just one, static connection at all
47          *
48          * @return bool|void
49          */
50         public function connect()
51         {
52                 if (!is_null($this->connection) && $this->connected()) {
53                         return true;
54                 }
55
56                 if (!isset(self::$staticConnection)) {
57                         self::statConnect($_SERVER);
58                 }
59
60                 $this->driver = 'pdo';
61                 $this->connection = self::$staticConnection;
62                 $this->connected = true;
63                 $this->emulate_prepares = false;
64
65                 return $this->connected;
66         }
67
68         /**
69          * Override the transaction since there are now hierachical transactions possible
70          *
71          * @return bool
72          */
73         public function transaction()
74         {
75                 if (!$this->in_transaction && !$this->connection->beginTransaction()) {
76                         return false;
77                 }
78
79                 $this->in_transaction = true;
80                 return true;
81         }
82
83         /** Mock for locking tables */
84         public function lock($table)
85         {
86                 if ($this->_locked) {
87                         return false;
88                 }
89
90                 $this->in_transaction = true;
91                 $this->_locked = true;
92
93                 return true;
94         }
95
96         /** Mock for unlocking tables */
97         public function unlock()
98         {
99                 // See here: https://dev.mysql.com/doc/refman/5.7/en/lock-tables-and-transactions.html
100                 $this->performCommit();
101
102                 $this->in_transaction = false;
103                 $this->_locked = false;
104
105                 return true;
106         }
107
108         /**
109          * Does a commit
110          *
111          * @return bool Was the command executed successfully?
112          */
113         public function commit()
114         {
115                 if (!$this->performCommit()) {
116                         return false;
117                 }
118                 $this->in_transaction = false;
119                 return true;
120         }
121
122         /**
123          * Setup of the global, static connection
124          * Either through explicit calling or through implicit using the Database
125          *
126          * @param array $server $_SERVER variables
127          *
128          * @throws \Exception
129          */
130         public static function statConnect(array $server)
131         {
132                 // Use environment variables for mysql if they are set beforehand
133                 if (!empty($server['MYSQL_HOST'])
134                     && (!empty($server['MYSQL_USERNAME']) || !empty($server['MYSQL_USER']))
135                     && $server['MYSQL_PASSWORD'] !== false
136                     && !empty($server['MYSQL_DATABASE']))
137                 {
138                         $db_host = $server['MYSQL_HOST'];
139                         if (!empty($server['MYSQL_PORT'])) {
140                                 $db_host .= ':' . $server['MYSQL_PORT'];
141                         }
142
143                         if (!empty($server['MYSQL_USERNAME'])) {
144                                 $db_user = $server['MYSQL_USERNAME'];
145                         } else {
146                                 $db_user = $server['MYSQL_USER'];
147                         }
148                         $db_pw = (string) $server['MYSQL_PASSWORD'];
149                         $db_data = $server['MYSQL_DATABASE'];
150                 }
151
152                 if (empty($db_host) || empty($db_user) || empty($db_data)) {
153                         throw new DatabaseException('Either one of the following settings are missing: Host, User or Database', 999, 'CONNECT');
154                 }
155
156                 $port       = 0;
157                 $serveraddr = trim($db_host);
158                 $serverdata = explode(':', $serveraddr);
159                 $server     = $serverdata[0];
160                 if (count($serverdata) > 1) {
161                         $port = trim($serverdata[1]);
162                 }
163                 $server  = trim($server);
164                 $user    = trim($db_user);
165                 $pass    = trim($db_pw ?? '');
166                 $db      = trim($db_data);
167
168                 if (!(strlen($server) && strlen($user))) {
169                         return;
170                 }
171
172                 $connect = "mysql:host=" . $server . ";dbname=" . $db;
173
174                 if ($port > 0) {
175                         $connect .= ";port=" . $port;
176                 }
177
178                 try {
179                         self::$staticConnection = @new ExtendedPDO($connect, $user, $pass);
180                         self::$staticConnection->setAttribute(PDO::ATTR_AUTOCOMMIT,0);
181                 } catch (PDOException $e) {
182                         /// @TODO At least log exception, don't ignore it!
183                 }
184         }
185
186         /**
187          * @return ExtendedPDO The global, static connection
188          */
189         public static function getGlobConnection()
190         {
191                 return self::$staticConnection;
192         }
193
194         /**
195          * Perform a global rollback for every nested transaction of the static connection
196          */
197         public static function statRollback()
198         {
199                 if (isset(self::$staticConnection)) {
200                         while (self::$staticConnection->getTransactionDepth() > 0) {
201                                 self::$staticConnection->rollBack();
202                         }
203                 }
204         }
205 }