forked from hnhx/librex
-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
settings.php
172 lines (151 loc) · 8.15 KB
/
settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
require_once "misc/search_engine.php";
// Reset all cookies when resetting, or before saving new cookies
if (isset($_REQUEST["reset"])) {
// if (isset($_REQUEST["reset"]) || isset($_REQUEST["save"])) {
// Removing isset($_REQUEST["save"])) fixes the problem that settings don't "stick" if you go back into settings page to make additional changes.
if (isset($_SERVER["HTTP_COOKIE"])) {
$cookies = explode(";", $_SERVER["HTTP_COOKIE"]);
foreach($cookies as $cookie) {
$parts = explode("=", $cookie);
$name = trim($parts[0]);
$domain = parse_url($_SERVER['SERVER_NAME']);
setcookie($name, "", time() - 1000);
}
}
}
if (isset($_REQUEST["save"])) {
foreach($_POST as $key=>$value) {
if (!empty($value)) {
setcookie($key, $value, [
"expires" => time() + (86400 * 90), // Sets cookie to expire in 90 days
"path" => "/",
"domain" => "$domain",
"secure" => true, // Ensure cookies are only sent over HTTPS
"httponly" => true, // Prevent client-side JavaScript access to cookies
"samesite" => "Strict" // Strict SameSite policy for better protection against CSRF attacks
]);
} else {
setcookie($key, "", time() - 1000);
}
}
}
if (isset($_REQUEST["save"]) || isset($_REQUEST["reset"])) {
header("Location: ./");
die();
}
require_once "misc/header.php";
$opts = load_opts();
?>
<title>LibreY - <?php printtext("settings_title");?></title>
</head>
<body>
<div class="misc-container">
<h1><?php printtext("settings_title");?></h1>
<form method="post" enctype="multipart/form-data" autocomplete="off">
<div>
<label for="theme"><?php printtext("settings_theme");?>:</label>
<select name="theme">
<?php
$default = $opts->default_theme ?? "dark";
$themes = "
<option value=\"dark\">Dark</option>
<option value=\"darker\">Darker</option>
<option value=\"amoled\">AMOLED</option>
<option value=\"light\">Light</option>
<option value=\"auto\">Auto</option>
<option value=\"dracula\">Dracula</option>
<option value=\"nord\">Nord</option>
<option value=\"night_owl\">Night Owl</option>
<option value=\"discord\">Discord</option>
<option value=\"google\">Google Dark</option>
<option value=\"startpage\">Startpage Dark</option>
<option value=\"gruvbox\">Gruvbox</option>
<option value=\"github_night\">GitHub Night</option>
<option value=\"catppuccin_latte\">Catppuccin Latte</option>
<option value=\"catppuccin_frappe\">Catppuccin Frappe</option>
<option value=\"catppuccin_macchiato\">Catppuccin Macchiato</option>
<option value=\"catppuccin_mocha\">Catppuccin Mocha</option>
<option value=\"ubuntu\">Ubuntu</option>
<option value=\"tokyo_night\">Tokyo Night</option>";
if (!isset($opts->theme)) {
$theme = $default;
}
$theme = $opts->theme;
$themes = str_replace($theme . "\"", $theme . "\" selected", $themes);
echo $themes;
?>
</select>
</div>
<div>
<label><?php printtext("settings_special_warning");?></label><br><br>
<label><?php printtext("settings_special_disabled");?></label>
<input type="checkbox" name="disable_special" <?php echo $opts->disable_special ? "checked" : ""; ?> ><br>
<label><?php printtext("settings_frontends_disable");?></label>
<input type="checkbox" name="disable_frontends" <?php echo $opts->disable_frontends ? "checked" : ""; ?> ><br>
<label><?php printtext("settings_safe_search");?></label>
<input type="checkbox" name="safe_search" <?php echo $opts->safe_search ? "checked" : ""; ?> ><br>
</div>
<h2><?php printtext("settings_frontends");?></h2>
<p><?php printtext("settings_frontends_description");?></p>
<div class="settings-textbox-container">
<?php
foreach($opts->frontends as $frontend => $data)
{
echo "<div>";
echo "<a for=\"$frontend\" href=\"" . $data["project_url"] . "\" target=\"_blank\">" . ucfirst($frontend) . "</a>";
echo "<input type=\"text\" name=\"$frontend\" placeholder=\"Replace " . $data["original_name"] . "\" value=";
echo htmlspecialchars($opts->frontends["$frontend"]["instance_url"] ?? "");
echo ">";
echo "</div>";
}
?>
</div>
<h2><?php printtext("settings_search_settings");?></h2>
<div class="settings-textbox-container">
<div>
<span><?php printtext("settings_preferred_engine");?></span>
<select name="engine">
<?php
require_once "engines/text/text.php";
$engines = get_engines();
$options = "";
$options .= "<option value=\"\" " . (!isset($opts->engine) ? "selected" : "") . ">auto</option>";
foreach ($engines as $engine) {
$selected = $opts->engine == $engine ? "selected" : "";
$options .= "<option value=\"$engine\" $selected>$engine</option>";
}
echo $options;
?>
</select>
</div>
<div>
<label><?php printtext("settings_number_of_results");?></label>
<input type="number" name="number_of_results" value="<?php echo htmlspecialchars($opts->number_of_results ?? "10") ?>" >
</div>
</div>
<div class="settings-textbox-container">
<div>
<span><?php printtext("settings_language");?></span>
<select name="language">
<?php
$languages = json_decode(file_get_contents("static/misc/languages.json"), true);
$options = "";
$options .= "<option value=\"\" " . (!isset($opts->language) ? "selected" : "") . ">Any</option>";
foreach ($languages as $lang_code => $language) {
$name = $language["name"];
$selected = $opts->language == $lang_code ? "selected" : "";
$options .= "<option value=\"$lang_code\" $selected>$name</option>";
}
echo $options;
?>
</select>
</div>
</div>
<div>
<button type="submit" name="save" value="1"><?php printtext("settings_save");?></button>
<button type="submit" name="reset" value="1"><?php printtext("settings_reset");?></button>
</div>
</form>
</div>
<?php require_once "misc/footer.php"; ?>