From d6f4cc3a559d2c26836a3e4e8b78862515ea12a7 Mon Sep 17 00:00:00 2001 From: Davide <davide@suma-ev.de> Date: Tue, 13 Oct 2020 16:00:52 +0200 Subject: [PATCH] added button to clear black list --- app/Http/Controllers/SettingsController.php | 19 +++++++++++++++++++ resources/views/settings/index.blade.php | 3 +++ routes/cookie.php | 1 + 3 files changed, 23 insertions(+) diff --git a/app/Http/Controllers/SettingsController.php b/app/Http/Controllers/SettingsController.php index 932fff658..9d9ba93f7 100644 --- a/app/Http/Controllers/SettingsController.php +++ b/app/Http/Controllers/SettingsController.php @@ -311,4 +311,23 @@ class SettingsController extends Controller return redirect($request->input('url', 'https://metager.de')); } + + public function clearBlacklist(Request $request) + { + //function to clear the whole black list + $fokus = $request->input('fokus', ''); + $url = $request->input('url', ''); + $path = \Request::path(); + $empty = $request->input('empty'); + $cookiePath = "/" . substr($path, 0, strpos($path, "meta/") + 5); + $cookies = Cookie::get(); + + foreach($cookies as $key => $value){ + if(stripos($key, 'blpage') !== false) { + Cookie::queue($key, "", 0, $cookiePath, null, false, false); + } + } + + return redirect($request->input('url', 'https://metager.de')); + } } diff --git a/resources/views/settings/index.blade.php b/resources/views/settings/index.blade.php index 29b187f47..9d9de6da9 100644 --- a/resources/views/settings/index.blade.php +++ b/resources/views/settings/index.blade.php @@ -111,6 +111,9 @@ @endforeach </table> </form> + <form id="clearlist" action="{{ LaravelLocalization::getLocalizedURL(LaravelLocalization::getCurrentLocale(), route('clearBlacklist', ["fokus" => $fokus, "url" => $url])) }}" method="post"> + <button type="submit" name="clear" value="1">>clear black list<</button> + </form> @endif </div> diff --git a/routes/cookie.php b/routes/cookie.php index 8e58bfeec..0ff0328cd 100644 --- a/routes/cookie.php +++ b/routes/cookie.php @@ -22,6 +22,7 @@ Route::group( Route::post('ds', 'SettingsController@deleteSettings')->name('deleteSettings'); Route::post('nb', 'SettingsController@newBlacklist')->name('newBlacklist'); Route::post('db', 'SettingsController@deleteBlacklist')->name('deleteBlacklist'); + Route::post('cb', 'SettingsController@clearBlacklist')->name('clearBlacklist'); # Route to show and delete all settings Route::get('all-settings', 'SettingsController@allSettingsIndex')->name('showAllSettings'); -- GitLab