mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 09:51:37 +00:00
64 lines
1.6 KiB
PHP
64 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\Service;
|
|
|
|
use App\Jobs\Job;
|
|
use App\Models\Service;
|
|
use App\SSHCommands\Service\RestartServiceCommand;
|
|
use App\SSHCommands\Service\StartServiceCommand;
|
|
use App\SSHCommands\Service\StopServiceCommand;
|
|
use Exception;
|
|
use Throwable;
|
|
|
|
class Manage extends Job
|
|
{
|
|
protected Service $service;
|
|
|
|
protected string $action;
|
|
|
|
protected string $successStatus;
|
|
|
|
protected string $failStatus;
|
|
|
|
protected string $failMessage;
|
|
|
|
public function __construct(
|
|
Service $service,
|
|
string $action,
|
|
string $successStatus,
|
|
string $failStatus,
|
|
string $failMessage,
|
|
) {
|
|
$this->service = $service;
|
|
$this->action = $action;
|
|
$this->successStatus = $successStatus;
|
|
$this->failStatus = $failStatus;
|
|
$this->failMessage = $failMessage;
|
|
}
|
|
|
|
/**
|
|
* @throws Throwable
|
|
*/
|
|
public function handle(): void
|
|
{
|
|
$command = match ($this->action) {
|
|
'start' => new StartServiceCommand($this->service->unit),
|
|
'stop' => new StopServiceCommand($this->service->unit),
|
|
'restart' => new RestartServiceCommand($this->service->unit),
|
|
default => throw new Exception('Invalid action'),
|
|
};
|
|
$this->service->server->ssh()->exec(
|
|
$command,
|
|
$this->action.'-'.$this->service->name
|
|
);
|
|
$this->service->status = $this->successStatus;
|
|
$this->service->save();
|
|
}
|
|
|
|
public function failed(): void
|
|
{
|
|
$this->service->status = $this->failStatus;
|
|
$this->service->save();
|
|
}
|
|
}
|