mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 15:40:25 +00:00
123 lines
3 KiB
PHP
123 lines
3 KiB
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Doctrine\DBAL\DriverManager;
|
|
use Doctrine\DBAL\Query;
|
|
|
|
class UniversalDatabaseExecutor
|
|
{
|
|
public $host;
|
|
public $port;
|
|
|
|
public $username;
|
|
public $password;
|
|
|
|
public $database = null;
|
|
|
|
public function __construct($host, $port, $username, $password = null, $database = null)
|
|
{
|
|
$this->host = $host;
|
|
$this->port = $port;
|
|
|
|
$this->username = $username;
|
|
$this->password = $password;
|
|
|
|
$this->database = $database;
|
|
}
|
|
|
|
private function _getDatabaseConnection()
|
|
{
|
|
$connectionParams = [
|
|
'user' => $this->username,
|
|
'password'=> $this->password,
|
|
'host' => $this->host,
|
|
'port' => $this->port,
|
|
'driver' => 'pdo_mysql',
|
|
];
|
|
|
|
$connection = DriverManager::getConnection($connectionParams);
|
|
$connection->connect();
|
|
if (!$connection->isConnected()) {
|
|
throw new \Exception('Could not connect to database');
|
|
}
|
|
|
|
return $connection;
|
|
}
|
|
|
|
public function createDatabase($databaseName)
|
|
{
|
|
|
|
try {
|
|
$connection = $this->_getDatabaseConnection();
|
|
$resultSet = $connection->executeQuery('CREATE DATABASE ' . $databaseName);
|
|
|
|
return [
|
|
'success' => true,
|
|
'message' => 'Database created successfully'
|
|
];
|
|
} catch (\Exception $e) {
|
|
return [
|
|
'error' => true,
|
|
'message' => $e->getMessage()
|
|
];
|
|
}
|
|
|
|
}
|
|
|
|
public function deleteDatabase($databaseName)
|
|
{
|
|
try {
|
|
$connection = $this->_getDatabaseConnection();
|
|
$resultSet = $connection->executeQuery('DROP DATABASE ' . $databaseName);
|
|
|
|
return $resultSet;
|
|
} catch (\Exception $e) {
|
|
if (strpos($e->getMessage(), 'database doesn\'t exist') !== false) {
|
|
return [
|
|
'error' => true,
|
|
'message' => 'Database does not exist'
|
|
];
|
|
}
|
|
return [
|
|
'error' => true,
|
|
'message' => $e->getMessage()
|
|
];
|
|
}
|
|
|
|
}
|
|
|
|
public function createUser($username, $password)
|
|
{
|
|
try {
|
|
$connection = $this->_getDatabaseConnection();
|
|
|
|
$resultSet = $connection->executeStatement('CREATE USER ? IDENTIFIED BY ?', [
|
|
$username,
|
|
$password
|
|
]);
|
|
|
|
$connection->executeStatement('GRANT ALL PRIVILEGES ON '.$this->database.'.* TO ?', [
|
|
$username
|
|
]);
|
|
|
|
$connection->executeQuery('FLUSH PRIVILEGES');
|
|
|
|
return [
|
|
'success' => true,
|
|
'message' => 'User created successfully'
|
|
];
|
|
|
|
} catch (\Exception $e) {
|
|
return [
|
|
'error' => true,
|
|
'message' => $e->getMessage()
|
|
];
|
|
}
|
|
}
|
|
public function deleteUser($username)
|
|
{
|
|
|
|
}
|
|
|
|
}
|