diff --git a/.gitignore b/.gitignore index 6bdb75e..07d4177 100755 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +/studio/favicon/icons /node_modules /public/hot /public/storage diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php index a950b3a..821fad7 100755 --- a/app/Http/Controllers/UserController.php +++ b/app/Http/Controllers/UserController.php @@ -390,7 +390,16 @@ class UserController extends Controller Link::where('id', $linkId)->delete(); - return back()->with('success', 'Link Deleted'); + $directory = base_path("studio/favicon/icons"); + $files = scandir($directory); + foreach($files as $file) { + if (strpos($file, $linkId.".") !== false) { + $pathinfo = pathinfo($file, PATHINFO_EXTENSION);}} + if (isset($pathinfo)) { + try{File::delete(base_path("studio/favicon/icons")."/".$linkId.".".$pathinfo);} catch (exception $e) {} + } + + return redirect('/studio/links'); } //Raise link on the littlelink page diff --git a/resources/views/components/favicon-extension.blade.php b/resources/views/components/favicon-extension.blade.php new file mode 100644 index 0000000..c01b06d --- /dev/null +++ b/resources/views/components/favicon-extension.blade.php @@ -0,0 +1,14 @@ + diff --git a/resources/views/components/favicon.blade.php b/resources/views/components/favicon.blade.php index 80dd058..c054a9a 100644 --- a/resources/views/components/favicon.blade.php +++ b/resources/views/components/favicon.blade.php @@ -2356,7 +2356,9 @@ class simple_html_dom link; try { $urlICO = $url . "/favicon.ico"; $urlICO = str_replace("//favicon.ico","/favicon.ico",$urlICO); @@ -2430,21 +2432,17 @@ foreach($dom->find('link') as $e) } } catch (exception $e) {$favicon = url('littlelink/icons/website.svg');} + + +try{ +$header = $favicon; +$extension = pathinfo($header, PATHINFO_EXTENSION); +if(!file_exists(base_path("studio/favicon/icons")."/".$id.".".$extension)){ + if($id.".".$extension !== ".".$id){file_put_contents(base_path("studio/favicon/icons")."/".$id.".".$extension, file_get_contents($header));} +} +} catch (exception $e) {exit();} + return $favicon; } -?> - - -link; -header("HTTP/1.1 302 Found"); -$header = getFavIcon($link); -header("Location: $header"); -exit(); -} catch (exception $e) {exit();} -} ?> \ No newline at end of file diff --git a/resources/views/components/pageitems/link-display.blade.php b/resources/views/components/pageitems/link-display.blade.php index 8a26563..1ebb583 100644 --- a/resources/views/components/pageitems/link-display.blade.php +++ b/resources/views/components/pageitems/link-display.blade.php @@ -3,9 +3,12 @@ @endphp +@include('components.favicon') +@include('components.favicon-extension') + @if($params->GetSiteIcon ?? true) - button-icon + button-icon @endif {{ $link->title }} diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php index ee75bd6..8eb936e 100755 --- a/resources/views/home.blade.php +++ b/resources/views/home.blade.php @@ -128,6 +128,9 @@ return $path;} } +@include('components.favicon') +@include('components.favicon-extension') + @@ -213,9 +216,9 @@ foreach($pages as $page) @elseif($button['button'] === "buy me a coffee")
button-iconBuy me a Coffee
@elseif($button['button'] === "custom_website" and ($button['custom_css'] === "" or $button['custom_css'] === "NULL") or (theme('allow_custom_buttons') == "false" and $button['button'] === "custom_website")) -
button-icon{{ $button['title'] }}
+
button-icon{{ $button['title'] }}
@elseif($button['button'] === "custom_website" and $button['custom_css'] != "") -
button-icon{{ $button['title'] }}
+
button-icon{{ $button['title'] }}
@elseif($button['button'] === "space") @endif +@include('components.favicon') +@include('components.favicon-extension') + @if(config('advanced-config.display_share_button') != '') @@ -275,9 +278,9 @@ function get_operating_system() { @elseif($link->name === "mastodon")
button-icon{{ $link->title }}
@elseif($link->name === "custom_website"and $link->custom_css === "" or $link->custom_css === "NULL" or (theme('allow_custom_buttons') == "false" and $link->name === "custom")) -
button-icon{{ $link->title }}
+
button-iconid))){{url('studio/favicon/icons/'.localIcon($link->id))}}@else{{getFavIcon($link->id)}}@endif">{{ $link->title }}
@elseif($link->name === "custom_website" and $link->custom_css != "") -
button-icon{{ $link->title }}
+
button-iconid))){{url('studio/favicon/icons/'.localIcon($link->id))}}@else{{getFavIcon($link->id)}}@endif">{{ $link->title }}
@elseif($link->name === "space") title) and $link->title < 10) diff --git a/resources/views/studio/button-editor.blade.php b/resources/views/studio/button-editor.blade.php index 8990a44..f1d074b 100644 --- a/resources/views/studio/button-editor.blade.php +++ b/resources/views/studio/button-editor.blade.php @@ -1,6 +1,9 @@ @if(env('ENABLE_BUTTON_EDITOR') === true) @extends('layouts.sidebar') +@include('components.favicon') +@include('components.favicon-extension') + @section('content') @push('sidebar-scripts') @@ -216,7 +219,7 @@ var button_css = { @if($buttonId == 1)
{{ $title }}
@else -
{{ $title }}
+
{{ $title }}
@endif @@ -255,9 +258,9 @@ NULL @if($custom_css === "" or $custom_css === "NULL" and $buttonId == 1)
{{ $title }}
@elseif($custom_css === "" or $custom_css === "NULL" and $buttonId == 2) -
{{ $title }}
+
{{ $title }}
@elseif($custom_css != "" and $buttonId == 2) -
{{ $title }}
+
{{ $title }}
@else
{{ $title }}
@endif diff --git a/resources/views/studio/links.blade.php b/resources/views/studio/links.blade.php index 83053a5..12d6a2b 100755 --- a/resources/views/studio/links.blade.php +++ b/resources/views/studio/links.blade.php @@ -30,6 +30,9 @@ @endpush +@include('components.favicon') +@include('components.favicon-extension') +
10 | 20 | 30 | all
@@ -68,7 +71,7 @@ button_id); if(isset($button->name)){$buttonName = $button->name;}else{$buttonName = 0;} ?> @if($button->name == "custom_website") - button-icon + button-iconid))){{url('studio/favicon/icons/'.localIcon($link->id))}}@else{{getFavIcon($link->id)}}@endif"> @elseif($button->name == "space")   @elseif($button->name == "heading") diff --git a/routes/web.php b/routes/web.php index 68b8104..24e8847 100755 --- a/routes/web.php +++ b/routes/web.php @@ -82,9 +82,6 @@ Route::get('/@{littlelink}', [UserController::class, 'littlelink'])->name('littl Route::get('/pages/{name}', [AdminController::class, 'pages'])->name('pages'); Route::get('/theme/@{littlelink}', [UserController::class, 'theme'])->name('theme'); -//API -Route::get('/ico', function () {return view('components.favicon');}); - //User route Route::group([ 'middleware' => env('REGISTER_AUTH'), diff --git a/studio/favicon/favicon.gif b/studio/favicon/favicon.gif deleted file mode 100644 index 4301102..0000000 Binary files a/studio/favicon/favicon.gif and /dev/null differ diff --git a/studio/favicon/icons/.gitignore b/studio/favicon/icons/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/studio/favicon/icons/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file