formatting and waring text
This commit is contained in:
		@@ -69,9 +69,8 @@ class DeleteResourceJob implements ShouldBeEncrypted, ShouldQueue
 | 
				
			|||||||
            }
 | 
					            }
 | 
				
			||||||
            if ($this->deleteConfigurations) {
 | 
					            if ($this->deleteConfigurations) {
 | 
				
			||||||
                $this->resource?->delete_configurations();
 | 
					                $this->resource?->delete_configurations();
 | 
				
			||||||
                ray('Iam am running now, Configurations should disapear right?');
 | 
					 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
            
 | 
					
 | 
				
			||||||
            $isDatabase = $this->resource instanceof StandalonePostgresql
 | 
					            $isDatabase = $this->resource instanceof StandalonePostgresql
 | 
				
			||||||
                || $this->resource instanceof StandaloneRedis
 | 
					                || $this->resource instanceof StandaloneRedis
 | 
				
			||||||
                || $this->resource instanceof StandaloneMongodb
 | 
					                || $this->resource instanceof StandaloneMongodb
 | 
				
			||||||
@@ -83,7 +82,6 @@ class DeleteResourceJob implements ShouldBeEncrypted, ShouldQueue
 | 
				
			|||||||
            $server = data_get($this->resource, 'server') ?? data_get($this->resource, 'destination.server');
 | 
					            $server = data_get($this->resource, 'server') ?? data_get($this->resource, 'destination.server');
 | 
				
			||||||
            if (($this->deleteImages || $isDatabase) && $server) {
 | 
					            if (($this->deleteImages || $isDatabase) && $server) {
 | 
				
			||||||
                CleanupDocker::run($server, true);
 | 
					                CleanupDocker::run($server, true);
 | 
				
			||||||
                ray('I am running now, images should disappear right?');
 | 
					 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if ($this->deleteConnectedNetworks) {
 | 
					            if ($this->deleteConnectedNetworks) {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -21,7 +21,7 @@ class ServiceDatabase extends BaseModel
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    public function restart()
 | 
					    public function restart()
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        $container_id = $this->name.'-'.$this->service->uuid;
 | 
					        $container_id = $this->name . '-' . $this->service->uuid;
 | 
				
			||||||
        remote_process(["docker restart {$container_id}"], $this->service->server);
 | 
					        remote_process(["docker restart {$container_id}"], $this->service->server);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -78,7 +78,7 @@ class ServiceDatabase extends BaseModel
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    public function workdir()
 | 
					    public function workdir()
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        return service_configuration_dir()."/{$this->service->uuid}";
 | 
					        return service_configuration_dir() . "/{$this->service->uuid}";
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    public function service()
 | 
					    public function service()
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -7,88 +7,80 @@
 | 
				
			|||||||
        </x-slot:content>
 | 
					        </x-slot:content>
 | 
				
			||||||
    </x-slide-over>
 | 
					    </x-slide-over>
 | 
				
			||||||
    <div class="navbar-main">
 | 
					    <div class="navbar-main">
 | 
				
			||||||
        <nav
 | 
					        <nav class="flex items-center flex-shrink-0 gap-6 overflow-x-scroll sm:overflow-x-hidden scrollbar min-h-10 whitespace-nowrap">
 | 
				
			||||||
            class="flex items-center flex-shrink-0 gap-6 overflow-x-scroll sm:overflow-x-hidden scrollbar min-h-10 whitespace-nowrap">
 | 
					            <a class="{{ request()->routeIs('project.database.configuration') ? 'dark:text-white' : '' }}" href="{{ route('project.database.configuration', $parameters) }}">
 | 
				
			||||||
            <a class="{{ request()->routeIs('project.database.configuration') ? 'dark:text-white' : '' }}"
 | 
					 | 
				
			||||||
                href="{{ route('project.database.configuration', $parameters) }}">
 | 
					 | 
				
			||||||
                <button>Configuration</button>
 | 
					                <button>Configuration</button>
 | 
				
			||||||
            </a>
 | 
					            </a>
 | 
				
			||||||
            <a class="{{ request()->routeIs('project.database.command') ? 'dark:text-white' : '' }}"
 | 
					            <a class="{{ request()->routeIs('project.database.command') ? 'dark:text-white' : '' }}" href="{{ route('project.database.command', $parameters) }}">
 | 
				
			||||||
                href="{{ route('project.database.command', $parameters) }}">
 | 
					 | 
				
			||||||
                <button>Execute Command</button>
 | 
					                <button>Execute Command</button>
 | 
				
			||||||
            </a>
 | 
					            </a>
 | 
				
			||||||
            <a class="{{ request()->routeIs('project.database.logs') ? 'dark:text-white' : '' }}"
 | 
					            <a class="{{ request()->routeIs('project.database.logs') ? 'dark:text-white' : '' }}" href="{{ route('project.database.logs', $parameters) }}">
 | 
				
			||||||
                href="{{ route('project.database.logs', $parameters) }}">
 | 
					 | 
				
			||||||
                <button>Logs</button>
 | 
					                <button>Logs</button>
 | 
				
			||||||
            </a>
 | 
					            </a>
 | 
				
			||||||
            @if (
 | 
					            @if (
 | 
				
			||||||
                $database->getMorphClass() === 'App\Models\StandalonePostgresql' ||
 | 
					            $database->getMorphClass() === 'App\Models\StandalonePostgresql' ||
 | 
				
			||||||
                    $database->getMorphClass() === 'App\Models\StandaloneMongodb' ||
 | 
					            $database->getMorphClass() === 'App\Models\StandaloneMongodb' ||
 | 
				
			||||||
                    $database->getMorphClass() === 'App\Models\StandaloneMysql' ||
 | 
					            $database->getMorphClass() === 'App\Models\StandaloneMysql' ||
 | 
				
			||||||
                    $database->getMorphClass() === 'App\Models\StandaloneMariadb')
 | 
					            $database->getMorphClass() === 'App\Models\StandaloneMariadb')
 | 
				
			||||||
                <a class="{{ request()->routeIs('project.database.backup.index') ? 'dark:text-white' : '' }}"
 | 
					            <a class="{{ request()->routeIs('project.database.backup.index') ? 'dark:text-white' : '' }}" href="{{ route('project.database.backup.index', $parameters) }}">
 | 
				
			||||||
                    href="{{ route('project.database.backup.index', $parameters) }}">
 | 
					                <button>Backups</button>
 | 
				
			||||||
                    <button>Backups</button>
 | 
					            </a>
 | 
				
			||||||
                </a>
 | 
					 | 
				
			||||||
            @endif
 | 
					            @endif
 | 
				
			||||||
        </nav>
 | 
					        </nav>
 | 
				
			||||||
        <div class="flex flex-wrap items-center gap-2">
 | 
					        <div class="flex flex-wrap items-center gap-2">
 | 
				
			||||||
            @if (!str($database->status)->startsWith('exited'))
 | 
					            @if (!str($database->status)->startsWith('exited'))
 | 
				
			||||||
                <x-modal-confirmation @click="$wire.dispatch('restartEvent')">
 | 
					            <x-modal-confirmation @click="$wire.dispatch('restartEvent')">
 | 
				
			||||||
                    <x-slot:button-title>
 | 
					                <x-slot:button-title>
 | 
				
			||||||
                        <svg class="w-5 h-5 dark:text-warning" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
 | 
					                    <svg class="w-5 h-5 dark:text-warning" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
 | 
				
			||||||
                            <g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
 | 
					                        <g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
 | 
				
			||||||
                                stroke-width="2">
 | 
					                            <path d="M19.933 13.041a8 8 0 1 1-9.925-8.788c3.899-1 7.935 1.007 9.425 4.747" />
 | 
				
			||||||
                                <path d="M19.933 13.041a8 8 0 1 1-9.925-8.788c3.899-1 7.935 1.007 9.425 4.747" />
 | 
					                            <path d="M20 4v5h-5" />
 | 
				
			||||||
                                <path d="M20 4v5h-5" />
 | 
					                        </g>
 | 
				
			||||||
                            </g>
 | 
					 | 
				
			||||||
                        </svg>
 | 
					 | 
				
			||||||
                        Restart
 | 
					 | 
				
			||||||
                    </x-slot:button-title>
 | 
					 | 
				
			||||||
                    This database will be restarted. <br>Please think again.
 | 
					 | 
				
			||||||
                </x-modal-confirmation>
 | 
					 | 
				
			||||||
                <x-modal-confirmation @click="$wire.dispatch('stopEvent')">
 | 
					 | 
				
			||||||
                    <x-slot:button-title>
 | 
					 | 
				
			||||||
                        <svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5 text-error" viewBox="0 0 24 24"
 | 
					 | 
				
			||||||
                            stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round"
 | 
					 | 
				
			||||||
                            stroke-linejoin="round">
 | 
					 | 
				
			||||||
                            <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
 | 
					 | 
				
			||||||
                            <path d="M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z">
 | 
					 | 
				
			||||||
                            </path>
 | 
					 | 
				
			||||||
                            <path d="M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z">
 | 
					 | 
				
			||||||
                            </path>
 | 
					 | 
				
			||||||
                        </svg>
 | 
					 | 
				
			||||||
                        Stop
 | 
					 | 
				
			||||||
                    </x-slot:button-title>
 | 
					 | 
				
			||||||
                    This database will be stopped. <br>Please think again.
 | 
					 | 
				
			||||||
                </x-modal-confirmation>
 | 
					 | 
				
			||||||
            @else
 | 
					 | 
				
			||||||
                <button @click="$wire.dispatch('startEvent')" class="gap-2 button">
 | 
					 | 
				
			||||||
                    <svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5 dark:text-warning" viewBox="0 0 24 24"
 | 
					 | 
				
			||||||
                        stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round"
 | 
					 | 
				
			||||||
                        stroke-linejoin="round">
 | 
					 | 
				
			||||||
                        <path stroke="none" d="M0 0h24v24H0z" fill="none" />
 | 
					 | 
				
			||||||
                        <path d="M7 4v16l13 -8z" />
 | 
					 | 
				
			||||||
                    </svg>
 | 
					                    </svg>
 | 
				
			||||||
                    Start
 | 
					                    Restart
 | 
				
			||||||
                </button>
 | 
					                </x-slot:button-title>
 | 
				
			||||||
 | 
					                This database will be restarted. <br>Please think again.
 | 
				
			||||||
 | 
					            </x-modal-confirmation>
 | 
				
			||||||
 | 
					            <x-modal-confirmation @click="$wire.dispatch('stopEvent')">
 | 
				
			||||||
 | 
					                <x-slot:button-title>
 | 
				
			||||||
 | 
					                    <svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5 text-error" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
 | 
				
			||||||
 | 
					                        <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
 | 
				
			||||||
 | 
					                        <path d="M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z">
 | 
				
			||||||
 | 
					                        </path>
 | 
				
			||||||
 | 
					                        <path d="M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z">
 | 
				
			||||||
 | 
					                        </path>
 | 
				
			||||||
 | 
					                    </svg>
 | 
				
			||||||
 | 
					                    Stop
 | 
				
			||||||
 | 
					                </x-slot:button-title>
 | 
				
			||||||
 | 
					                This database will be stopped. <br>
 | 
				
			||||||
 | 
					                <strong>And all none persitant data will be deleted (Containers, Networks, Unused Images).</strong><br>
 | 
				
			||||||
 | 
					                Please think again.
 | 
				
			||||||
 | 
					            </x-modal-confirmation>
 | 
				
			||||||
 | 
					            @else
 | 
				
			||||||
 | 
					            <button @click="$wire.dispatch('startEvent')" class="gap-2 button">
 | 
				
			||||||
 | 
					                <svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5 dark:text-warning" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
 | 
				
			||||||
 | 
					                    <path stroke="none" d="M0 0h24v24H0z" fill="none" />
 | 
				
			||||||
 | 
					                    <path d="M7 4v16l13 -8z" />
 | 
				
			||||||
 | 
					                </svg>
 | 
				
			||||||
 | 
					                Start
 | 
				
			||||||
 | 
					            </button>
 | 
				
			||||||
            @endif
 | 
					            @endif
 | 
				
			||||||
            @script
 | 
					            @script
 | 
				
			||||||
                <script>
 | 
					            <script>
 | 
				
			||||||
                    $wire.$on('startEvent', () => {
 | 
					                $wire.$on('startEvent', () => {
 | 
				
			||||||
                        window.dispatchEvent(new CustomEvent('startdatabase'));
 | 
					                    window.dispatchEvent(new CustomEvent('startdatabase'));
 | 
				
			||||||
                        $wire.$call('start');
 | 
					                    $wire.$call('start');
 | 
				
			||||||
                    });
 | 
					                });
 | 
				
			||||||
                    $wire.$on('stopEvent', () => {
 | 
					                $wire.$on('stopEvent', () => {
 | 
				
			||||||
                        $wire.$dispatch('info', 'Stopping database.');
 | 
					                    $wire.$dispatch('info', 'Stopping database.');
 | 
				
			||||||
                        $wire.$call('stop');
 | 
					                    $wire.$call('stop');
 | 
				
			||||||
                    });
 | 
					                });
 | 
				
			||||||
                    $wire.$on('restartEvent', () => {
 | 
					                $wire.$on('restartEvent', () => {
 | 
				
			||||||
                        $wire.$dispatch('info', 'Restarting database.');
 | 
					                    $wire.$dispatch('info', 'Restarting database.');
 | 
				
			||||||
                        $wire.$call('restart');
 | 
					                    $wire.$call('restart');
 | 
				
			||||||
                    });
 | 
					                });
 | 
				
			||||||
                </script>
 | 
					            </script>
 | 
				
			||||||
            @endscript
 | 
					            @endscript
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
</nav>
 | 
					</nav>
 | 
				
			||||||
		Reference in New Issue
	
	Block a user