2017-06-18 00:48:31 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2017-07-09 17:29:18 +00:00
|
|
|
namespace Pterodactyl\Services\Database;
|
2017-06-18 00:48:31 +00:00
|
|
|
|
|
|
|
use Illuminate\Database\DatabaseManager;
|
|
|
|
use Illuminate\Contracts\Encryption\Encrypter;
|
|
|
|
use Pterodactyl\Extensions\DynamicDatabaseConnection;
|
2017-07-15 16:52:34 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\DatabaseHostRepositoryInterface;
|
2017-06-18 00:48:31 +00:00
|
|
|
|
|
|
|
class DatabaseHostService
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Database\DatabaseManager
|
|
|
|
*/
|
|
|
|
protected $database;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Extensions\DynamicDatabaseConnection
|
|
|
|
*/
|
|
|
|
protected $dynamic;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Contracts\Encryption\Encrypter
|
|
|
|
*/
|
|
|
|
protected $encrypter;
|
|
|
|
|
|
|
|
/**
|
2017-07-15 16:52:34 +00:00
|
|
|
* @var \Pterodactyl\Contracts\Repository\DatabaseHostRepositoryInterface
|
2017-06-18 00:48:31 +00:00
|
|
|
*/
|
2017-07-03 02:29:58 +00:00
|
|
|
protected $repository;
|
2017-06-18 00:48:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* DatabaseHostService constructor.
|
|
|
|
*
|
2017-07-15 16:52:34 +00:00
|
|
|
* @param \Pterodactyl\Contracts\Repository\DatabaseHostRepositoryInterface $repository
|
|
|
|
* @param \Illuminate\Database\DatabaseManager $database
|
|
|
|
* @param \Pterodactyl\Extensions\DynamicDatabaseConnection $dynamic
|
|
|
|
* @param \Illuminate\Contracts\Encryption\Encrypter $encrypter
|
2017-06-18 00:48:31 +00:00
|
|
|
*/
|
|
|
|
public function __construct(
|
2017-07-15 16:52:34 +00:00
|
|
|
DatabaseHostRepositoryInterface $repository,
|
2017-06-18 00:48:31 +00:00
|
|
|
DatabaseManager $database,
|
|
|
|
DynamicDatabaseConnection $dynamic,
|
2017-07-03 02:29:58 +00:00
|
|
|
Encrypter $encrypter
|
2017-06-18 00:48:31 +00:00
|
|
|
) {
|
|
|
|
$this->database = $database;
|
|
|
|
$this->dynamic = $dynamic;
|
|
|
|
$this->encrypter = $encrypter;
|
2017-07-03 02:29:58 +00:00
|
|
|
$this->repository = $repository;
|
2017-06-18 00:48:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new database host and persist it to the database.
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return \Pterodactyl\Models\DatabaseHost
|
|
|
|
*
|
|
|
|
* @throws \Throwable
|
|
|
|
* @throws \PDOException
|
|
|
|
*/
|
|
|
|
public function create(array $data)
|
|
|
|
{
|
2017-07-03 02:29:58 +00:00
|
|
|
$this->database->beginTransaction();
|
2017-06-18 00:48:31 +00:00
|
|
|
|
2017-07-03 02:29:58 +00:00
|
|
|
$host = $this->repository->create([
|
|
|
|
'password' => $this->encrypter->encrypt(array_get($data, 'password')),
|
2017-06-18 00:48:31 +00:00
|
|
|
'name' => array_get($data, 'name'),
|
|
|
|
'host' => array_get($data, 'host'),
|
|
|
|
'port' => array_get($data, 'port'),
|
|
|
|
'username' => array_get($data, 'username'),
|
|
|
|
'max_databases' => null,
|
|
|
|
'node_id' => array_get($data, 'node_id'),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Check Access
|
2017-07-03 02:29:58 +00:00
|
|
|
$this->dynamic->set('dynamic', $host);
|
2017-06-18 00:48:31 +00:00
|
|
|
$this->database->connection('dynamic')->select('SELECT 1 FROM dual');
|
|
|
|
|
2017-07-03 02:29:58 +00:00
|
|
|
$this->database->commit();
|
2017-06-18 00:48:31 +00:00
|
|
|
|
2017-07-03 02:29:58 +00:00
|
|
|
return $host;
|
2017-06-18 00:48:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update a database host and persist to the database.
|
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @param array $data
|
|
|
|
* @return mixed
|
|
|
|
*
|
|
|
|
* @throws \PDOException
|
|
|
|
*/
|
|
|
|
public function update($id, array $data)
|
|
|
|
{
|
2017-07-03 02:29:58 +00:00
|
|
|
$this->database->beginTransaction();
|
2017-06-18 00:48:31 +00:00
|
|
|
|
|
|
|
if (! empty(array_get($data, 'password'))) {
|
2017-07-03 02:29:58 +00:00
|
|
|
$data['password'] = $this->encrypter->encrypt($data['password']);
|
|
|
|
} else {
|
|
|
|
unset($data['password']);
|
2017-06-18 00:48:31 +00:00
|
|
|
}
|
|
|
|
|
2017-07-03 02:29:58 +00:00
|
|
|
$host = $this->repository->update($id, $data);
|
|
|
|
|
|
|
|
$this->dynamic->set('dynamic', $host);
|
2017-06-18 00:48:31 +00:00
|
|
|
$this->database->connection('dynamic')->select('SELECT 1 FROM dual');
|
|
|
|
|
2017-07-03 02:29:58 +00:00
|
|
|
$this->database->commit();
|
2017-06-18 00:48:31 +00:00
|
|
|
|
2017-07-03 02:29:58 +00:00
|
|
|
return $host;
|
2017-06-18 00:48:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a database host if it has no active databases attached to it.
|
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @return bool|null
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\DisplayException
|
|
|
|
*/
|
|
|
|
public function delete($id)
|
|
|
|
{
|
2017-07-03 02:29:58 +00:00
|
|
|
return $this->repository->deleteIfNoDatabases($id);
|
2017-06-18 00:48:31 +00:00
|
|
|
}
|
|
|
|
}
|