- Restrict "Add suffix for PR deployments" checkbox to non-service resources in both shared and service file-storage views - Replace condition `is_preview_deployments_enabled` with `!$isService` for PR suffix visibility in storages/show.blade.php - Fix FileStorage::instantSave() to use authorize + syncData instead of delegating to submit(), preventing unintended side effects - Add $this->validate() to Storages/Show::instantSave() before saving - Add response content schemas to storages API OpenAPI annotations - Add additionalProperties: false to storage update request schema - Rewrite PreviewDeploymentBindMountTest with behavioral tests of addPreviewDeploymentSuffix instead of file-content inspection
108 lines
2.8 KiB
PHP
108 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Project\Shared\Storages;
|
|
|
|
use App\Models\LocalPersistentVolume;
|
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
|
use Livewire\Component;
|
|
|
|
class Show extends Component
|
|
{
|
|
use AuthorizesRequests;
|
|
|
|
public LocalPersistentVolume $storage;
|
|
|
|
public $resource;
|
|
|
|
public bool $isReadOnly = false;
|
|
|
|
public bool $isFirst = true;
|
|
|
|
public bool $isService = false;
|
|
|
|
public ?string $startedAt = null;
|
|
|
|
// Explicit properties
|
|
public string $name;
|
|
|
|
public string $mountPath;
|
|
|
|
public ?string $hostPath = null;
|
|
|
|
public bool $isPreviewSuffixEnabled = true;
|
|
|
|
protected $rules = [
|
|
'name' => 'required|string',
|
|
'mountPath' => 'required|string',
|
|
'hostPath' => 'string|nullable',
|
|
'isPreviewSuffixEnabled' => 'required|boolean',
|
|
];
|
|
|
|
protected $validationAttributes = [
|
|
'name' => 'name',
|
|
'mountPath' => 'mount',
|
|
'hostPath' => 'host',
|
|
];
|
|
|
|
/**
|
|
* Sync data between component properties and model
|
|
*
|
|
* @param bool $toModel If true, sync FROM properties TO model. If false, sync FROM model TO properties.
|
|
*/
|
|
private function syncData(bool $toModel = false): void
|
|
{
|
|
if ($toModel) {
|
|
// Sync TO model (before save)
|
|
$this->storage->name = $this->name;
|
|
$this->storage->mount_path = $this->mountPath;
|
|
$this->storage->host_path = $this->hostPath;
|
|
$this->storage->is_preview_suffix_enabled = $this->isPreviewSuffixEnabled;
|
|
} else {
|
|
// Sync FROM model (on load/refresh)
|
|
$this->name = $this->storage->name;
|
|
$this->mountPath = $this->storage->mount_path;
|
|
$this->hostPath = $this->storage->host_path;
|
|
$this->isPreviewSuffixEnabled = $this->storage->is_preview_suffix_enabled ?? true;
|
|
}
|
|
}
|
|
|
|
public function mount()
|
|
{
|
|
$this->syncData(false);
|
|
$this->isReadOnly = $this->storage->shouldBeReadOnlyInUI();
|
|
}
|
|
|
|
public function instantSave(): void
|
|
{
|
|
$this->authorize('update', $this->resource);
|
|
$this->validate();
|
|
|
|
$this->syncData(true);
|
|
$this->storage->save();
|
|
$this->dispatch('success', 'Storage updated successfully');
|
|
}
|
|
|
|
public function submit()
|
|
{
|
|
$this->authorize('update', $this->resource);
|
|
|
|
$this->validate();
|
|
$this->syncData(true);
|
|
$this->storage->save();
|
|
$this->dispatch('success', 'Storage updated successfully');
|
|
}
|
|
|
|
public function delete($password, $selectedActions = [])
|
|
{
|
|
$this->authorize('update', $this->resource);
|
|
|
|
if (! verifyPasswordConfirmation($password, $this)) {
|
|
return 'The provided password is incorrect.';
|
|
}
|
|
|
|
$this->storage->delete();
|
|
$this->dispatch('refreshStorages');
|
|
|
|
return true;
|
|
}
|
|
}
|