2013-03-29 19:28:48 +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.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Hemanth Kumar Veeranki <hems.india1997@gmail.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Michael Göhler <somebody.here@gmx.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Vincent Petry <vincent@nextcloud.com>
|
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-03-29 19:28:48 +04:00
|
|
|
namespace OC\Setup;
|
|
|
|
|
2021-01-03 17:28:31 +03:00
|
|
|
use OC\DB\ConnectionAdapter;
|
2017-02-03 18:24:53 +03:00
|
|
|
use OC\DB\MySqlTools;
|
2015-07-30 01:04:30 +03:00
|
|
|
use OCP\IDBConnection;
|
2018-04-25 16:22:28 +03:00
|
|
|
use OCP\ILogger;
|
2020-02-05 12:05:11 +03:00
|
|
|
use Doctrine\DBAL\Platforms\MySQL80Platform;
|
2021-01-18 14:03:52 +03:00
|
|
|
use OCP\Security\ISecureRandom;
|
2015-07-29 19:09:23 +03:00
|
|
|
|
2013-04-03 00:01:23 +04:00
|
|
|
class MySQL extends AbstractDatabase {
|
2014-02-07 19:09:31 +04:00
|
|
|
public $dbprettyname = 'MySQL/MariaDB';
|
2013-04-03 19:52:18 +04:00
|
|
|
|
2013-04-03 00:01:23 +04:00
|
|
|
public function setupDatabase($username) {
|
2013-03-29 19:28:48 +04:00
|
|
|
//check if the database user has admin right
|
2016-12-14 15:52:04 +03:00
|
|
|
$connection = $this->connect(['dbname' => null]);
|
2013-03-29 19:28:48 +04:00
|
|
|
|
2017-02-03 17:38:48 +03:00
|
|
|
// detect mb4
|
2017-03-21 15:08:14 +03:00
|
|
|
$tools = new MySqlTools();
|
2021-01-03 17:28:31 +03:00
|
|
|
if ($tools->supports4ByteCharset(new ConnectionAdapter($connection))) {
|
2017-03-21 15:08:14 +03:00
|
|
|
$this->config->setValue('mysql.utf8mb4', true);
|
2017-06-01 03:12:25 +03:00
|
|
|
$connection = $this->connect(['dbname' => null]);
|
2017-02-03 17:38:48 +03:00
|
|
|
}
|
|
|
|
|
2021-01-03 17:28:31 +03:00
|
|
|
$this->createSpecificUser($username, new ConnectionAdapter($connection));
|
2013-03-29 19:28:48 +04:00
|
|
|
|
2014-07-29 12:52:51 +04:00
|
|
|
//create the database
|
|
|
|
$this->createDatabase($connection);
|
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//fill the database if needed
|
2020-10-05 16:12:57 +03:00
|
|
|
$query = 'select count(*) from information_schema.tables where table_schema=? AND table_name = ?';
|
2017-07-18 15:20:29 +03:00
|
|
|
$connection->executeQuery($query, [$this->dbName, $this->tablePrefix.'users']);
|
2020-02-05 13:08:18 +03:00
|
|
|
|
|
|
|
$connection->close();
|
|
|
|
$connection = $this->connect();
|
|
|
|
try {
|
|
|
|
$connection->connect();
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
$this->logger->logException($e);
|
|
|
|
throw new \OC\DatabaseSetupException($this->trans->t('MySQL username and/or password not valid'),
|
2021-01-07 23:04:11 +03:00
|
|
|
$this->trans->t('You need to enter details of an existing account.'), 0, $e);
|
2020-02-05 13:08:18 +03:00
|
|
|
}
|
2013-03-29 19:28:48 +04:00
|
|
|
}
|
|
|
|
|
2015-07-29 19:09:23 +03:00
|
|
|
/**
|
|
|
|
* @param \OC\DB\Connection $connection
|
|
|
|
*/
|
2013-04-03 00:01:23 +04:00
|
|
|
private function createDatabase($connection) {
|
2020-04-10 15:19:56 +03:00
|
|
|
try {
|
2015-07-30 01:04:30 +03:00
|
|
|
$name = $this->dbName;
|
|
|
|
$user = $this->dbUser;
|
2015-07-30 14:57:04 +03:00
|
|
|
//we can't use OC_DB functions here because we need to connect as the administrative user.
|
2017-03-18 01:37:48 +03:00
|
|
|
$characterSet = $this->config->getValue('mysql.utf8mb4', false) ? 'utf8mb4' : 'utf8';
|
2015-07-30 14:57:04 +03:00
|
|
|
$query = "CREATE DATABASE IF NOT EXISTS `$name` CHARACTER SET $characterSet COLLATE ${characterSet}_bin;";
|
2015-07-30 01:04:30 +03:00
|
|
|
$connection->executeUpdate($query);
|
2016-07-26 13:38:14 +03:00
|
|
|
} catch (\Exception $ex) {
|
2018-01-17 17:21:56 +03:00
|
|
|
$this->logger->logException($ex, [
|
|
|
|
'message' => 'Database creation failed.',
|
2018-04-25 16:22:28 +03:00
|
|
|
'level' => ILogger::ERROR,
|
2016-07-26 13:38:14 +03:00
|
|
|
'app' => 'mysql.setup',
|
|
|
|
]);
|
|
|
|
return;
|
|
|
|
}
|
2015-07-30 01:04:30 +03:00
|
|
|
|
2016-07-26 13:38:14 +03:00
|
|
|
try {
|
2015-07-30 01:04:30 +03:00
|
|
|
//this query will fail if there aren't the right permissions, ignore the error
|
2020-10-05 16:12:57 +03:00
|
|
|
$query = "GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, REFERENCES, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EVENT, TRIGGER ON `$name` . * TO '$user'";
|
2015-07-30 01:04:30 +03:00
|
|
|
$connection->executeUpdate($query);
|
|
|
|
} catch (\Exception $ex) {
|
2018-01-17 17:21:56 +03:00
|
|
|
$this->logger->logException($ex, [
|
|
|
|
'message' => 'Could not automatically grant privileges, this can be ignored if database user already had privileges.',
|
2018-04-25 16:22:28 +03:00
|
|
|
'level' => ILogger::DEBUG,
|
2015-07-30 01:04:30 +03:00
|
|
|
'app' => 'mysql.setup',
|
|
|
|
]);
|
|
|
|
}
|
2013-03-29 19:28:48 +04:00
|
|
|
}
|
|
|
|
|
2015-07-29 19:09:23 +03:00
|
|
|
/**
|
2016-02-08 18:43:39 +03:00
|
|
|
* @param IDBConnection $connection
|
2015-07-29 19:09:23 +03:00
|
|
|
* @throws \OC\DatabaseSetupException
|
|
|
|
*/
|
2013-04-03 00:01:23 +04:00
|
|
|
private function createDBUser($connection) {
|
2020-04-10 15:19:56 +03:00
|
|
|
try {
|
2016-10-31 14:02:22 +03:00
|
|
|
$name = $this->dbUser;
|
|
|
|
$password = $this->dbPassword;
|
|
|
|
// we need to create 2 accounts, one for global use and one for local user. if we don't specify the local one,
|
|
|
|
// the anonymous user would take precedence when there is one.
|
2020-02-05 12:05:11 +03:00
|
|
|
|
|
|
|
if ($connection->getDatabasePlatform() instanceof Mysql80Platform) {
|
|
|
|
$query = "CREATE USER '$name'@'localhost' IDENTIFIED WITH mysql_native_password BY '$password'";
|
|
|
|
$connection->executeUpdate($query);
|
|
|
|
$query = "CREATE USER '$name'@'%' IDENTIFIED WITH mysql_native_password BY '$password'";
|
|
|
|
$connection->executeUpdate($query);
|
|
|
|
} else {
|
|
|
|
$query = "CREATE USER '$name'@'localhost' IDENTIFIED BY '$password'";
|
|
|
|
$connection->executeUpdate($query);
|
|
|
|
$query = "CREATE USER '$name'@'%' IDENTIFIED BY '$password'";
|
|
|
|
$connection->executeUpdate($query);
|
|
|
|
}
|
2020-04-10 15:19:56 +03:00
|
|
|
} catch (\Exception $ex) {
|
2018-01-17 17:21:56 +03:00
|
|
|
$this->logger->logException($ex, [
|
|
|
|
'message' => 'Database user creation failed.',
|
2018-04-25 16:22:28 +03:00
|
|
|
'level' => ILogger::ERROR,
|
2018-01-17 17:21:56 +03:00
|
|
|
'app' => 'mysql.setup',
|
|
|
|
]);
|
2016-10-31 14:02:22 +03:00
|
|
|
}
|
2015-07-29 19:09:23 +03:00
|
|
|
}
|
|
|
|
|
2015-07-30 01:04:30 +03:00
|
|
|
/**
|
|
|
|
* @param $username
|
|
|
|
* @param IDBConnection $connection
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function createSpecificUser($username, $connection) {
|
|
|
|
try {
|
|
|
|
//user already specified in config
|
2017-03-18 01:37:48 +03:00
|
|
|
$oldUser = $this->config->getValue('dbuser', false);
|
2015-07-30 01:04:30 +03:00
|
|
|
|
|
|
|
//we don't have a dbuser specified in config
|
|
|
|
if ($this->dbUser !== $oldUser) {
|
|
|
|
//add prefix to the admin username to prevent collisions
|
|
|
|
$adminUser = substr('oc_' . $username, 0, 16);
|
|
|
|
|
|
|
|
$i = 1;
|
|
|
|
while (true) {
|
|
|
|
//this should be enough to check for admin rights in mysql
|
|
|
|
$query = 'SELECT user FROM mysql.user WHERE user=?';
|
|
|
|
$result = $connection->executeQuery($query, [$adminUser]);
|
|
|
|
|
|
|
|
//current dbuser has admin rights
|
2021-01-03 17:28:31 +03:00
|
|
|
$data = $result->fetchAll();
|
|
|
|
$result->closeCursor();
|
|
|
|
//new dbuser does not exist
|
|
|
|
if (count($data) === 0) {
|
|
|
|
//use the admin login data for the new database user
|
|
|
|
$this->dbUser = $adminUser;
|
|
|
|
|
|
|
|
//create a random password so we don't need to store the admin password in the config file
|
2021-01-18 14:03:52 +03:00
|
|
|
$this->dbPassword = $this->random->generate(30, ISecureRandom::CHAR_DIGITS . ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER);
|
2021-01-03 17:28:31 +03:00
|
|
|
|
|
|
|
$this->createDBUser($connection);
|
|
|
|
|
2015-07-30 01:04:30 +03:00
|
|
|
break;
|
2021-01-03 17:28:31 +03:00
|
|
|
} else {
|
|
|
|
//repeat with different username
|
|
|
|
$length = strlen((string)$i);
|
|
|
|
$adminUser = substr('oc_' . $username, 0, 16 - $length) . $i;
|
|
|
|
$i++;
|
2015-07-30 01:04:30 +03:00
|
|
|
}
|
2018-01-27 01:46:40 +03:00
|
|
|
}
|
2015-07-30 01:04:30 +03:00
|
|
|
}
|
|
|
|
} catch (\Exception $ex) {
|
2018-01-17 17:21:56 +03:00
|
|
|
$this->logger->logException($ex, [
|
|
|
|
'message' => 'Can not create a new MySQL user, will continue with the provided user.',
|
2018-04-25 16:22:28 +03:00
|
|
|
'level' => ILogger::INFO,
|
2015-07-30 01:04:30 +03:00
|
|
|
'app' => 'mysql.setup',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2017-03-18 01:37:48 +03:00
|
|
|
$this->config->setValues([
|
2015-07-30 01:04:30 +03:00
|
|
|
'dbuser' => $this->dbUser,
|
|
|
|
'dbpassword' => $this->dbPassword,
|
|
|
|
]);
|
|
|
|
}
|
2013-03-29 19:28:48 +04:00
|
|
|
}
|