2013-04-03 00:01:23 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
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>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Manish Bisht <manish.bisht490@gmail.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Thomas Pulzer <t.pulzer@kniel.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @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
|
|
|
*
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2013-04-03 00:01:23 +04:00
|
|
|
namespace OC\Setup;
|
|
|
|
|
2016-07-12 14:11:44 +03:00
|
|
|
use OC\DB\ConnectionFactory;
|
2017-06-01 17:56:34 +03:00
|
|
|
use OC\DB\MigrationService;
|
2017-03-18 01:37:48 +03:00
|
|
|
use OC\SystemConfig;
|
2016-10-28 22:46:28 +03:00
|
|
|
use OCP\IL10N;
|
2015-07-30 01:04:30 +03:00
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\Security\ISecureRandom;
|
2015-07-29 19:09:23 +03:00
|
|
|
|
2013-04-03 00:01:23 +04:00
|
|
|
abstract class AbstractDatabase {
|
2013-12-02 11:42:28 +04:00
|
|
|
|
2016-10-28 22:46:28 +03:00
|
|
|
/** @var IL10N */
|
2013-04-03 00:01:23 +04:00
|
|
|
protected $trans;
|
2015-07-29 19:09:23 +03:00
|
|
|
/** @var string */
|
|
|
|
protected $dbUser;
|
|
|
|
/** @var string */
|
|
|
|
protected $dbPassword;
|
|
|
|
/** @var string */
|
|
|
|
protected $dbName;
|
|
|
|
/** @var string */
|
|
|
|
protected $dbHost;
|
|
|
|
/** @var string */
|
2016-07-06 10:58:38 +03:00
|
|
|
protected $dbPort;
|
|
|
|
/** @var string */
|
2015-07-29 19:09:23 +03:00
|
|
|
protected $tablePrefix;
|
2017-03-18 01:37:48 +03:00
|
|
|
/** @var SystemConfig */
|
2015-07-29 19:09:23 +03:00
|
|
|
protected $config;
|
2015-07-30 01:04:30 +03:00
|
|
|
/** @var ILogger */
|
|
|
|
protected $logger;
|
|
|
|
/** @var ISecureRandom */
|
|
|
|
protected $random;
|
2013-04-03 00:01:23 +04:00
|
|
|
|
2017-07-18 15:20:29 +03:00
|
|
|
public function __construct(IL10N $trans, SystemConfig $config, ILogger $logger, ISecureRandom $random) {
|
2013-04-03 00:01:23 +04:00
|
|
|
$this->trans = $trans;
|
2015-07-29 19:09:23 +03:00
|
|
|
$this->config = $config;
|
2015-07-30 01:04:30 +03:00
|
|
|
$this->logger = $logger;
|
|
|
|
$this->random = $random;
|
2013-04-03 19:52:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function validate($config) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$errors = [];
|
2020-04-10 15:19:56 +03:00
|
|
|
if (empty($config['dbuser']) && empty($config['dbname'])) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$errors[] = $this->trans->t("%s enter the database username and name.", [$this->dbprettyname]);
|
2020-04-10 15:19:56 +03:00
|
|
|
} elseif (empty($config['dbuser'])) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$errors[] = $this->trans->t("%s enter the database username.", [$this->dbprettyname]);
|
2020-04-10 15:19:56 +03:00
|
|
|
} elseif (empty($config['dbname'])) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$errors[] = $this->trans->t("%s enter the database name.", [$this->dbprettyname]);
|
2013-04-03 19:52:18 +04:00
|
|
|
}
|
2020-04-10 15:19:56 +03:00
|
|
|
if (substr_count($config['dbname'], '.') >= 1) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$errors[] = $this->trans->t("%s you may not use dots in the database name", [$this->dbprettyname]);
|
2013-04-03 19:52:18 +04:00
|
|
|
}
|
|
|
|
return $errors;
|
2013-04-03 00:01:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function initialize($config) {
|
2015-01-26 14:59:25 +03:00
|
|
|
$dbUser = $config['dbuser'];
|
|
|
|
$dbPass = $config['dbpass'];
|
|
|
|
$dbName = $config['dbname'];
|
|
|
|
$dbHost = !empty($config['dbhost']) ? $config['dbhost'] : 'localhost';
|
2016-07-06 10:58:38 +03:00
|
|
|
$dbPort = !empty($config['dbport']) ? $config['dbport'] : '';
|
2015-01-26 14:59:25 +03:00
|
|
|
$dbTablePrefix = isset($config['dbtableprefix']) ? $config['dbtableprefix'] : 'oc_';
|
2013-04-03 00:01:23 +04:00
|
|
|
|
2017-03-18 01:37:48 +03:00
|
|
|
$this->config->setValues([
|
2015-01-26 14:59:25 +03:00
|
|
|
'dbname' => $dbName,
|
|
|
|
'dbhost' => $dbHost,
|
2016-07-06 10:58:38 +03:00
|
|
|
'dbport' => $dbPort,
|
2015-01-26 14:59:25 +03:00
|
|
|
'dbtableprefix' => $dbTablePrefix,
|
2015-01-23 13:13:47 +03:00
|
|
|
]);
|
2013-04-03 00:01:23 +04:00
|
|
|
|
2015-07-29 19:09:23 +03:00
|
|
|
$this->dbUser = $dbUser;
|
|
|
|
$this->dbPassword = $dbPass;
|
|
|
|
$this->dbName = $dbName;
|
|
|
|
$this->dbHost = $dbHost;
|
2016-07-06 10:58:38 +03:00
|
|
|
$this->dbPort = $dbPort;
|
2015-07-29 19:09:23 +03:00
|
|
|
$this->tablePrefix = $dbTablePrefix;
|
2013-04-03 00:01:23 +04:00
|
|
|
}
|
2015-01-26 14:59:25 +03:00
|
|
|
|
2016-07-12 14:11:44 +03:00
|
|
|
/**
|
2016-07-12 14:50:54 +03:00
|
|
|
* @param array $configOverwrite
|
2016-07-12 14:11:44 +03:00
|
|
|
* @return \OC\DB\Connection
|
|
|
|
*/
|
2016-07-12 14:50:54 +03:00
|
|
|
protected function connect(array $configOverwrite = []) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$connectionParams = [
|
2016-07-26 12:44:15 +03:00
|
|
|
'host' => $this->dbHost,
|
|
|
|
'user' => $this->dbUser,
|
|
|
|
'password' => $this->dbPassword,
|
|
|
|
'tablePrefix' => $this->tablePrefix,
|
2016-07-21 13:44:02 +03:00
|
|
|
'dbname' => $this->dbName
|
2020-03-26 11:30:18 +03:00
|
|
|
];
|
2016-07-26 12:44:15 +03:00
|
|
|
|
|
|
|
// adding port support through installer
|
|
|
|
if (!empty($this->dbPort)) {
|
|
|
|
if (ctype_digit($this->dbPort)) {
|
|
|
|
$connectionParams['port'] = $this->dbPort;
|
|
|
|
} else {
|
|
|
|
$connectionParams['unix_socket'] = $this->dbPort;
|
|
|
|
}
|
2020-04-10 11:35:09 +03:00
|
|
|
} elseif (strpos($this->dbHost, ':')) {
|
2016-07-26 12:44:15 +03:00
|
|
|
// Host variable may carry a port or socket.
|
|
|
|
list($host, $portOrSocket) = explode(':', $this->dbHost, 2);
|
|
|
|
if (ctype_digit($portOrSocket)) {
|
|
|
|
$connectionParams['port'] = $portOrSocket;
|
|
|
|
} else {
|
|
|
|
$connectionParams['unix_socket'] = $portOrSocket;
|
|
|
|
}
|
|
|
|
$connectionParams['host'] = $host;
|
2016-07-12 14:11:44 +03:00
|
|
|
}
|
2016-07-26 12:44:15 +03:00
|
|
|
|
2016-07-12 14:50:54 +03:00
|
|
|
$connectionParams = array_merge($connectionParams, $configOverwrite);
|
2016-02-09 19:25:12 +03:00
|
|
|
$cf = new ConnectionFactory($this->config);
|
2017-03-18 01:37:48 +03:00
|
|
|
return $cf->getConnection($this->config->getValue('dbtype', 'sqlite'), $connectionParams);
|
2016-07-12 14:11:44 +03:00
|
|
|
}
|
|
|
|
|
2016-02-08 18:43:39 +03:00
|
|
|
/**
|
|
|
|
* @param string $userName
|
|
|
|
*/
|
2015-01-26 14:59:25 +03:00
|
|
|
abstract public function setupDatabase($userName);
|
2017-06-01 17:56:34 +03:00
|
|
|
|
|
|
|
public function runMigrations() {
|
|
|
|
if (!is_dir(\OC::$SERVERROOT."/core/Migrations")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$ms = new MigrationService('core', \OC::$server->getDatabaseConnection());
|
|
|
|
$ms->migrate();
|
|
|
|
}
|
2013-04-03 00:01:23 +04:00
|
|
|
}
|