2022-05-24 15:30:22 +02:00
|
|
|
@extends('layouts.updater')
|
|
|
|
|
|
|
|
@Push('updater-body')
|
|
|
|
|
2022-05-25 16:19:20 +02:00
|
|
|
|
|
|
|
<?php // Requests newest version from server and sets it as variable
|
|
|
|
ini_set('user_agent', 'Mozilla/4.0 (compatible; MSIE 6.0)');
|
|
|
|
$json = file_get_contents("https://api.github.com/repos/julianprieber/littlelink-custom/releases/latest") ;
|
|
|
|
$myObj = json_decode($json);
|
|
|
|
$Vgit = $myObj->tag_name;
|
|
|
|
|
|
|
|
// Requests current version from the local version file and sets it as variable
|
|
|
|
$Vlocal = 'v' . file_get_contents(base_path("version.json"));
|
|
|
|
?>
|
|
|
|
@if(auth()->user()->role == 'admin' and $Vgit > $Vlocal)
|
|
|
|
|
|
|
|
@if($_SERVER['QUERY_STRING'] === '')
|
|
|
|
<?php //landing page ?>
|
|
|
|
<style>.logo-container{padding-top:23vh;}.logo-centered{top:37vh;}</style>
|
2022-05-24 15:30:22 +02:00
|
|
|
<div class="logo-container fadein">
|
2022-05-25 16:19:20 +02:00
|
|
|
<img class="logo-img" src="{{ asset('littlelink/images/just-gear.svg') }}" alt="Logo" style="">
|
2022-05-24 15:30:22 +02:00
|
|
|
<div class="logo-centered">l</div>
|
|
|
|
</div>
|
2022-05-25 16:19:20 +02:00
|
|
|
<center><h1>Updater</h1>
|
|
|
|
<h4 class="">You can update your installation automatically or download the update and install it manually:</h4>
|
|
|
|
<br><div class="row">
|
|
|
|
 <button style=""><i class="fa-solid fa-user-gear btn"></i><a class="btn" href="{{url()->current()}}/?backup"> Update automatically</a></button> 
|
|
|
|
 <button style=""><i class="fa-solid fa-download btn"></i><a class="btn" href="https://littlelink-custom.com/how-to-update"> Update manually</a></button> 
|
|
|
|
</div>
|
|
|
|
</center>
|
2022-05-24 15:30:22 +02:00
|
|
|
@endif
|
|
|
|
|
|
|
|
@if($_SERVER['QUERY_STRING'] === 'backup')
|
|
|
|
<?php //creating backup... ?>
|
|
|
|
@Push('updater-head')
|
|
|
|
<meta http-equiv="refresh" content="2; URL={{url()->current()}}/?backups" />
|
|
|
|
@endpush
|
|
|
|
<div class="logo-container fadein">
|
|
|
|
<img class="logo-img loading" src="{{ asset('littlelink/images/just-gear.svg') }}" alt="Logo" style="">
|
|
|
|
<div class="logo-centered">l</div>
|
|
|
|
</div>
|
|
|
|
<center><h1 class="loadingtxt">Creating backup</h1></center>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if($_SERVER['QUERY_STRING'] === 'backups')
|
2022-05-25 17:00:21 +02:00
|
|
|
<?php Artisan::call('backup:clean');
|
|
|
|
Artisan::call('backup:run', ['--only-files' => true]);
|
2022-05-24 17:26:12 +02:00
|
|
|
$tst = base_path('backups/');
|
|
|
|
file_put_contents($tst.'CANUPDATE', '');
|
2022-05-24 16:13:00 +02:00
|
|
|
$URL = Route::current()->getName();
|
2022-05-25 16:19:20 +02:00
|
|
|
header("Location: ".$URL."?updating");
|
2022-05-24 15:30:22 +02:00
|
|
|
exit(); ?>
|
|
|
|
@endif
|
|
|
|
|
2022-05-25 16:19:20 +02:00
|
|
|
@if($_SERVER['QUERY_STRING'] === 'updating' and (file_exists(base_path("backups/CANUPDATE"))))
|
|
|
|
<?php //updating... ?>
|
2022-05-24 15:30:22 +02:00
|
|
|
<div class="logo-container fadein">
|
2022-05-25 16:19:20 +02:00
|
|
|
<img class="logo-img loading" src="{{ asset('littlelink/images/just-gear.svg') }}" alt="Logo" style="">
|
2022-05-24 15:30:22 +02:00
|
|
|
<div class="logo-centered">l</div>
|
|
|
|
</div>
|
2022-05-25 16:19:20 +02:00
|
|
|
<center><h1 class="loadingtxt">Updating</h1></center>
|
|
|
|
@Push('updater-head')
|
|
|
|
<meta http-equiv="refresh" content="2; URL={{url()->current()}}/../updating" />
|
|
|
|
@endpush
|
|
|
|
@endif
|
|
|
|
|
2022-05-24 15:30:22 +02:00
|
|
|
@endif
|
|
|
|
|
|
|
|
|
2022-05-25 16:19:20 +02:00
|
|
|
|
|
|
|
@if($_SERVER['QUERY_STRING'] === 'success')
|
|
|
|
<?php //success ?>
|
2022-05-24 15:30:22 +02:00
|
|
|
<style>.logo-container{padding-top:23vh;}.logo-centered{top:37vh;}</style>
|
|
|
|
<div class="logo-container fadein">
|
|
|
|
<img class="logo-img" src="{{ asset('littlelink/images/just-gear.svg') }}" alt="Logo" style="">
|
|
|
|
<div class="logo-centered">l</div>
|
|
|
|
</div>
|
2022-05-25 11:52:57 +02:00
|
|
|
<center><h1>Success!</h1>
|
2022-05-24 15:30:22 +02:00
|
|
|
<h4 class="">The update was successful, you can now return to the Admin Panel:</h4>
|
|
|
|
<br><div class="row">
|
2022-05-25 11:52:57 +02:00
|
|
|
 <button style=""><i class="fa-solid fa-house-laptop btn"></i><a class="btn" href="{{ route('studioIndex') }}"> Admin Panel</a></button> 
|
2022-05-24 15:30:22 +02:00
|
|
|
</div>
|
|
|
|
</center>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
|
|
|
@endpush
|