28 lines
841 B
PHP
28 lines
841 B
PHP
<?php
|
|
|
|
namespace App\Actions\Database;
|
|
|
|
use App\Models\ServiceDatabase;
|
|
use App\Models\StandaloneMariadb;
|
|
use App\Models\StandaloneMongodb;
|
|
use App\Models\StandaloneMysql;
|
|
use App\Models\StandalonePostgresql;
|
|
use App\Models\StandaloneRedis;
|
|
use Lorisleiva\Actions\Concerns\AsAction;
|
|
|
|
class StopDatabaseProxy
|
|
{
|
|
use AsAction;
|
|
|
|
public function handle(StandaloneRedis|StandalonePostgresql|StandaloneMongodb|StandaloneMysql|StandaloneMariadb|ServiceDatabase $database)
|
|
{
|
|
$server = data_get($database, 'destination.server');
|
|
if ($database->getMorphClass() === 'App\Models\ServiceDatabase') {
|
|
$server = data_get($database, 'service.server');
|
|
}
|
|
instant_remote_process(["docker rm -f {$database->uuid}-proxy"], $server);
|
|
$database->is_public = false;
|
|
$database->save();
|
|
}
|
|
}
|