From 23e6e0510bb4f69a769076922967adf09ae7a802 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Thu, 13 Apr 2017 23:19:01 -0400 Subject: [PATCH] Move config::set calls into single helper function --- app/Models/DatabaseHost.php | 22 ++++++++ app/Repositories/DatabaseRepository.php | 68 ++++--------------------- 2 files changed, 31 insertions(+), 59 deletions(-) diff --git a/app/Models/DatabaseHost.php b/app/Models/DatabaseHost.php index 2ad5b13eb..165a99c5a 100644 --- a/app/Models/DatabaseHost.php +++ b/app/Models/DatabaseHost.php @@ -24,6 +24,8 @@ namespace Pterodactyl\Models; +use Crypt; +use Config; use Illuminate\Database\Eloquent\Model; class DatabaseHost extends Model @@ -62,6 +64,26 @@ class DatabaseHost extends Model 'node_id' => 'integer', ]; + /** + * Sets the database connection name with the details of the host. + * + * @param string $connection + * @return void + */ + public function setDynamicConnection($connection = 'dynamic') + { + Config::set('database.connections.' . $connection, [ + 'driver' => 'mysql', + 'host' => $this->host, + 'port' => $this->port, + 'database' => 'mysql', + 'username' => $this->username, + 'password' => Crypt::decrypt($this->password), + 'charset' => 'utf8', + 'collation' => 'utf8_unicode_ci', + ]); + } + /** * Gets the node associated with a database host. * diff --git a/app/Repositories/DatabaseRepository.php b/app/Repositories/DatabaseRepository.php index 6c38583d1..27a096ddf 100644 --- a/app/Repositories/DatabaseRepository.php +++ b/app/Repositories/DatabaseRepository.php @@ -84,18 +84,9 @@ class DatabaseRepository throw $ex; } - Config::set('database.connections.dynamic', [ - 'driver' => 'mysql', - 'host' => $host->host, - 'port' => $host->port, - 'database' => 'mysql', - 'username' => $host->username, - 'password' => Crypt::decrypt($host->password), - 'charset' => 'utf8', - 'collation' => 'utf8_unicode_ci', - ]); - try { + $host->setDynamicConnection(); + DB::connection('dynamic')->statement(sprintf('CREATE DATABASE IF NOT EXISTS `%s`', $database->database)); DB::connection('dynamic')->statement(sprintf( 'CREATE USER `%s`@`%s` IDENTIFIED BY \'%s\'', @@ -137,21 +128,11 @@ class DatabaseRepository public function password($id, $password) { $database = Database::with('host')->findOrFail($id); + $database->host->setDynamicConnection(); DB::transaction(function () use ($database, $password) { $database->password = Crypt::encrypt($password); - Config::set('database.connections.dynamic', [ - 'driver' => 'mysql', - 'host' => $database->host->host, - 'port' => $database->host->port, - 'database' => 'mysql', - 'username' => $database->host->username, - 'password' => Crypt::decrypt($database->host->password), - 'charset' => 'utf8', - 'collation' => 'utf8_unicode_ci', - ]); - // We have to do the whole delete user, create user thing rather than // SET PASSWORD ... because MariaDB and PHP statements ends up inserting // a corrupted password. A way around this is strtoupper(sha1(sha1($password, true))) @@ -180,19 +161,9 @@ class DatabaseRepository public function drop($id) { $database = Database::with('host')->findOrFail($id); + $database->host->setDynamicConnection(); DB::transaction(function () use ($database) { - Config::set('database.connections.dynamic', [ - 'driver' => 'mysql', - 'host' => $database->host->host, - 'port' => $database->host->port, - 'database' => 'mysql', - 'username' => $database->host->username, - 'password' => Crypt::decrypt($database->host->password), - 'charset' => 'utf8', - 'collation' => 'utf8_unicode_ci', - ]); - DB::connection('dynamic')->statement(sprintf('DROP DATABASE IF EXISTS `%s`', $database->database)); DB::connection('dynamic')->statement(sprintf('DROP USER IF EXISTS `%s`@`%s`', $database->username, $database->remote)); DB::connection('dynamic')->statement('FLUSH PRIVILEGES'); @@ -248,20 +219,6 @@ class DatabaseRepository } return DB::transaction(function () use ($data) { - Config::set('database.connections.dynamic', [ - 'driver' => 'mysql', - 'host' => $data['host'], - 'port' => $data['port'], - 'database' => 'mysql', - 'username' => $data['username'], - 'password' => $data['password'], - 'charset' => 'utf8', - 'collation' => 'utf8_unicode_ci', - ]); - - // Allows us to check that we can connect to things. - DB::connection('dynamic')->select('SELECT 1 FROM dual'); - $host = new DatabaseHost; $host->password = Crypt::encrypt($data['password']); @@ -274,6 +231,10 @@ class DatabaseRepository 'node_id' => (isset($data['node_id'])) ? $data['node_id'] : null, ])->save(); + // Allows us to check that we can connect to things. + $host->setDynamicConnection(); + DB::connection('dynamic')->select('SELECT 1 FROM dual'); + return $host; }); } @@ -315,18 +276,7 @@ class DatabaseRepository $host->fill($data)->save(); // Check that we can still connect with these details. - Config::set('database.connections.dynamic', [ - 'driver' => 'mysql', - 'host' => $host->host, - 'port' => $host->port, - 'database' => 'mysql', - 'username' => $host->username, - 'password' => Crypt::decrypt($host->password), - 'charset' => 'utf8', - 'collation' => 'utf8_unicode_ci', - ]); - - // Allows us to check that we can connect to things. + $host->setDynamicConnection(); DB::connection('dynamic')->select('SELECT 1 FROM dual'); return $host;