nextcloud/lib/setup/mysql.php

96 lines
3.5 KiB
PHP
Raw Normal View History

<?php
namespace OC\Setup;
2013-04-03 00:01:23 +04:00
class MySQL extends AbstractDatabase {
public $dbprettyname = 'MySQL';
2013-04-03 00:01:23 +04:00
public function setupDatabase($username) {
//check if the database user has admin right
2013-04-03 00:01:23 +04:00
$connection = @mysql_connect($this->dbhost, $this->dbuser, $this->dbpassword);
if(!$connection) {
2013-04-03 00:01:23 +04:00
throw new \DatabaseSetupException($this->trans->t('MySQL username and/or password not valid'),
$this->trans->t('You need to enter either an existing account or the administrator.'));
}
$oldUser=\OC_Config::getValue('dbuser', false);
//this should be enough to check for admin rights in mysql
2013-04-03 00:01:23 +04:00
$query="SELECT user FROM mysql.user WHERE user='$this->dbuser'";
if(mysql_query($query, $connection)) {
//use the admin login data for the new database user
//add prefix to the mysql user name to prevent collisions
2013-04-03 00:01:23 +04:00
$this->dbuser=substr('oc_'.$username, 0, 16);
if($this->dbuser!=$oldUser) {
//hash the password so we don't need to store the admin config in the config file
$this->dbpassword=\OC_Util::generateRandomBytes(30);
2013-04-03 00:01:23 +04:00
$this->createDBUser($connection);
2013-04-03 00:01:23 +04:00
\OC_Config::setValue('dbuser', $this->dbuser);
\OC_Config::setValue('dbpassword', $this->dbpassword);
}
//create the database
2013-04-03 00:01:23 +04:00
$this->createDatabase($connection);
}
else {
2013-04-03 00:01:23 +04:00
if($this->dbuser!=$oldUser) {
\OC_Config::setValue('dbuser', $this->dbuser);
\OC_Config::setValue('dbpassword', $this->dbpassword);
}
//create the database
2013-04-03 00:01:23 +04:00
$this->createDatabase($connection);
}
//fill the database if needed
$query='select count(*) from information_schema.tables'
2013-04-11 02:08:53 +04:00
." where table_schema='".$this->dbname."' AND table_name = '".$this->tableprefix."users';";
$result = mysql_query($query, $connection);
if($result) {
$row=mysql_fetch_row($result);
}
if(!$result or $row[0]==0) {
2013-06-27 22:19:51 +04:00
\OC_DB::createDbFromStructure($this->dbDefinitionFile);
}
mysql_close($connection);
}
2013-04-03 00:01:23 +04:00
private function createDatabase($connection) {
$name = $this->dbname;
$user = $this->dbuser;
//we cant use OC_BD functions here because we need to connect as the administrative user.
2013-04-03 00:01:23 +04:00
$query = "CREATE DATABASE IF NOT EXISTS `$name`";
$result = mysql_query($query, $connection);
if(!$result) {
2013-04-03 00:01:23 +04:00
$entry = $this->trans->t('DB Error: "%s"', array(mysql_error($connection))) . '<br />';
$entry .= $this->trans->t('Offending command was: "%s"', array($query)) . '<br />';
\OC_Log::write('setup.mssql', $entry, \OC_Log::WARN);
}
2013-04-03 00:01:23 +04:00
$query="GRANT ALL PRIVILEGES ON `$name` . * TO '$user'";
//this query will fail if there aren't the right permissions, ignore the error
mysql_query($query, $connection);
}
2013-04-03 00:01:23 +04:00
private function createDBUser($connection) {
$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.
$query = "CREATE USER '$name'@'localhost' IDENTIFIED BY '$password'";
$result = mysql_query($query, $connection);
if (!$result) {
2013-04-03 00:01:23 +04:00
throw new \DatabaseSetupException($this->trans->t("MySQL user '%s'@'localhost' exists already.", array($name)),
$this->trans->t("Drop this user from MySQL", array($name)));
}
$query = "CREATE USER '$name'@'%' IDENTIFIED BY '$password'";
$result = mysql_query($query, $connection);
if (!$result) {
2013-04-03 00:01:23 +04:00
throw new \DatabaseSetupException($this->trans->t("MySQL user '%s'@'%%' already exists", array($name)),
$this->trans->t("Drop this user from MySQL."));
}
}
}