refactoring

This commit is contained in:
Saeed Vaziry
2023-08-04 18:28:04 +02:00
parent 8444323cf4
commit 643318fcfc
349 changed files with 3189 additions and 2729 deletions

View File

@ -0,0 +1,27 @@
<?php
namespace App\SSHCommands\Nginx;
use App\SSHCommands\Command;
use Illuminate\Support\Facades\File;
class ChangeNginxPHPVersionCommand extends Command
{
public function __construct(protected string $domain, protected string $oldVersion, protected string $newVersion)
{
}
public function file(): string
{
return File::get(resource_path('commands/webserver/nginx/change-php-version.sh'));
}
public function content(): string
{
return str($this->file())
->replace('__domain__', $this->domain)
->replace('__old_version__', $this->oldVersion)
->replace('__new_version__', $this->newVersion)
->toString();
}
}

View File

@ -0,0 +1,30 @@
<?php
namespace App\SSHCommands\Nginx;
use App\SSHCommands\Command;
use Illuminate\Support\Facades\File;
class CreateNginxVHostCommand extends Command
{
public function __construct(
protected string $domain,
protected string $path,
protected string $vhost
) {
}
public function file(): string
{
return File::get(resource_path('commands/webserver/nginx/create-vhost.sh'));
}
public function content(): string
{
return str($this->file())
->replace('__domain__', $this->domain)
->replace('__path__', $this->path)
->replace('__vhost__', $this->vhost)
->toString();
}
}

View File

@ -0,0 +1,26 @@
<?php
namespace App\SSHCommands\Nginx;
use App\SSHCommands\Command;
use Illuminate\Support\Facades\File;
class DeleteNginxSiteCommand extends Command
{
public function __construct(protected string $domain, protected string $path)
{
}
public function file(): string
{
return File::get(resource_path('commands/webserver/nginx/delete-site.sh'));
}
public function content(): string
{
return str($this->file())
->replace('__domain__', $this->domain)
->replace('__path__', $this->path)
->toString();
}
}

View File

@ -0,0 +1,32 @@
<?php
namespace App\SSHCommands\Nginx;
use App\SSHCommands\Command;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Str;
class InstallNginxCommand extends Command
{
public function file(): string
{
return File::get(resource_path('commands/webserver/nginx/install-nginx.sh'));
}
public function content(): string
{
return str($this->file())
->replace('__config__', $this->config())
->toString();
}
protected function config(): string
{
$config = File::get(resource_path('commands/webserver/nginx/nginx.conf'));
/** TODO: change user to server user */
return str($config)
->replace('__user__', config('core.ssh_user'))
->toString();
}
}

View File

@ -0,0 +1,28 @@
<?php
namespace App\SSHCommands\Nginx;
use App\SSHCommands\Command;
use Illuminate\Support\Facades\File;
class UpdateNginxRedirectsCommand extends Command
{
public function __construct(
protected string $domain,
protected string $redirects
) {
}
public function file(): string
{
return File::get(resource_path('commands/webserver/nginx/update-redirects.sh'));
}
public function content(): string
{
return str($this->file())
->replace('__redirects__', addslashes($this->redirects))
->replace('__domain__', $this->domain)
->toString();
}
}

View File

@ -0,0 +1,30 @@
<?php
namespace App\SSHCommands\Nginx;
use App\SSHCommands\Command;
use Illuminate\Support\Facades\File;
class UpdateNginxVHostCommand extends Command
{
public function __construct(
protected string $domain,
protected string $path,
protected string $vhost
) {
}
public function file(): string
{
return File::get(resource_path('commands/webserver/nginx/update-vhost.sh'));
}
public function content(): string
{
return str($this->file())
->replace('__domain__', $this->domain)
->replace('__path__', $this->path)
->replace('__vhost__', $this->vhost)
->toString();
}
}