mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
* feat: Implement Site Commands (#298) - Introduced a Commands widget/table for Site view, allowing users to create, edit, delete, and execute commands. - Each Site Type now has a predefined set of commands inserted upon site creation. - A migration script ensures commands are created for existing sites. - Implemented necessary policies for command management. - Added feature tests to validate functionality. * I'm trying to fix the tests, but it seems like it might not work. I'm having trouble running the tests locally for some reason. * I'm trying to fix the tests, but it seems like it might not work. I'm having trouble running the tests locally for some reason. * I'm trying to fix the tests, but it seems like it might not work. I'm having trouble running the tests locally for some reason. * I'm trying to fix the tests, but it seems like it might not work. I'm having trouble running the tests locally for some reason. * Remove feature tests for commands due to inconsistencies for now * fixes * add tests for commands * ui fix and add to wordpress --------- Co-authored-by: Saeed Vaziry <mr.saeedvaziry@gmail.com>
65 lines
1.4 KiB
PHP
Executable File
65 lines
1.4 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\SiteTypes;
|
|
|
|
use App\Enums\SiteFeature;
|
|
use App\Exceptions\SSHError;
|
|
use App\SSH\Services\Webserver\Webserver;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class PHPBlank extends PHPSite
|
|
{
|
|
public function supportedFeatures(): array
|
|
{
|
|
return [
|
|
SiteFeature::DEPLOYMENT,
|
|
SiteFeature::COMMANDS,
|
|
SiteFeature::ENV,
|
|
SiteFeature::SSL,
|
|
SiteFeature::QUEUES,
|
|
];
|
|
}
|
|
|
|
public function createRules(array $input): array
|
|
{
|
|
return [
|
|
'php_version' => [
|
|
'required',
|
|
Rule::in($this->site->server->installedPHPVersions()),
|
|
],
|
|
];
|
|
}
|
|
|
|
public function createFields(array $input): array
|
|
{
|
|
return [
|
|
'web_directory' => $input['web_directory'] ?? '',
|
|
'php_version' => $input['php_version'] ?? '',
|
|
];
|
|
}
|
|
|
|
public function data(array $input): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* @throws SSHError
|
|
*/
|
|
public function install(): void
|
|
{
|
|
$this->isolate();
|
|
|
|
/** @var Webserver $webserver */
|
|
$webserver = $this->site->server->webserver()->handler();
|
|
$webserver->createVHost($this->site);
|
|
$this->progress(65);
|
|
$this->site->php()?->restart();
|
|
}
|
|
|
|
public function baseCommands(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|