Clarify some naming. Cleanup.
This commit is contained in:
parent
97cd5ed537
commit
6524fade3e
@ -41,7 +41,7 @@ public function __construct(
|
||||
/**
|
||||
* Execute the job.
|
||||
*/
|
||||
public function handle(): ?ProcessResult
|
||||
public function handle(): ProcessResult
|
||||
{
|
||||
$this->timeStart = hrtime(true);
|
||||
|
||||
@ -68,27 +68,23 @@ public function handle(): ?ProcessResult
|
||||
|
||||
$process = Process::start($sshCommand, $this->handleOutput(...));
|
||||
|
||||
$res = $process->wait();
|
||||
$processResult = $process->wait();
|
||||
|
||||
if (app()->environment('testing')) {
|
||||
return $res;
|
||||
}
|
||||
|
||||
$status = match ($res->exitCode()) {
|
||||
$status = match ($processResult->exitCode()) {
|
||||
0 => ProcessStatus::FINISHED,
|
||||
default => ProcessStatus::ERROR,
|
||||
};
|
||||
|
||||
$this->activity->properties = $this->activity->properties->merge([
|
||||
'exitCode' => $res->exitCode(),
|
||||
'stdout' => $res->output(),
|
||||
'stderr' => $res->errorOutput(),
|
||||
'exitCode' => $processResult->exitCode(),
|
||||
'stdout' => $processResult->output(),
|
||||
'stderr' => $processResult->errorOutput(),
|
||||
'status' => $status,
|
||||
]);
|
||||
|
||||
$this->activity->save();
|
||||
|
||||
return $res;
|
||||
return $processResult;
|
||||
}
|
||||
|
||||
protected function handleOutput(string $type, string $output)
|
||||
|
@ -1,259 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services;
|
||||
|
||||
use Closure;
|
||||
use Exception;
|
||||
use Symfony\Component\Process\Process;
|
||||
|
||||
/**
|
||||
* Started from a copy of spatie/ssh
|
||||
*/
|
||||
class Ssh
|
||||
{
|
||||
protected string $user;
|
||||
|
||||
protected string $host;
|
||||
|
||||
protected array $extraOptions = [];
|
||||
|
||||
protected Closure $processConfigurationClosure;
|
||||
|
||||
protected Closure $onOutput;
|
||||
|
||||
public function __construct(string $user, string $host, int $port = null)
|
||||
{
|
||||
$this->user = $user;
|
||||
|
||||
$this->host = $host;
|
||||
|
||||
if ($port !== null) {
|
||||
$this->usePort($port);
|
||||
}
|
||||
|
||||
$this->processConfigurationClosure = fn(Process $process) => null;
|
||||
|
||||
$this->onOutput = fn($type, $line) => null;
|
||||
}
|
||||
|
||||
public static function create(...$args): self
|
||||
{
|
||||
return new static(...$args);
|
||||
}
|
||||
|
||||
public function usePrivateKey(string $pathToPrivateKey): self
|
||||
{
|
||||
$this->extraOptions['private_key'] = '-i ' . $pathToPrivateKey;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function useJumpHost(string $jumpHost): self
|
||||
{
|
||||
$this->extraOptions['jump_host'] = '-J ' . $jumpHost;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function usePort(int $port): self
|
||||
{
|
||||
if ($port < 0) {
|
||||
throw new Exception('Port must be a positive integer.');
|
||||
}
|
||||
$this->extraOptions['port'] = '-p ' . $port;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function useMultiplexing(string $controlPath, string $controlPersist = '10m'): self
|
||||
{
|
||||
$this->extraOptions['control_master'] = '-o ControlMaster=auto -o ControlPath=' . $controlPath . ' -o ControlPersist=' . $controlPersist;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function configureProcess(Closure $processConfigurationClosure): self
|
||||
{
|
||||
$this->processConfigurationClosure = $processConfigurationClosure;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function onOutput(Closure $onOutput): self
|
||||
{
|
||||
$this->onOutput = $onOutput;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function enableStrictHostKeyChecking(): self
|
||||
{
|
||||
unset($this->extraOptions['enable_strict_check']);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function disableStrictHostKeyChecking(): self
|
||||
{
|
||||
$this->extraOptions['enable_strict_check'] = '-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null';
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function enableQuietMode(): self
|
||||
{
|
||||
$this->extraOptions['quiet'] = '-q';
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function disableQuietMode(): self
|
||||
{
|
||||
unset($this->extraOptions['quiet']);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function disablePasswordAuthentication(): self
|
||||
{
|
||||
$this->extraOptions['password_authentication'] = '-o PasswordAuthentication=no';
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function enablePasswordAuthentication(): self
|
||||
{
|
||||
unset($this->extraOptions['password_authentication']);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function addExtraOption(string $option): self
|
||||
{
|
||||
$this->extraOptions[] = $option;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string|array $command
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getExecuteCommand($command): string
|
||||
{
|
||||
$commands = $this->wrapArray($command);
|
||||
|
||||
$extraOptions = implode(' ', $this->getExtraOptions());
|
||||
|
||||
$commandString = implode(PHP_EOL, $commands);
|
||||
|
||||
$delimiter = 'EOF-SPATIE-SSH';
|
||||
|
||||
$target = $this->getTargetForSsh();
|
||||
|
||||
if (in_array($this->host, ['local', 'localhost', '127.0.0.1'])) {
|
||||
return $commandString;
|
||||
}
|
||||
|
||||
return "ssh {$extraOptions} {$target} 'bash -se' << \\$delimiter" . PHP_EOL
|
||||
. $commandString . PHP_EOL
|
||||
. $delimiter;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string|array $command
|
||||
*
|
||||
* @return \Symfony\Component\Process\Process
|
||||
**/
|
||||
public function execute($command): Process
|
||||
{
|
||||
$sshCommand = $this->getExecuteCommand($command);
|
||||
|
||||
return $this->run($sshCommand);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string|array $command
|
||||
*
|
||||
* @return \Symfony\Component\Process\Process
|
||||
*/
|
||||
public function executeAsync($command): Process
|
||||
{
|
||||
$sshCommand = $this->getExecuteCommand($command);
|
||||
|
||||
return $this->run($sshCommand, 'start');
|
||||
}
|
||||
|
||||
public function getDownloadCommand(string $sourcePath, string $destinationPath): string
|
||||
{
|
||||
return "scp {$this->getExtraScpOptions()} {$this->getTargetForScp()}:$sourcePath $destinationPath";
|
||||
}
|
||||
|
||||
public function download(string $sourcePath, string $destinationPath): Process
|
||||
{
|
||||
$downloadCommand = $this->getDownloadCommand($sourcePath, $destinationPath);
|
||||
|
||||
return $this->run($downloadCommand);
|
||||
}
|
||||
|
||||
public function getUploadCommand(string $sourcePath, string $destinationPath): string
|
||||
{
|
||||
return "scp {$this->getExtraScpOptions()} $sourcePath {$this->getTargetForScp()}:$destinationPath";
|
||||
}
|
||||
|
||||
public function upload(string $sourcePath, string $destinationPath): Process
|
||||
{
|
||||
$uploadCommand = $this->getUploadCommand($sourcePath, $destinationPath);
|
||||
|
||||
return $this->run($uploadCommand);
|
||||
}
|
||||
|
||||
protected function getExtraScpOptions(): string
|
||||
{
|
||||
$extraOptions = $this->extraOptions;
|
||||
|
||||
if (isset($extraOptions['port'])) {
|
||||
$extraOptions['port'] = str_replace('-p', '-P', $extraOptions['port']);
|
||||
}
|
||||
|
||||
$extraOptions[] = '-r';
|
||||
|
||||
return implode(' ', array_values($extraOptions));
|
||||
}
|
||||
|
||||
private function getExtraOptions(): array
|
||||
{
|
||||
return array_values($this->extraOptions);
|
||||
}
|
||||
|
||||
protected function wrapArray($arrayOrString): array
|
||||
{
|
||||
return (array)$arrayOrString;
|
||||
}
|
||||
|
||||
protected function run(string $command, string $method = 'run'): Process
|
||||
{
|
||||
$process = Process::fromShellCommandline($command);
|
||||
|
||||
$process->setTimeout(0);
|
||||
|
||||
($this->processConfigurationClosure)($process);
|
||||
|
||||
$process->{$method}($this->onOutput);
|
||||
|
||||
return $process;
|
||||
}
|
||||
|
||||
protected function getTargetForScp(): string
|
||||
{
|
||||
$host = filter_var($this->host, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) ? '[' . $this->host . ']' : $this->host;
|
||||
|
||||
return "{$this->user}@{$host}";
|
||||
}
|
||||
|
||||
protected function getTargetForSsh(): string
|
||||
{
|
||||
return "{$this->user}@{$this->host}";
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user