
- Added authorization checks using the `authorize` method in various Livewire components to ensure only authorized users can update server settings. - Updated `ServerPolicy` to restrict update permissions to admin users and their respective teams. - Enhanced security and access control for server management functionalities.
105 lines
3.5 KiB
PHP
105 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Server;
|
|
|
|
use App\Jobs\DockerCleanupJob;
|
|
use App\Models\Server;
|
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
|
use Livewire\Attributes\Validate;
|
|
use Livewire\Component;
|
|
|
|
class DockerCleanup extends Component
|
|
{
|
|
use AuthorizesRequests;
|
|
|
|
public Server $server;
|
|
|
|
public array $parameters = [];
|
|
|
|
#[Validate(['string', 'required'])]
|
|
public string $dockerCleanupFrequency = '*/10 * * * *';
|
|
|
|
#[Validate(['integer', 'min:1', 'max:99'])]
|
|
public int $dockerCleanupThreshold = 10;
|
|
|
|
#[Validate('boolean')]
|
|
public bool $forceDockerCleanup = false;
|
|
|
|
#[Validate('boolean')]
|
|
public bool $deleteUnusedVolumes = false;
|
|
|
|
#[Validate('boolean')]
|
|
public bool $deleteUnusedNetworks = false;
|
|
|
|
public function mount(string $server_uuid)
|
|
{
|
|
try {
|
|
$this->server = Server::ownedByCurrentTeam()->whereUuid($server_uuid)->firstOrFail();
|
|
$this->parameters = get_route_parameters();
|
|
$this->syncData();
|
|
} catch (\Throwable) {
|
|
return redirect()->route('server.index');
|
|
}
|
|
}
|
|
|
|
public function syncData(bool $toModel = false)
|
|
{
|
|
if ($toModel) {
|
|
$this->authorize('update', $this->server);
|
|
$this->validate();
|
|
$this->server->settings->force_docker_cleanup = $this->forceDockerCleanup;
|
|
$this->server->settings->docker_cleanup_frequency = $this->dockerCleanupFrequency;
|
|
$this->server->settings->docker_cleanup_threshold = $this->dockerCleanupThreshold;
|
|
$this->server->settings->delete_unused_volumes = $this->deleteUnusedVolumes;
|
|
$this->server->settings->delete_unused_networks = $this->deleteUnusedNetworks;
|
|
$this->server->settings->save();
|
|
} else {
|
|
$this->forceDockerCleanup = $this->server->settings->force_docker_cleanup;
|
|
$this->dockerCleanupFrequency = $this->server->settings->docker_cleanup_frequency;
|
|
$this->dockerCleanupThreshold = $this->server->settings->docker_cleanup_threshold;
|
|
$this->deleteUnusedVolumes = $this->server->settings->delete_unused_volumes;
|
|
$this->deleteUnusedNetworks = $this->server->settings->delete_unused_networks;
|
|
}
|
|
}
|
|
|
|
public function instantSave()
|
|
{
|
|
try {
|
|
$this->syncData(true);
|
|
$this->dispatch('success', 'Server updated.');
|
|
} catch (\Throwable $e) {
|
|
return handleError($e, $this);
|
|
}
|
|
}
|
|
|
|
public function manualCleanup()
|
|
{
|
|
try {
|
|
$this->authorize('update', $this->server);
|
|
DockerCleanupJob::dispatch($this->server, true, $this->deleteUnusedVolumes, $this->deleteUnusedNetworks);
|
|
$this->dispatch('success', 'Manual cleanup job started. Depending on the amount of data, this might take a while.');
|
|
} catch (\Throwable $e) {
|
|
return handleError($e, $this);
|
|
}
|
|
}
|
|
|
|
public function submit()
|
|
{
|
|
try {
|
|
if (! validate_cron_expression($this->dockerCleanupFrequency)) {
|
|
$this->dockerCleanupFrequency = $this->server->settings->getOriginal('docker_cleanup_frequency');
|
|
throw new \Exception('Invalid Cron / Human expression for Docker Cleanup Frequency.');
|
|
}
|
|
$this->syncData(true);
|
|
$this->dispatch('success', 'Server updated.');
|
|
} catch (\Throwable $e) {
|
|
return handleError($e, $this);
|
|
}
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.server.docker-cleanup');
|
|
}
|
|
}
|