mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
use blade as conmmands template (#444)
* use blade as conmmands template * fix lint * fix ssl
This commit is contained in:
@ -3,7 +3,10 @@
|
||||
namespace App\SiteTypes;
|
||||
|
||||
use App\Exceptions\FailedToDeployGitKey;
|
||||
use App\Exceptions\SSHError;
|
||||
use App\Models\Site;
|
||||
use App\SSH\Services\PHP\PHP;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
abstract class AbstractSiteType implements SiteType
|
||||
{
|
||||
@ -14,6 +17,26 @@ public function __construct(Site $site)
|
||||
$this->site = $site;
|
||||
}
|
||||
|
||||
public function createRules(array $input): array
|
||||
{
|
||||
return [];
|
||||
}
|
||||
|
||||
public function createFields(array $input): array
|
||||
{
|
||||
return [];
|
||||
}
|
||||
|
||||
public function data(array $input): array
|
||||
{
|
||||
return [];
|
||||
}
|
||||
|
||||
public function editRules(array $input): array
|
||||
{
|
||||
return [];
|
||||
}
|
||||
|
||||
protected function progress(int $percentage): void
|
||||
{
|
||||
$this->site->progress = $percentage;
|
||||
@ -22,6 +45,7 @@ protected function progress(int $percentage): void
|
||||
|
||||
/**
|
||||
* @throws FailedToDeployGitKey
|
||||
* @throws SSHError
|
||||
*/
|
||||
protected function deployKey(): void
|
||||
{
|
||||
@ -35,4 +59,31 @@ protected function deployKey(): void
|
||||
$this->site->ssh_key
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws SSHError
|
||||
*/
|
||||
protected function isolate(): void
|
||||
{
|
||||
if (! $this->site->isIsolated()) {
|
||||
return;
|
||||
}
|
||||
|
||||
$this->site->server->os()->createIsolatedUser(
|
||||
$this->site->user,
|
||||
Str::random(15),
|
||||
$this->site->id
|
||||
);
|
||||
|
||||
// Generate the FPM pool
|
||||
if ($this->site->php_version) {
|
||||
/** @var PHP $php */
|
||||
$php = $this->site->php()->handler();
|
||||
$php->createFpmPool(
|
||||
$this->site->user,
|
||||
$this->site->php_version,
|
||||
$this->site->id
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user