@extends('layouts.updater') @push('updater-body') @php // Must end with '/' $betaServer = env('BETA_SERVER', 'https://beta.linkstack.org/'); $betaPreUpdateServer = env('BETA_PRE_UPDATE_SERVER', 'https://pre-update.linkstack.org/beta/'); $updateServer = env('UPDATE_SERVER', 'https://update.linkstack.org/'); $versionServer = env('VERSION_SERVER', 'https://version.linkstack.org/'); $preUpdateServer = env('PRE_UPDATE_SERVER', 'https://pre-update.linkstack.org/'); $repositoryUrl = env('REPOSITORY_URL', 'https://github.com/linkstackorg/linkstack/'); $isBeta = env('JOIN_BETA', false); if ($isBeta) { $preUpdateServer = $betaPreUpdateServer; } try { $Vbeta = trim(Http::timeout(5)->get($betaServer . 'vbeta.json')->body()); $Vbeta_git = trim(Http::timeout(5)->get($betaServer . 'version.json')->body()); $Vgit = trim(Http::timeout(5)->get($versionServer)->body()); $Vlocal = trim(file_get_contents(base_path('version.json'))); } catch (Exception $e) { session(['update_error' => 'Unexpected error. ' . $e->getMessage()]); } @endphp
@if ((auth()->user()->role == 'admin' && $Vgit > $Vlocal) || $isBeta) @if (empty($_SERVER['QUERY_STRING']))
Logo

{{ __('messages.Updater') }}

@if ($isBeta)

{{ __('messages.Latest beta version') }} = {{ $Vbeta }}

{{ __('messages.Installed beta version') }} = {{ file_exists(base_path('vbeta.json')) ? file_get_contents(base_path('vbeta.json')) : __('messages.none') }}

{{ $Vgit > $Vlocal ? __('messages.You need to update to the latest mainline release') : __('messages.You’re running the latest mainline release') }}

@else {{ $Vlocal }} -> {{ $Vgit }}

{{ __('messages.update.manually') }}

@endif
@endif @if ($_SERVER['QUERY_STRING'] === 'updating')
Logo

{{ __('messages.Updating') }}

