107 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Livewire\Project\Service;
 | |
| 
 | |
| use App\Models\Application;
 | |
| use App\Models\LocalFileVolume;
 | |
| use App\Models\ServiceApplication;
 | |
| use App\Models\ServiceDatabase;
 | |
| use App\Models\StandaloneClickhouse;
 | |
| use App\Models\StandaloneDragonfly;
 | |
| use App\Models\StandaloneKeydb;
 | |
| use App\Models\StandaloneMariadb;
 | |
| use App\Models\StandaloneMongodb;
 | |
| use App\Models\StandaloneMysql;
 | |
| use App\Models\StandalonePostgresql;
 | |
| use App\Models\StandaloneRedis;
 | |
| use Livewire\Component;
 | |
| use Illuminate\Support\Str;
 | |
| 
 | |
| class FileStorage extends Component
 | |
| {
 | |
|     public LocalFileVolume $fileStorage;
 | |
|     public ServiceApplication|StandaloneRedis|StandalonePostgresql|StandaloneMongodb|StandaloneMysql|StandaloneMariadb|StandaloneKeydb|StandaloneDragonfly|StandaloneClickhouse|ServiceDatabase|Application $resource;
 | |
|     public string $fs_path;
 | |
|     public ?string $workdir = null;
 | |
| 
 | |
|     protected $rules = [
 | |
|         'fileStorage.is_directory' => 'required',
 | |
|         'fileStorage.fs_path' => 'required',
 | |
|         'fileStorage.mount_path' => 'required',
 | |
|         'fileStorage.content' => 'nullable',
 | |
|     ];
 | |
|     public function mount()
 | |
|     {
 | |
|         $this->resource = $this->fileStorage->service;
 | |
|         if (Str::of($this->fileStorage->fs_path)->startsWith('.')) {
 | |
|             $this->workdir = $this->resource->service?->workdir();
 | |
|             $this->fs_path = Str::of($this->fileStorage->fs_path)->after('.');
 | |
|         } else {
 | |
|             $this->workdir = null;
 | |
|             $this->fs_path = $this->fileStorage->fs_path;
 | |
|         }
 | |
|     }
 | |
|     public function convertToDirectory() {
 | |
|         try {
 | |
|             $this->fileStorage->deleteStorageOnServer();
 | |
|             $this->fileStorage->is_directory = true;
 | |
|             $this->fileStorage->content = null;
 | |
|             $this->fileStorage->save();
 | |
|             $this->fileStorage->saveStorageOnServer();
 | |
|         } catch (\Throwable $e) {
 | |
|             return handleError($e, $this);
 | |
|         } finally {
 | |
|             $this->dispatch('refresh_storages');
 | |
|         }
 | |
|     }
 | |
|     public function convertToFile() {
 | |
|         try {
 | |
|             $this->fileStorage->deleteStorageOnServer();
 | |
|             $this->fileStorage->is_directory = false;
 | |
|             $this->fileStorage->content = null;
 | |
|             $this->fileStorage->save();
 | |
|             $this->fileStorage->saveStorageOnServer();
 | |
|         } catch (\Throwable $e) {
 | |
|             return handleError($e, $this);
 | |
|         } finally {
 | |
|             $this->dispatch('refresh_storages');
 | |
|         }
 | |
|     }
 | |
|     public function delete() {
 | |
|         try {
 | |
|             $this->fileStorage->deleteStorageOnServer();
 | |
|             $this->fileStorage->delete();
 | |
|             $this->dispatch('success', 'File deleted.');
 | |
|         } catch (\Throwable $e) {
 | |
|             return handleError($e, $this);
 | |
|         } finally {
 | |
|             $this->dispatch('refresh_storages');
 | |
|         }
 | |
|     }
 | |
|     public function submit()
 | |
|     {
 | |
|         $original = $this->fileStorage->getOriginal();
 | |
|         try {
 | |
|             $this->validate();
 | |
|             if ($this->fileStorage->is_directory) {
 | |
|                 $this->fileStorage->content = null;
 | |
|             }
 | |
|             $this->fileStorage->save();
 | |
|             $this->fileStorage->saveStorageOnServer();
 | |
|             $this->dispatch('success', 'File updated.');
 | |
|         } catch (\Throwable $e) {
 | |
|             $this->fileStorage->setRawAttributes($original);
 | |
|             $this->fileStorage->save();
 | |
|             return handleError($e, $this);
 | |
|         }
 | |
|     }
 | |
|     public function instantSave()
 | |
|     {
 | |
|         $this->submit();
 | |
|     }
 | |
|     public function render()
 | |
|     {
 | |
|         return view('livewire.project.service.file-storage');
 | |
|     }
 | |
| }
 |