mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 21:04:44 +02:00
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Databases;
|
|
|
|
use App\Models\Database;
|
|
use App\Helpers\Utilities;
|
|
use Illuminate\Database\ConnectionInterface;
|
|
|
|
class DatabasePasswordService
|
|
{
|
|
/**
|
|
* DatabasePasswordService constructor.
|
|
*/
|
|
public function __construct(
|
|
private ConnectionInterface $connection,
|
|
) {}
|
|
|
|
/**
|
|
* Updates a password for a given database.
|
|
*/
|
|
public function handle(Database|int $database): void
|
|
{
|
|
if (is_int($database)) {
|
|
$database = Database::query()->findOrFail($database);
|
|
}
|
|
|
|
$password = Utilities::randomStringWithSpecialCharacters(24);
|
|
|
|
$this->connection->transaction(function () use ($database, $password) {
|
|
$database->update([
|
|
'password' => $password,
|
|
]);
|
|
|
|
$database->dropUser($database->username, $database->remote);
|
|
$database->createUser($database->username, $database->remote, $password, $database->max_connections);
|
|
$database->assignUserToDatabase($database->database, $database->username, $database->remote);
|
|
$database->flush();
|
|
});
|
|
}
|
|
}
|