@php set_time_limit(0); try { // Determine the latest version and file URL $latestVersion = $isBeta ? $Vbeta_git : $Vgit; $fileUrl = $isBeta ? $betaServer . $latestVersion . '.zip' : $updateServer . $latestVersion . '.zip'; // Download the update file $response = Http::timeout(120)->get($fileUrl); if ($response->failed()) { throw new Exception("HTTP request failed: {$response->status()} - {$response->body()}"); } // Save the downloaded ZIP file to storage $zipPath = storage_path('update.zip'); $result = file_put_contents($zipPath, $response->body()); if ($result === false) { throw new Exception('Failed to write update.zip to storage.'); } // Initialize the ZIP archive $zip = new ZipArchive(); if ($zip->open($zipPath) !== true) { throw new Exception('Failed to open ZIP archive for extraction.'); } // Extract the contents to the base path $extractPath = base_path(); if (!$zip->extractTo($extractPath)) { throw new Exception('ZIP extraction failed.'); } $zip->close(); // Delete the ZIP file after extraction if (!unlink($zipPath)) { Log::warning("Failed to delete ZIP file: $zipPath"); } } catch (Exception $e) { session(['update_error' => 'Fatal error. ' . $e->getMessage()]); } @endphp @if (session()->has('update_error')) @else @endif @endif @if ($_SERVER['QUERY_STRING'] === 'backup') @push('updater-head') @endpush
Logo

{{ __('messages.Creating backup') }}

@endif @if ($_SERVER['QUERY_STRING'] === 'backups') @php set_time_limit(0); // Test if the Artisan command is available try { $exitCode = Artisan::call('list'); if ($exitCode !== 0) { session(['update_error' => "Backup creation failed. Your system doesn't support backups. Consider disabling update backups in your config. Exit code: $exitCode"]); } } catch (Exception $e) { session(['update_error' => "Backup creation failed. This may indicate that your system doesn't support backups or that the process exceeded the time limit. Consider disabling update backups in your config. Exit code: " . $e->getMessage()]); } try { Artisan::call('backup:clean', ['--disable-notifications' => true]); } catch (Exception $e) { session(['update_error' => $e->getMessage()]); } try { Artisan::call('backup:run', ['--only-files' => true, '--disable-notifications' => true]); } catch (Exception $e) { session(['update_error' => $e->getMessage()]); } @endphp @if (session()->has('update_error')) @else @php file_put_contents(base_path('backups/CANUPDATE'), ''); @endphp @endif @endif @if ($_SERVER['QUERY_STRING'] === 'preparing')
Logo

{{ __('messages.Preparing update') }}

@php set_time_limit(0); if (file_exists(base_path() . '/storage/update.zip')) { try { unlink(base_path() . '/storage/update.zip'); } catch (Exception $e) { session(['update_error' => 'File permission error. ' . $e->getMessage()]); } } try { $file = Http::timeout(10)->get($preUpdateServer)->body(); file_put_contents(base_path('resources/views/components/pre-update.blade.php'), $file); } catch (Exception $e) { session(['update_error' => 'Could not prepare update. ' . $e->getMessage()]); } @endphp @if (session()->has('update_error')) @else @include('components.pre-update') @endif @endif @elseif(empty($_SERVER['QUERY_STRING']))
Logo

{{ __('messages.No new version') }}

{{ __('messages.There is no new version available') }}


@endif @if ($_SERVER['QUERY_STRING'] === 'finishing') @php set_time_limit(0); $debug = null; if (EnvEditor::getKey('APP_DEBUG') == 'false') { if (EnvEditor::keyExists('APP_DEBUG')) { EnvEditor::editKey('APP_DEBUG', 'true'); } if (EnvEditor::keyExists('APP_ENV')) { EnvEditor::editKey('APP_ENV', 'local'); } if (EnvEditor::keyExists('LOG_LEVEL')) { EnvEditor::editKey('LOG_LEVEL', 'debug'); } $debug = true; } @endphp
Logo

{{ __('messages.Finishing up') }}

@include('components.finishing') @php EnvEditor::editKey('MAINTENANCE_MODE', false); if ($debug === true) { if (EnvEditor::keyExists('APP_DEBUG')) { EnvEditor::editKey('APP_DEBUG', 'false'); } if (EnvEditor::keyExists('APP_ENV')) { EnvEditor::editKey('APP_ENV', 'production'); } if (EnvEditor::keyExists('LOG_LEVEL')) { EnvEditor::editKey('LOG_LEVEL', 'error'); } } @endphp @if(!session()->has('update_error') && ($isBeta || $Vgit === $Vlocal)) @else @php if (!session()->has('update_error')) { session(['update_error' => 'Update failed unexpectedly. Please try again later.']); } @endphp @endif @endif @if ($_SERVER['QUERY_STRING'] === 'success')
Logo

{{ __('messages.Success!') }}

@if ($isBeta)

{{ __('messages.Latest beta version') }} = {{ $Vbeta }}

{{ __('messages.Installed beta version') }} = {{ file_exists(base_path('vbeta.json')) ? file_get_contents(base_path('vbeta.json')) : __('messages.none') }}

{{ $Vgit > $Vlocal ? __('messages.You need to update to the latest mainline release') : __('messages.You’re running the latest mainline release') }}

@else

{{ __('messages.The update was successful') }}

{{ __('messages.View the release notes') }}
@endif
@if ($isBeta) @endif
@endif @if ($_SERVER['QUERY_STRING'] === 'error')
Logo

{{ __('messages.Error') }}

{{ __('messages.Something went wrong with the update') }} :(

@if (session()->has('update_error'))
Error: {{ session('update_error') }}
@php session()->forget('update_error'); @endphp @else
Error: Unknown error
@endif
@endif
@endpush