]> git.wh0rd.org - tt-rss.git/blame - classes/pref/prefs.php
change description of HIDE_READ_FEEDS
[tt-rss.git] / classes / pref / prefs.php
CommitLineData
1395083e 1<?php
369dbc19 2class Pref_Prefs extends Handler_Protected {
1395083e 3
8484ce22 4 function csrf_ignore($method) {
27211afe 5 $csrf_ignored = array("index", "updateself");
8484ce22
AD
6
7 return array_search($method, $csrf_ignored) !== false;
8 }
9
1395083e
AD
10 function changepassword() {
11
12 $old_pw = $_POST["old_password"];
13 $new_pw = $_POST["new_password"];
14 $con_pw = $_POST["confirm_password"];
15
16 if ($old_pw == "") {
17 print "ERROR: ".__("Old password cannot be blank.");
18 return;
19 }
20
21 if ($new_pw == "") {
22 print "ERROR: ".__("New password cannot be blank.");
23 return;
24 }
25
26 if ($new_pw != $con_pw) {
27 print "ERROR: ".__("Entered passwords do not match.");
28 return;
29 }
30
0f28f81f
AD
31 global $pluginhost;
32 $authenticator = $pluginhost->get_plugin($_SESSION["auth_module"]);
1395083e 33
d5fd183d
AD
34 if (method_exists($authenticator, "change_password")) {
35 print $authenticator->change_password($_SESSION["uid"], $old_pw, $new_pw);
098df83b 36 } else {
d5fd183d 37 print "ERROR: ".__("Function not supported by authentication module.");
098df83b 38 }
1395083e
AD
39 }
40
41 function saveconfig() {
42
43 $_SESSION["prefs_cache"] = false;
44
451ff722
AD
45 $boolean_prefs = explode(",", $_POST["boolean_prefs"]);
46
47 foreach ($boolean_prefs as $pref) {
48 if (!isset($_POST[$pref])) $_POST[$pref] = 'false';
49 }
50
1395083e
AD
51 foreach (array_keys($_POST) as $pref_name) {
52
3972bf59
AD
53 $pref_name = db_escape_string($this->link, $pref_name);
54 $value = db_escape_string($this->link, $_POST[$pref_name]);
1395083e 55
1b9b19af
AD
56 if ($pref_name == 'DIGEST_PREFERRED_TIME') {
57 if (get_pref($this->link, 'DIGEST_PREFERRED_TIME') != $value) {
58
59 db_query($this->link, "UPDATE ttrss_users SET
60 last_digest_sent = NULL WHERE id = " . $_SESSION['uid']);
61
62 }
63 }
64
1395083e
AD
65 set_pref($this->link, $pref_name, $value);
66
67 }
68
96f0a3e7 69 print __("The configuration was saved.");
1395083e
AD
70 }
71
72 function getHelp() {
73
3972bf59 74 $pref_name = db_escape_string($this->link, $_REQUEST["pn"]);
1395083e
AD
75
76 $result = db_query($this->link, "SELECT help_text FROM ttrss_prefs
77 WHERE pref_name = '$pref_name'");
78
79 if (db_num_rows($result) > 0) {
80 $help_text = db_fetch_result($result, 0, "help_text");
81 print $help_text;
82 } else {
83 printf(__("Unknown option: %s"), $pref_name);
84 }
85 }
86
87 function changeemail() {
88
3972bf59
AD
89 $email = db_escape_string($this->link, $_POST["email"]);
90 $full_name = db_escape_string($this->link, $_POST["full_name"]);
1395083e
AD
91
92 $active_uid = $_SESSION["uid"];
93
94 db_query($this->link, "UPDATE ttrss_users SET email = '$email',
95 full_name = '$full_name' WHERE id = '$active_uid'");
96
97 print __("Your personal data has been saved.");
98
99 return;
100 }
101
102 function resetconfig() {
103
104 $_SESSION["prefs_op_result"] = "reset-to-defaults";
105
106 if ($_SESSION["profile"]) {
107 $profile_qpart = "profile = '" . $_SESSION["profile"] . "'";
108 } else {
109 $profile_qpart = "profile IS NULL";
110 }
111
112 db_query($this->link, "DELETE FROM ttrss_user_prefs
113 WHERE $profile_qpart AND owner_uid = ".$_SESSION["uid"]);
114
115 initialize_user_prefs($this->link, $_SESSION["uid"], $_SESSION["profile"]);
116
117 print "PREFS_THEME_CHANGED";
118 }
119
120 function index() {
121
122 global $access_level_names;
123
124 $prefs_blacklist = array("HIDE_READ_FEEDS", "FEEDS_SORT_BY_UNREAD",
125 "STRIP_UNSAFE_TAGS");
126
127 $profile_blacklist = array("ALLOW_DUPLICATE_POSTS", "PURGE_OLD_DAYS",
128 "PURGE_UNREAD_ARTICLES", "DIGEST_ENABLE", "DIGEST_CATCHUP",
129 "BLACKLISTED_TAGS", "ENABLE_API_ACCESS", "UPDATE_POST_ON_CHECKSUM_CHANGE",
130 "DEFAULT_UPDATE_INTERVAL", "USER_TIMEZONE", "SORT_HEADLINES_BY_FEED_DATE",
6d9455e9 131 "SSL_CERT_SERIAL", "DIGEST_PREFERRED_TIME");
1395083e
AD
132
133
d4c64ecc 134 $_SESSION["prefs_op_result"] = "";
1395083e 135
d4c64ecc
AD
136 print "<div dojoType=\"dijit.layout.AccordionContainer\" region=\"center\">";
137 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Personal data / Authentication')."\">";
1395083e 138
d4c64ecc 139 print "<form dojoType=\"dijit.form.Form\" id=\"changeUserdataForm\">";
1395083e 140
d4c64ecc
AD
141 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
142 evt.preventDefault();
143 if (this.validate()) {
144 notify_progress('Saving data...', true);
1395083e 145
d4c64ecc
AD
146 new Ajax.Request('backend.php', {
147 parameters: dojo.objectToQuery(this.getValues()),
148 onComplete: function(transport) {
149 notify_callback2(transport);
150 } });
1395083e 151
d4c64ecc
AD
152 }
153 </script>";
1395083e 154
d4c64ecc 155 print "<table width=\"100%\" class=\"prefPrefsList\">";
1395083e 156
fb70f26e
AD
157 print "<h2>" . __("Personal data") . "</h2>";
158
159 $result = db_query($this->link, "SELECT email,full_name,otp_enabled,
d4c64ecc
AD
160 access_level FROM ttrss_users
161 WHERE id = ".$_SESSION["uid"]);
1395083e 162
d4c64ecc
AD
163 $email = htmlspecialchars(db_fetch_result($result, 0, "email"));
164 $full_name = htmlspecialchars(db_fetch_result($result, 0, "full_name"));
fb70f26e 165 $otp_enabled = sql_bool_to_bool(db_fetch_result($result, 0, "otp_enabled"));
1395083e 166
d4c64ecc
AD
167 print "<tr><td width=\"40%\">".__('Full name')."</td>";
168 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" name=\"full_name\" required=\"1\"
169 value=\"$full_name\"></td></tr>";
1395083e 170
d4c64ecc
AD
171 print "<tr><td width=\"40%\">".__('E-mail')."</td>";
172 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" name=\"email\" required=\"1\" value=\"$email\"></td></tr>";
1395083e 173
0d421af8 174 if (!SINGLE_USER_MODE && !$_SESSION["hide_hello"]) {
949b1a94 175
d4c64ecc
AD
176 $access_level = db_fetch_result($result, 0, "access_level");
177 print "<tr><td width=\"40%\">".__('Access level')."</td>";
178 print "<td>" . $access_level_names[$access_level] . "</td></tr>";
179 }
1395083e 180
d4c64ecc 181 print "</table>";
1395083e 182
d4c64ecc
AD
183 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
184 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"changeemail\">";
1395083e 185
d4c64ecc
AD
186 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
187 __("Save data")."</button>";
1395083e 188
d4c64ecc 189 print "</form>";
1395083e 190
0f28f81f
AD
191 if ($_SESSION["auth_module"]) {
192 global $pluginhost;
193
194 $authenticator = $pluginhost->get_plugin($_SESSION["auth_module"]);
195
d5fd183d
AD
196 } else {
197 $authenticator = false;
198 }
199
200 if ($authenticator && method_exists($authenticator, "change_password")) {
1395083e 201
fb70f26e
AD
202 print "<h2>" . __("Password") . "</h2>";
203
1395083e
AD
204 $result = db_query($this->link, "SELECT id FROM ttrss_users
205 WHERE id = ".$_SESSION["uid"]." AND pwd_hash
206 = 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8'");
207
208 if (db_num_rows($result) != 0) {
209 print format_warning(__("Your password is at default value, please change it."), "default_pass_warning");
210 }
211
212 print "<form dojoType=\"dijit.form.Form\">";
213
214 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
215 evt.preventDefault();
216 if (this.validate()) {
217 notify_progress('Changing password...', true);
218
219 new Ajax.Request('backend.php', {
220 parameters: dojo.objectToQuery(this.getValues()),
221 onComplete: function(transport) {
222 notify('');
223 if (transport.responseText.indexOf('ERROR: ') == 0) {
224 notify_error(transport.responseText.replace('ERROR: ', ''));
225 } else {
226 notify_info(transport.responseText);
227 var warn = $('default_pass_warning');
228 if (warn) Element.hide(warn);
229 }
230 }});
231 this.reset();
232 }
233 </script>";
234
3ca8af7f 235 if ($otp_enabled) {
9a73994c 236 print_notice(__("Changing your current password will disable OTP."));
3ca8af7f
AD
237 }
238
1395083e
AD
239 print "<table width=\"100%\" class=\"prefPrefsList\">";
240
241 print "<tr><td width=\"40%\">".__("Old password")."</td>";
242 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\" name=\"old_password\"></td></tr>";
243
244 print "<tr><td width=\"40%\">".__("New password")."</td>";
245
246 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
247 name=\"new_password\"></td></tr>";
248
249 print "<tr><td width=\"40%\">".__("Confirm password")."</td>";
250
251 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\" name=\"confirm_password\"></td></tr>";
252
253 print "</table>";
254
255 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
256 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"changepassword\">";
257
258 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
259 __("Change password")."</button>";
260
261 print "</form>";
262
0f28f81f 263 if ($_SESSION["auth_module"] == "auth_internal") {
fb70f26e
AD
264
265 print "<h2>" . __("One time passwords / Authenticator") . "</h2>";
266
267 if ($otp_enabled) {
268
9a73994c 269 print_notice(__("One time passwords are currently enabled. Enter your current password below to disable."));
3ca8af7f
AD
270
271 print "<form dojoType=\"dijit.form.Form\">";
272
273 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
274 evt.preventDefault();
275 if (this.validate()) {
276 notify_progress('Disabling OTP', true);
277
278 new Ajax.Request('backend.php', {
279 parameters: dojo.objectToQuery(this.getValues()),
280 onComplete: function(transport) {
281 notify('');
282 if (transport.responseText.indexOf('ERROR: ') == 0) {
283 notify_error(transport.responseText.replace('ERROR: ', ''));
284 } else {
285 window.location.reload();
286 }
287 }});
288 this.reset();
289 }
290 </script>";
291
292 print "<table width=\"100%\" class=\"prefPrefsList\">";
293
294 print "<tr><td width=\"40%\">".__("Enter your password")."</td>";
295
296 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
297 name=\"password\"></td></tr>";
298
299 print "</table>";
300
301 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
302 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"otpdisable\">";
303
304 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
305 __("Disable OTP")."</button>";
306
307 print "</form>";
fb70f26e
AD
308
309 } else {
310
311 print "<p>".__("You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP.") . "</p>";
312
313 print "<p>".__("Scan the following code by the Authenticator application:")."</p>";
314
315 $csrf_token = $_SESSION["csrf_token"];
316
317 print "<img src=\"backend.php?op=pref-prefs&method=otpqrcode&csrf_token=$csrf_token\">";
318
319 print "<form dojoType=\"dijit.form.Form\" id=\"changeOtpForm\">";
320
321 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
3ca8af7f 322 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"otpenable\">";
fb70f26e
AD
323
324 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
325 evt.preventDefault();
326 if (this.validate()) {
327 notify_progress('Saving data...', true);
328
329 new Ajax.Request('backend.php', {
330 parameters: dojo.objectToQuery(this.getValues()),
331 onComplete: function(transport) {
3ca8af7f
AD
332 notify('');
333 if (transport.responseText.indexOf('ERROR: ') == 0) {
334 notify_error(transport.responseText.replace('ERROR: ', ''));
335 } else {
336 window.location.reload();
337 }
fb70f26e
AD
338 } });
339
340 }
341 </script>";
342
3ca8af7f
AD
343 print "<table width=\"100%\" class=\"prefPrefsList\">";
344
345 print "<tr><td width=\"40%\">".__("Enter your password")."</td>";
346
347 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
348 name=\"password\"></td></tr>";
349
350 print "<tr><td colspan=\"2\">";
351
fb70f26e
AD
352 print "<input dojoType=\"dijit.form.CheckBox\" required=\"1\"
353 type=\"checkbox\" id=\"enable_otp\" name=\"enable_otp\"/> ";
354 print "<label for=\"enable_otp\">".__("I have scanned the code and would like to enable OTP")."</label>";
355
3ca8af7f
AD
356 print "</td></tr><tr><td colspan=\"2\">";
357
358 print "</td></tr>";
359 print "</table>";
360
fb70f26e 361 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
3ca8af7f 362 __("Enable OTP")."</button>";
fb70f26e
AD
363
364 print "</form>";
365
366 }
367
368 }
1395083e
AD
369 }
370
699daf58
AD
371 global $pluginhost;
372 $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB_SECTION,
373 "hook_prefs_tab_section", "prefPrefsAuth");
374
d4c64ecc
AD
375 print "</div>"; #pane
376
1395083e
AD
377 print "<div dojoType=\"dijit.layout.AccordionPane\" selected=\"true\" title=\"".__('Preferences')."\">";
378
379 print "<form dojoType=\"dijit.form.Form\" id=\"changeSettingsForm\">";
380
381 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
382 evt.preventDefault();
383 if (this.validate()) {
384 console.log(dojo.objectToQuery(this.getValues()));
385
386 new Ajax.Request('backend.php', {
387 parameters: dojo.objectToQuery(this.getValues()),
388 onComplete: function(transport) {
389 var msg = transport.responseText;
390 if (msg.match('PREFS_THEME_CHANGED')) {
391 window.location.reload();
392 } else {
393 notify_info(msg);
394 }
395 } });
396 }
397 </script>";
398
399 print '<div dojoType="dijit.layout.BorderContainer" gutters="false">';
400
401 print '<div dojoType="dijit.layout.ContentPane" region="center" style="overflow-y : auto">';
402
403 if ($_SESSION["profile"]) {
9a73994c 404 print_notice(__("Some preferences are only available in default profile."));
1395083e
AD
405 }
406
407 if ($_SESSION["profile"]) {
408 initialize_user_prefs($this->link, $_SESSION["uid"], $_SESSION["profile"]);
409 $profile_qpart = "profile = '" . $_SESSION["profile"] . "'";
410 } else {
411 initialize_user_prefs($this->link, $_SESSION["uid"]);
412 $profile_qpart = "profile IS NULL";
413 }
414
744a1b00 415 /* if ($_SESSION["prefs_show_advanced"])
f9ebb32c
AD
416 $access_query = "true";
417 else
744a1b00
AD
418 $access_query = "(access_level = 0 AND section_id != 3)"; */
419
420 $access_query = 'true';
f9ebb32c 421
ddb575c7 422 $result = db_query($this->link, "SELECT DISTINCT
1395083e 423 ttrss_user_prefs.pref_name,short_desc,help_text,value,type_name,
f9ebb32c 424 ttrss_prefs_sections.order_id,
1395083e
AD
425 section_name,def_value,section_id
426 FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections,ttrss_user_prefs
427 WHERE type_id = ttrss_prefs_types.id AND
428 $profile_qpart AND
429 section_id = ttrss_prefs_sections.id AND
430 ttrss_user_prefs.pref_name = ttrss_prefs.pref_name AND
f9ebb32c 431 $access_query AND
1395083e
AD
432 short_desc != '' AND
433 owner_uid = ".$_SESSION["uid"]."
f9ebb32c 434 ORDER BY ttrss_prefs_sections.order_id,short_desc");
1395083e
AD
435
436 $lnum = 0;
437
438 $active_section = "";
439
451ff722
AD
440 $listed_boolean_prefs = array();
441
1395083e
AD
442 while ($line = db_fetch_assoc($result)) {
443
444 if (in_array($line["pref_name"], $prefs_blacklist)) {
445 continue;
446 }
447
448 if ($_SESSION["profile"] && in_array($line["pref_name"],
449 $profile_blacklist)) {
450 continue;
451 }
452
453 if ($active_section != $line["section_name"]) {
454
455 if ($active_section != "") {
456 print "</table>";
457 }
458
459 print "<table width=\"100%\" class=\"prefPrefsList\">";
460
461 $active_section = $line["section_name"];
462
463 print "<tr><td colspan=\"3\"><h3>".__($active_section)."</h3></td></tr>";
464
1395083e
AD
465 $lnum = 0;
466 }
467
468 print "<tr>";
469
470 $type_name = $line["type_name"];
471 $pref_name = $line["pref_name"];
472 $value = $line["value"];
473 $def_value = $line["def_value"];
474 $help_text = $line["help_text"];
475
451ff722
AD
476 print "<td width=\"40%\" class=\"prefName\" id=\"$pref_name\">";
477 print "<label for='CB_$pref_name'>";
478 print __($line["short_desc"]);
479 print "</label>";
1395083e
AD
480
481 if ($help_text) print "<div class=\"prefHelp\">".__($help_text)."</div>";
482
483 print "</td>";
484
485 print "<td class=\"prefValue\">";
486
487 if ($pref_name == "USER_TIMEZONE") {
488
489 $timezones = explode("\n", file_get_contents("lib/timezones.txt"));
490
491 print_select($pref_name, $value, $timezones, 'dojoType="dijit.form.FilteringSelect"');
492 } else if ($pref_name == "USER_STYLESHEET") {
493
494 print "<button dojoType=\"dijit.form.Button\"
495 onclick=\"customizeCSS()\">" . __('Customize') . "</button>";
496
497 } else if ($pref_name == "DEFAULT_ARTICLE_LIMIT") {
498
499 $limits = array(15, 30, 45, 60);
500
501 print_select($pref_name, $value, $limits,
502 'dojoType="dijit.form.Select"');
503
504 } else if ($pref_name == "DEFAULT_UPDATE_INTERVAL") {
505
506 global $update_intervals_nodefault;
507
508 print_select_hash($pref_name, $value, $update_intervals_nodefault,
509 'dojoType="dijit.form.Select"');
510
511 } else if ($type_name == "bool") {
512
451ff722
AD
513 array_push($listed_boolean_prefs, $pref_name);
514
515 $checked = ($value == "true") ? "checked=\"checked\"" : "";
1395083e
AD
516
517 if ($pref_name == "PURGE_UNREAD_ARTICLES" && FORCE_ARTICLE_PURGE != 0) {
518 $disabled = "disabled=\"1\"";
451ff722 519 $checked = "checked=\"checked\"";
1395083e
AD
520 } else {
521 $disabled = "";
522 }
523
451ff722
AD
524 print "<input type='checkbox' name='$pref_name' $checked $disabled
525 dojoType='dijit.form.CheckBox' id='CB_$pref_name' value='1'>";
1395083e
AD
526
527 } else if (array_search($pref_name, array('FRESH_ARTICLE_MAX_AGE', 'DEFAULT_ARTICLE_LIMIT',
528 'PURGE_OLD_DAYS', 'LONG_DATE_FORMAT', 'SHORT_DATE_FORMAT')) !== false) {
529
530 $regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
531
532 if ($pref_name == "PURGE_OLD_DAYS" && FORCE_ARTICLE_PURGE != 0) {
533 $disabled = "disabled=\"1\"";
534 $value = FORCE_ARTICLE_PURGE;
535 } else {
536 $disabled = "";
537 }
538
539 print "<input dojoType=\"dijit.form.ValidationTextBox\"
540 required=\"1\" $regexp $disabled
541 name=\"$pref_name\" value=\"$value\">";
542
543 } else if ($pref_name == "SSL_CERT_SERIAL") {
544
545 print "<input dojoType=\"dijit.form.ValidationTextBox\"
546 id=\"SSL_CERT_SERIAL\" readonly=\"1\"
547 name=\"$pref_name\" value=\"$value\">";
548
549 $cert_serial = htmlspecialchars(get_ssl_certificate_id());
550 $has_serial = ($cert_serial) ? "false" : "true";
551
552 print " <button dojoType=\"dijit.form.Button\" disabled=\"$has_serial\"
553 onclick=\"insertSSLserial('$cert_serial')\">" .
554 __('Register') . "</button>";
555
556 print " <button dojoType=\"dijit.form.Button\"
557 onclick=\"insertSSLserial('')\">" .
558 __('Clear') . "</button>";
559
76c843a9 560 } else if ($pref_name == 'DIGEST_PREFERRED_TIME') {
61c1812f 561 print "<input dojoType=\"dijit.form.ValidationTextBox\"
1b92f543 562 id=\"$pref_name\" regexp=\"[012]?\d:\d\d\" placeHolder=\"12:00\"
61c1812f 563 name=\"$pref_name\" value=\"$value\"><div class=\"insensitive\">".
8eba830f 564 T_sprintf("Current server time: %s (UTC)", date("H:i")) . "</div>";
1395083e
AD
565 } else {
566 $regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
567
568 print "<input dojoType=\"dijit.form.ValidationTextBox\"
569 $regexp
570 name=\"$pref_name\" value=\"$value\">";
571 }
572
573 print "</td>";
574
575 print "</tr>";
576
577 $lnum++;
578 }
579
580 print "</table>";
581
451ff722
AD
582 $listed_boolean_prefs = htmlspecialchars(join(",", $listed_boolean_prefs));
583
584 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"boolean_prefs\" value=\"$listed_boolean_prefs\">";
585
699daf58
AD
586 global $pluginhost;
587 $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB_SECTION,
588 "hook_prefs_tab_section", "prefPrefsPrefsInside");
589
1395083e
AD
590 print '</div>'; # inside pane
591 print '<div dojoType="dijit.layout.ContentPane" region="bottom">';
592
593 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
594 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"saveconfig\">";
595
596 print "<button dojoType=\"dijit.form.Button\" type=\"submit\">".
597 __('Save configuration')."</button> ";
598
599 print "<button dojoType=\"dijit.form.Button\" onclick=\"return editProfiles()\">".
600 __('Manage profiles')."</button> ";
601
602 print "<button dojoType=\"dijit.form.Button\" onclick=\"return validatePrefsReset()\">".
603 __('Reset to defaults')."</button>";
604
f9ebb32c
AD
605 print "&nbsp;";
606
744a1b00 607 /* $checked = $_SESSION["prefs_show_advanced"] ? "checked='1'" : "";
f9ebb32c
AD
608
609 print "<input onclick='toggleAdvancedPrefs()'
610 id='prefs_show_advanced'
611 dojoType=\"dijit.form.CheckBox\"
612 $checked
613 type=\"checkbox\"></input>
614 <label for='prefs_show_advanced'>" .
744a1b00 615 __("Show additional preferences") . "</label>"; */
f9ebb32c 616
699daf58
AD
617 global $pluginhost;
618 $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB_SECTION,
619 "hook_prefs_tab_section", "prefPrefsPrefsOutside");
620
de612e7a 621 print "</form>";
1395083e
AD
622 print '</div>'; # inner pane
623 print '</div>'; # border container
de612e7a
AD
624
625 print "</div>"; #pane
626
627 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Plugins')."\">";
628
629 print "<h2>".__("Plugins")."</h2>";
630
9a73994c 631 print_notice(__("You will need to reload Tiny Tiny RSS for plugin changes to take effect."));
de612e7a
AD
632
633 print "<form dojoType=\"dijit.form.Form\" id=\"changePluginsForm\">";
634
635 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
636 evt.preventDefault();
637 if (this.validate()) {
638 notify_progress('Saving data...', true);
639
640 new Ajax.Request('backend.php', {
641 parameters: dojo.objectToQuery(this.getValues()),
642 onComplete: function(transport) {
643 notify('');
644 if (confirm(__('Selected plugins have been enabled. Reload?'))) {
645 window.location.reload();
646 }
647 } });
648
649 }
650 </script>";
651
652 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
653 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setplugins\">";
654
65d1e250 655 print "<table width='100%' class='prefPluginsList'>";
de612e7a
AD
656
657 print "<tr><td colspan='4'><h3>".__("System plugins")."</h3></td></tr>";
658
659 print "<tr class=\"title\">
660 <td width=\"5%\">&nbsp;</td>
661 <td width='10%'>".__('Plugin')."</td>
662 <td width=''>".__('Description')."</td>
663 <td width='5%'>".__('Version')."</td>
664 <td width='10%'>".__('Author')."</td></tr>";
665
666 $system_enabled = array_map("trim", explode(",", PLUGINS));
667 $user_enabled = array_map("trim", explode(",", get_pref($this->link, "_ENABLED_PLUGINS")));
668
5d9abb1e
AD
669 $tmppluginhost = new PluginHost($this->link);
670 $tmppluginhost->load_all($tmppluginhost::KIND_ALL, $_SESSION["uid"]);
671 $tmppluginhost->load_data(true);
de612e7a
AD
672
673 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
d2a421e3 674 $about = $plugin->about();
de612e7a 675
23be0bd3 676 if ($about[3] && strpos($name, "example") === FALSE) {
de612e7a
AD
677 if (in_array($name, $system_enabled)) {
678 $checked = "checked='1'";
679 } else {
680 $checked = "";
681 }
682
683 print "<tr>";
684
685 print "<td align='center'><input disabled='1'
686 dojoType=\"dijit.form.CheckBox\" $checked
687 type=\"checkbox\"></td>";
688
689 print "<td>$name</td>";
690 print "<td>" . htmlspecialchars($about[1]) . "</td>";
691 print "<td>" . htmlspecialchars(sprintf("%.2f", $about[0])) . "</td>";
692 print "<td>" . htmlspecialchars($about[2]) . "</td>";
693
5d9abb1e 694 if (count($tmppluginhost->get_all($plugin)) > 0) {
81c54e3d
AD
695 if (in_array($name, $system_enabled)) {
696 print "<td><a href='#' onclick=\"clearPluginData('$name')\"
697 class='visibleLink'>".__("Clear data")."</a></td>";
698 }
5d9abb1e
AD
699 }
700
de612e7a
AD
701 print "</tr>";
702
703 }
704 }
705
706 print "<tr><td colspan='4'><h3>".__("User plugins")."</h3></td></tr>";
707
708 print "<tr class=\"title\">
709 <td width=\"5%\">&nbsp;</td>
710 <td width='10%'>".__('Plugin')."</td>
711 <td width=''>".__('Description')."</td>
712 <td width='5%'>".__('Version')."</td>
713 <td width='10%'>".__('Author')."</td></tr>";
714
715
716 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
d2a421e3 717 $about = $plugin->about();
de612e7a 718
23be0bd3 719 if (!$about[3] && strpos($name, "example") === FALSE) {
de612e7a
AD
720
721 if (in_array($name, $system_enabled)) {
722 $checked = "checked='1'";
723 $disabled = "disabled='1'";
65d1e250 724 $rowclass = '';
de612e7a
AD
725 } else if (in_array($name, $user_enabled)) {
726 $checked = "checked='1'";
727 $disabled = "";
65d1e250 728 $rowclass = "Selected";
de612e7a
AD
729 } else {
730 $checked = "";
731 $disabled = "";
65d1e250 732 $rowclass = '';
de612e7a
AD
733 }
734
65d1e250 735 print "<tr class='$rowclass'>";
de612e7a
AD
736
737 print "<td align='center'><input id='FPCHK-$name' name='plugins[]' value='$name' onclick='toggleSelectRow2(this);'
738 dojoType=\"dijit.form.CheckBox\" $checked $disabled
739 type=\"checkbox\"></td>";
740
65d1e250
AD
741 print "<td><label for='FPCHK-$name'>$name</label></td>";
742 print "<td><label for='FPCHK-$name'>" . htmlspecialchars($about[1]) . "</label></td>";
de612e7a
AD
743 print "<td>" . htmlspecialchars(sprintf("%.2f", $about[0])) . "</td>";
744 print "<td>" . htmlspecialchars($about[2]) . "</td>";
745
5d9abb1e 746 if (count($tmppluginhost->get_all($plugin)) > 0) {
81c54e3d
AD
747 if (in_array($name, $system_enabled) || in_array($name, $user_enabled)) {
748 print "<td><a href='#' onclick=\"clearPluginData('$name')\" class='visibleLink'>".__("Clear data")."</a></td>";
749 }
5d9abb1e
AD
750 }
751
de612e7a
AD
752 print "</tr>";
753
754
755
756 }
757
758 }
759
760 print "</table>";
761
762 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
763 __("Enable selected plugins")."</button></p>";
764
1395083e
AD
765 print "</form>";
766
767 print "</div>"; #pane
27211afe 768
6065f3ad
AD
769 global $pluginhost;
770 $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB,
771 "hook_prefs_tab", "prefPrefs");
772
1395083e
AD
773 print "</div>"; #container
774 }
27211afe 775
f9ebb32c
AD
776 function toggleAdvanced() {
777 $_SESSION["prefs_show_advanced"] = !$_SESSION["prefs_show_advanced"];
778 }
fb70f26e
AD
779
780 function otpqrcode() {
781 require_once "lib/otphp/vendor/base32.php";
782 require_once "lib/otphp/lib/otp.php";
783 require_once "lib/otphp/lib/totp.php";
784 require_once "lib/phpqrcode/phpqrcode.php";
785
973392b9 786 $result = db_query($this->link, "SELECT login,salt,otp_enabled
fb70f26e
AD
787 FROM ttrss_users
788 WHERE id = ".$_SESSION["uid"]);
789
790 $base32 = new Base32();
791
792 $login = db_fetch_result($result, 0, "login");
973392b9 793 $otp_enabled = sql_bool_to_bool(db_fetch_result($result, 0, "otp_enabled"));
fb70f26e 794
973392b9
AD
795 if (!$otp_enabled) {
796 $secret = $base32->encode(sha1(db_fetch_result($result, 0, "salt")));
797 $topt = new \OTPHP\TOTP($secret);
798 print QRcode::png($topt->provisioning_uri($login));
799 }
fb70f26e
AD
800 }
801
3ca8af7f 802 function otpenable() {
3972bf59 803 $password = db_escape_string($this->link, $_REQUEST["password"]);
3ca8af7f
AD
804 $enable_otp = $_REQUEST["enable_otp"] == "on";
805
0f28f81f
AD
806 global $pluginhost;
807 $authenticator = $pluginhost->get_plugin($_SESSION["auth_module"]);
808
3ca8af7f
AD
809 if ($authenticator->check_password($_SESSION["uid"], $password)) {
810
811 if ($enable_otp) {
812 db_query($this->link, "UPDATE ttrss_users SET otp_enabled = true WHERE
813 id = " . $_SESSION["uid"]);
814
815 print "OK";
816 }
817 } else {
818 print "ERROR: ".__("Incorrect password");
819 }
fb70f26e 820
3ca8af7f
AD
821 }
822
823 function otpdisable() {
3972bf59 824 $password = db_escape_string($this->link, $_REQUEST["password"]);
3ca8af7f 825
0f28f81f
AD
826 global $pluginhost;
827 $authenticator = $pluginhost->get_plugin($_SESSION["auth_module"]);
3ca8af7f
AD
828
829 if ($authenticator->check_password($_SESSION["uid"], $password)) {
830
831 db_query($this->link, "UPDATE ttrss_users SET otp_enabled = false WHERE
fb70f26e 832 id = " . $_SESSION["uid"]);
3ca8af7f
AD
833
834 print "OK";
835 } else {
836 print "ERROR: ".__("Incorrect password");
fb70f26e 837 }
3ca8af7f 838
fb70f26e 839 }
de612e7a
AD
840
841 function setplugins() {
f4c02a15
AD
842 if (is_array($_REQUEST["plugins"]))
843 $plugins = join(",", $_REQUEST["plugins"]);
844 else
845 $plugins = "";
de612e7a
AD
846
847 set_pref($this->link, "_ENABLED_PLUGINS", $plugins);
848 }
5d9abb1e
AD
849
850 function clearplugindata() {
3972bf59 851 $name = db_escape_string($this->link, $_REQUEST["name"]);
5d9abb1e
AD
852
853 global $pluginhost;
854 $pluginhost->clear_data($pluginhost->get_plugin($name));
855 }
1395083e
AD
856}
857?>