]> source.dussan.org Git - nextcloud-server.git/commitdiff
Only provide the auth method for MySQL 8.0+ to not break MariaDB
authorJoas Schilling <coding@schilljs.com>
Wed, 5 Feb 2020 09:05:11 +0000 (10:05 +0100)
committerJoas Schilling <coding@schilljs.com>
Wed, 5 Feb 2020 12:54:57 +0000 (13:54 +0100)
Provide the auth method for MySQL 8.0+

Signed-off-by: Joas Schilling <coding@schilljs.com>
lib/private/Setup/MySQL.php

index 3f4dd616a2f18ed6eaeb8f217f7451bffbcf2668..1ee650fecc67a3ea8e5fa8f85b6df70127396b82 100644 (file)
@@ -34,6 +34,7 @@ namespace OC\Setup;
 use OC\DB\MySqlTools;
 use OCP\IDBConnection;
 use OCP\ILogger;
+use Doctrine\DBAL\Platforms\MySQL80Platform;
 
 class MySQL extends AbstractDatabase {
        public $dbprettyname = 'MySQL/MariaDB';
@@ -102,10 +103,18 @@ class MySQL extends AbstractDatabase {
                        $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 WITH mysql_native_password BY '$password'";
-                       $connection->executeUpdate($query);
-                       $query = "CREATE USER '$name'@'%' IDENTIFIED WITH mysql_native_password BY '$password'";
-                       $connection->executeUpdate($query);
+
+                       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);
+                       }
                }
                catch (\Exception $ex){
                        $this->logger->logException($ex, [