2023-09-22 19:31:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Livewire\Project\Service;
|
|
|
|
|
|
|
|
use App\Models\LocalFileVolume;
|
2023-09-25 10:49:55 +00:00
|
|
|
use App\Models\ServiceApplication;
|
|
|
|
use App\Models\ServiceDatabase;
|
2023-09-22 19:31:47 +00:00
|
|
|
use Livewire\Component;
|
2023-09-25 10:49:55 +00:00
|
|
|
use Illuminate\Support\Str;
|
2023-09-22 19:31:47 +00:00
|
|
|
|
|
|
|
class FileStorage extends Component
|
|
|
|
{
|
|
|
|
public LocalFileVolume $fileStorage;
|
2023-09-25 10:49:55 +00:00
|
|
|
public ServiceApplication|ServiceDatabase $service;
|
|
|
|
public string $fs_path;
|
2023-09-30 13:08:40 +00:00
|
|
|
public ?string $workdir = null;
|
2023-09-22 19:31:47 +00:00
|
|
|
|
|
|
|
protected $rules = [
|
2023-09-26 12:45:52 +00:00
|
|
|
'fileStorage.is_directory' => 'required',
|
2023-09-22 19:31:47 +00:00
|
|
|
'fileStorage.fs_path' => 'required',
|
|
|
|
'fileStorage.mount_path' => 'required',
|
|
|
|
'fileStorage.content' => 'nullable',
|
|
|
|
];
|
2023-09-27 10:45:53 +00:00
|
|
|
public function mount()
|
|
|
|
{
|
2023-09-25 10:49:55 +00:00
|
|
|
$this->service = $this->fileStorage->service;
|
2023-09-30 13:08:40 +00:00
|
|
|
if (Str::of($this->fileStorage->fs_path)->startsWith('.')) {
|
|
|
|
$this->workdir = $this->service->service->workdir();
|
|
|
|
$this->fs_path = Str::of($this->fileStorage->fs_path)->after('.');
|
|
|
|
} else {
|
|
|
|
$this->workdir = null;
|
|
|
|
$this->fs_path = $this->fileStorage->fs_path;
|
|
|
|
}
|
2023-09-25 10:49:55 +00:00
|
|
|
}
|
|
|
|
public function submit()
|
|
|
|
{
|
2023-09-29 19:38:11 +00:00
|
|
|
$original = $this->fileStorage->getOriginal();
|
2023-09-25 10:49:55 +00:00
|
|
|
try {
|
|
|
|
$this->validate();
|
2023-09-29 19:38:11 +00:00
|
|
|
if ($this->fileStorage->is_directory) {
|
|
|
|
$this->fileStorage->content = null;
|
|
|
|
}
|
2023-09-25 10:49:55 +00:00
|
|
|
$this->fileStorage->save();
|
2023-09-29 19:38:11 +00:00
|
|
|
$this->fileStorage->saveStorageOnServer($this->service);
|
2023-09-25 10:49:55 +00:00
|
|
|
$this->emit('success', 'File updated successfully.');
|
|
|
|
} catch (\Throwable $e) {
|
2023-09-29 19:38:11 +00:00
|
|
|
$this->fileStorage->setRawAttributes($original);
|
|
|
|
$this->fileStorage->save();
|
2023-09-25 10:49:55 +00:00
|
|
|
return handleError($e, $this);
|
|
|
|
}
|
|
|
|
}
|
2023-09-27 10:45:53 +00:00
|
|
|
public function instantSave()
|
|
|
|
{
|
2023-09-26 12:45:52 +00:00
|
|
|
$this->submit();
|
|
|
|
}
|
2023-09-22 19:31:47 +00:00
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
return view('livewire.project.service.file-storage');
|
|
|
|
}
|
|
|
|
}
|