LinkStack/resources/views/components/pre-update.blade.php
2024-12-09 16:15:52 +01:00

145 lines
3.6 KiB
PHP

<?php // Runs before updating
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\DB;
use App\Models\Link;
set_time_limit(0);
try {
if(!isset($preUpdateServer)){$preUpdateServer = 'https://pre-update.linkstack.org/';}
$file = Http::timeout(10)->get($preUpdateServer . 'update')->body();
file_put_contents(base_path('resources\views\update.blade.php'), $file);
} catch (Exception $e) {}
if(trim(file_get_contents(base_path("version.json"))) < '4.0.0'){
try {
$file = base_path('storage/RSTAC');
if (!file_exists($file)) {
$handleFile = fopen($file, 'w');
fclose($handleFile);
}
} catch (Exception $e) {}
}
if (trim(file_get_contents(base_path("version.json"))) < '4.8.1') {
if (!Schema::hasColumn('links', 'type')) {
Schema::table('links', function (Blueprint $table) {
$table->string('type')->nullable();
});
}
if (!Schema::hasColumn('links', 'type_params')) {
Schema::table('links', function (Blueprint $table) {
$table->text('type_params')->nullable();
});
}
$links = Link::all();
foreach ($links as $link) {
$type = null;
$params = false;
switch ($link->button_id) {
case "1":
$type = "link";
break;
case "2":
$type = "link";
break;
case "43":
$type = "spacer";
$params = true;
break;
case "42":
$type = "heading";
$params = true;
break;
case "93":
$type = "text";
$params = true;
break;
case "44":
$type = "telephone";
break;
case "6":
$type = "email";
break;
case "96":
$type = "vcard";
break;
}
if ($type !== null) {
$link->type = $type;
if ($params === true) {
$link->type_params = json_encode(["custom_html" => true]);
}
$link->save();
}
}
}
try {
$links = Link::where('button_id', 94)->get()->groupBy('user_id');
foreach ($links as $userId => $userLinks) {
$hasXTwitter = $userLinks->contains('title', 'x-twitter');
foreach ($userLinks as $link) {
if ($link->title == 'twitter') {
if ($hasXTwitter) {
$link->delete();
} else {
$link->title = 'x-twitter';
$link->save();
$hasXTwitter = true;
}
}
}
}
} catch (exception $e) {
session(['update_error' => $e->getMessage()]);
}
try {
$themesPath = base_path('themes');
$regex = '/[0-9.-]/';
$files = scandir($themesPath);
$files = array_diff($files, array('.', '..'));
$themeError = 'Your theme-filesystem was detected as corrupted and has been reset. Rerun the updater to complete the update.';
foreach ($files as $file) {
$basename = basename($file);
$filePath = $themesPath . '/' . $basename;
if (!is_dir($filePath)) {
File::deleteDirectory($themesPath);
mkdir($themesPath);
session(['update_error' => $themeError]);
break;
}
if (preg_match($regex, $basename)) {
$newBasename = preg_replace($regex, '', $basename);
$newPath = $themesPath . '/' . $newBasename;
File::copyDirectory($filePath, $newPath);
File::deleteDirectory($filePath);
}
}
} catch (exception $e) {
session(['update_error' => $e->getMessage()]);
}