4get/settings.php

510 lines
8.7 KiB
PHP
Raw Permalink Normal View History

2023-07-22 18:41:14 +00:00
<?php
2023-11-07 13:04:56 +00:00
include "data/config.php";
2023-07-22 18:41:14 +00:00
/*
Define settings
*/
$settings = [
[
"name" => "General",
"settings" => [
[
"description" => "Allow NSFW content",
"parameter" => "nsfw",
"options" => [
[
"value" => "yes",
"text" => "Yes"
],
[
"value" => "maybe",
"text" => "Maybe"
],
[
"value" => "no",
"text" => "No"
]
]
],
[
"description" => "Theme",
"parameter" => "theme",
2023-11-07 13:04:56 +00:00
"options" => []
2023-07-22 18:41:14 +00:00
],
[
"description" => "Prevent clicking background elements when image viewer is open",
"parameter" => "bg_noclick",
"options" => [
[
"value" => "no",
"text" => "No"
],
[
"value" => "yes",
"text" => "Yes"
]
]
]
]
],
[
"name" => "Scrapers to use",
"settings" => [
2023-09-13 13:01:23 +00:00
[
2023-11-07 13:04:56 +00:00
"description" => "Autocomplete<br><i>Picking <span class=\"code-inline\">Auto</span> changes the source dynamically depending of the page's scraper<br><b>Warning:</b> If you edit this field, you will need to re-add the search engine so that the new autocomplete settings are applied!</i>",
2023-09-13 13:01:23 +00:00
"parameter" => "scraper_ac",
"options" => [
[
"value" => "disabled",
"text" => "Disabled"
],
[
"value" => "auto",
"text" => "Auto"
],
[
"value" => "brave",
"text" => "Brave"
],
[
"value" => "ddg",
"text" => "DuckDuckGo"
],
[
"value" => "yandex",
"text" => "Yandex"
],
[
"value" => "google",
"text" => "Google"
],
[
"value" => "qwant",
"text" => "Qwant"
],
[
"value" => "yep",
"text" => "Yep"
],
[
"value" => "marginalia",
"text" => "Marginalia"
],
[
"value" => "yt",
"text" => "YouTube"
],
[
"value" => "sc",
"text" => "SoundCloud"
]
]
],
2023-07-22 18:41:14 +00:00
[
"description" => "Web",
"parameter" => "scraper_web",
"options" => [
[
"value" => "ddg",
"text" => "DuckDuckGo"
],
[
"value" => "brave",
"text" => "Brave"
],
[
"value" => "yandex",
"text" => "Yandex"
],
[
2023-08-08 07:09:47 +00:00
"value" => "google",
"text" => "Google"
],
2024-04-21 23:48:14 +00:00
[
"value" => "qwant",
"text" => "Qwant"
],
2023-12-03 00:11:52 +00:00
[
"value" => "yep",
"text" => "Yep"
],
2024-03-23 01:31:06 +00:00
[
"value" => "crowdview",
"text" => "Crowdview"
],
2024-02-26 16:31:52 +00:00
[
"value" => "mwmbl",
"text" => "Mwmbl"
],
2023-07-22 18:41:14 +00:00
[
"value" => "mojeek",
"text" => "Mojeek"
],
[
"value" => "marginalia",
"text" => "Marginalia"
],
[
"value" => "wiby",
"text" => "wiby"
2024-01-07 00:43:54 +00:00
],
[
"value" => "curlie",
"text" => "Curlie"
2023-07-22 18:41:14 +00:00
]
]
],
[
"description" => "Images",
"parameter" => "scraper_images",
"options" => [
[
"value" => "ddg",
"text" => "DuckDuckGo"
],
[
"value" => "yandex",
"text" => "Yandex"
2023-08-08 07:09:47 +00:00
],
[
"value" => "brave",
"text" => "Brave"
],
2023-08-08 07:09:47 +00:00
[
"value" => "google",
"text" => "Google"
],
2024-04-21 23:48:14 +00:00
[
"value" => "qwant",
"text" => "Qwant"
],
[
"value" => "yep",
"text" => "Yep"
],
/*[
"value" => "pinterest",
"text" => "Pinterest"
],*/
[
"value" => "imgur",
"text" => "Imgur"
],
[
"value" => "ftm",
"text" => "FindThatMeme"
]
2023-07-22 18:41:14 +00:00
]
],
[
"description" => "Videos",
"parameter" => "scraper_videos",
"options" => [
[
"value" => "yt",
"text" => "YouTube"
],
[
"value" => "ddg",
"text" => "DuckDuckGo"
2023-08-08 07:09:47 +00:00
],
[
"value" => "brave",
"text" => "Brave"
],
[
"value" => "yandex",
"text" => "Yandex"
],
2023-08-08 07:09:47 +00:00
[
"value" => "google",
"text" => "Google"
2024-04-21 23:48:14 +00:00
],
[
"value" => "qwant",
"text" => "Qwant"
],
2023-07-22 18:41:14 +00:00
]
],
[
"description" => "News",
"parameter" => "scraper_news",
"options" => [
[
"value" => "ddg",
"text" => "DuckDuckGo"
],
[
"value" => "brave",
"text" => "Brave"
],
[
2023-08-08 07:09:47 +00:00
"value" => "google",
"text" => "Google"
],
2024-04-21 23:48:14 +00:00
[
"value" => "qwant",
"text" => "Qwant"
],
2023-12-03 00:11:52 +00:00
[
"value" => "yep",
"text" => "Yep"
],
2023-07-22 18:41:14 +00:00
[
"value" => "mojeek",
"text" => "Mojeek"
]
]
2023-09-04 02:41:44 +00:00
],
[
"description" => "Music",
"parameter" => "scraper_music",
"options" => [
[
"value" => "sc",
"text" => "SoundCloud"
2024-01-07 00:46:13 +00:00
]//,
//[
// "value" => "spotify",
// "text" => "Spotify"
//]
2023-09-04 02:41:44 +00:00
]
2023-07-22 18:41:14 +00:00
]
]
]
];
2023-11-07 13:04:56 +00:00
/*
Set theme collection
*/
$themes = glob("static/themes/*");
$settings[0]["settings"][1]["options"][] = [
"value" => "Dark",
"text" => "Dark"
];
foreach($themes as $theme){
$theme = explode(".", basename($theme))[0];
$settings[0]["settings"][1]["options"][] = [
"value" => $theme,
"text" => $theme
];
}
2023-07-22 18:41:14 +00:00
/*
Set cookies
*/
if($_POST){
$loop = &$_POST;
2023-09-13 13:01:23 +00:00
}elseif(count($_GET) !== 0){
// redirect user to front page
$loop = &$_GET;
header("Location: /");
2023-07-22 18:41:14 +00:00
2023-09-13 13:01:23 +00:00
}else{
2023-07-22 18:41:14 +00:00
// refresh cookie dates
$loop = &$_COOKIE;
}
2023-07-22 18:41:14 +00:00
foreach($loop as $key => $value){
2023-11-07 13:04:56 +00:00
if($key == "theme"){
2023-07-22 18:41:14 +00:00
2023-11-07 13:04:56 +00:00
if($value == config::DEFAULT_THEME){
2023-07-22 18:41:14 +00:00
2023-11-07 13:04:56 +00:00
unset($_COOKIE[$key]);
setcookie(
"theme",
"",
[
"expires" => -1, // removes cookie
"samesite" => "Lax",
"path" => "/"
]
);
continue;
}
}else{
foreach($settings as $title){
foreach($title["settings"] as $list){
2023-07-22 18:41:14 +00:00
2023-11-07 13:04:56 +00:00
if(
$list["parameter"] == $key &&
$list["options"][0]["value"] == $value
){
unset($_COOKIE[$key]);
setcookie(
$key,
"",
[
"expires" => -1, // removes cookie
"samesite" => "Lax",
"path" => "/"
]
);
continue 3;
}
2023-07-22 18:41:14 +00:00
}
}
}
if(!is_string($value)){
continue;
}
$key = trim($key);
$value = trim($value);
$_COOKIE[$key] = $value;
setcookie(
$key,
$value,
[
"expires" => strtotime("+400 days"), // maximal cookie ttl in chrome
2023-10-17 21:58:08 +00:00
"samesite" => "Lax",
"path" => "/"
2023-07-22 18:41:14 +00:00
]
);
}
include "lib/frontend.php";
$frontend = new frontend();
echo
2023-11-07 13:04:56 +00:00
$frontend->load(
"header_nofilters.html",
[
"title" => "Settings",
"class" => ""
]
);
2023-07-22 18:41:14 +00:00
$left =
'<h1>Settings</h1>' .
'<form method="post" autocomplete="off">' .
'By clicking <div class="code-inline">Update settings!</div>, a plaintext <div class="code-inline">key=value</div> cookie will be stored on your browser. When selecting a default setting, the parameter is removed from your cookies.';
$c = count($_COOKIE);
2023-09-13 13:01:23 +00:00
$code = "";
2023-07-22 18:41:14 +00:00
if($c !== 0){
$left .=
'<br><br>Your current cookie looks like this:' .
'<div class="code">';
$ca = 0;
foreach($_COOKIE as $key => $value){
$code .= $key . "=" . $value;
$ca++;
if($ca !== $c){
$code .= "; ";
}
}
$left .= $frontend->highlightcode($code);
$left .= '</div>';
}else{
$left .=
'<br><br>You currently don\'t have any cookies set.';
}
$left .=
'<div class="settings">';
foreach($settings as $title){
$left .= '<h2>' . $title["name"] . '</h2>';
foreach($title["settings"] as $setting){
$left .=
'<div class="setting">' .
'<div class="title">' . $setting["description"] . '</div>' .
'<select name="' . $setting["parameter"] . '">';
2023-11-07 13:04:56 +00:00
if($setting["parameter"] == "theme"){
if(!isset($_COOKIE["theme"])){
$_COOKIE["theme"] = config::DEFAULT_THEME;
}
}
2023-07-22 18:41:14 +00:00
foreach($setting["options"] as $option){
$left .=
'<option value="' . $option["value"] . '"';
if(
isset($_COOKIE[$setting["parameter"]]) &&
$_COOKIE[$setting["parameter"]] == $option["value"]
){
$left .= ' selected';
}
$left .= '>' . $option["text"] . '</option>';
}
$left .= '</select></div>';
}
}
$left .=
'</div>' .
'<div class="settings-submit">' .
'<input type="submit" value="Update settings!">' .
'<a href="../">&lt; Go back</a>' .
2023-07-22 18:41:14 +00:00
'</div>' .
'</form>';
2023-09-13 13:01:23 +00:00
if(count($_GET) === 0){
$code = [];
foreach($_COOKIE as $key => $value){
$code[] = rawurlencode($key) . "=" . rawurlencode($value);
}
$code = implode("&", $code);
if($code != ""){
$code = "?" . $code;
}
2023-09-13 13:01:23 +00:00
echo
$frontend->load(
"search.html",
[
2024-02-18 04:22:19 +00:00
"timetaken" => null,
2023-09-13 13:01:23 +00:00
"class" => "",
"right-left" =>
'<div class="infobox"><h2>Preference link</h2>Following this link will re-apply all cookies configured here and will redirect you to the front page. Useful if your browser clears out cookies after a browsing session.<br><br>' .
'<a href="settings' . $code . '">Bookmark me!</a>' .
2023-09-13 13:01:23 +00:00
'</div>',
"right-right" => "",
"left" => $left
]
);
}