]> git.wh0rd.org - tt-rss.git/blame - classes/pref/prefs.php
add experimental key/value storage for plugins
[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
45 $orig_theme = get_pref($this->link, "_THEME_ID");
46
47 foreach (array_keys($_POST) as $pref_name) {
48
49 $pref_name = db_escape_string($pref_name);
50 $value = db_escape_string($_POST[$pref_name]);
51
1b9b19af
AD
52 if ($pref_name == 'DIGEST_PREFERRED_TIME') {
53 if (get_pref($this->link, 'DIGEST_PREFERRED_TIME') != $value) {
54
55 db_query($this->link, "UPDATE ttrss_users SET
56 last_digest_sent = NULL WHERE id = " . $_SESSION['uid']);
57
58 }
59 }
60
1395083e
AD
61 set_pref($this->link, $pref_name, $value);
62
63 }
64
65 if ($orig_theme != get_pref($this->link, "_THEME_ID")) {
66 print "PREFS_THEME_CHANGED";
67 } else {
68 print __("The configuration was saved.");
69 }
70 }
71
72 function getHelp() {
73
74 $pref_name = db_escape_string($_REQUEST["pn"]);
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
89 $email = db_escape_string($_POST["email"]);
90 $full_name = db_escape_string($_POST["full_name"]);
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
AD
235 if ($otp_enabled) {
236 print_notice("Changing your current password will disable OTP.");
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
3ca8af7f
AD
269 print_notice("One time passwords are currently enabled. Enter your current password below to disable.");
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"]) {
404 print_notice("Some preferences are only available in default profile.");
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
f9ebb32c
AD
415 if ($_SESSION["prefs_show_advanced"])
416 $access_query = "true";
417 else
418 $access_query = "(access_level = 0 AND section_id != 3)";
419
ddb575c7 420 $result = db_query($this->link, "SELECT DISTINCT
1395083e 421 ttrss_user_prefs.pref_name,short_desc,help_text,value,type_name,
f9ebb32c 422 ttrss_prefs_sections.order_id,
1395083e
AD
423 section_name,def_value,section_id
424 FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections,ttrss_user_prefs
425 WHERE type_id = ttrss_prefs_types.id AND
426 $profile_qpart AND
427 section_id = ttrss_prefs_sections.id AND
428 ttrss_user_prefs.pref_name = ttrss_prefs.pref_name AND
f9ebb32c 429 $access_query AND
1395083e
AD
430 short_desc != '' AND
431 owner_uid = ".$_SESSION["uid"]."
f9ebb32c 432 ORDER BY ttrss_prefs_sections.order_id,short_desc");
1395083e
AD
433
434 $lnum = 0;
435
436 $active_section = "";
437
438 while ($line = db_fetch_assoc($result)) {
439
440 if (in_array($line["pref_name"], $prefs_blacklist)) {
441 continue;
442 }
443
444 if ($_SESSION["profile"] && in_array($line["pref_name"],
445 $profile_blacklist)) {
446 continue;
447 }
448
449 if ($active_section != $line["section_name"]) {
450
451 if ($active_section != "") {
452 print "</table>";
453 }
454
455 print "<table width=\"100%\" class=\"prefPrefsList\">";
456
457 $active_section = $line["section_name"];
458
459 print "<tr><td colspan=\"3\"><h3>".__($active_section)."</h3></td></tr>";
460
461 if ($line["section_id"] == 2) {
462 print "<tr><td width=\"40%\">".__("Select theme")."</td>";
463
464 $user_theme = get_pref($this->link, "_THEME_ID");
465 $themes = get_all_themes();
466
467 print "<td><select name=\"_THEME_ID\" dojoType=\"dijit.form.Select\">";
468 print "<option value='Default'>".__('Default')."</option>";
469 print "<option value='----------------' disabled=\"1\">--------</option>";
470
471 foreach ($themes as $t) {
472 $base = $t['base'];
473 $name = $t['name'];
474
475 if ($base == $user_theme) {
476 $selected = "selected=\"1\"";
477 } else {
478 $selected = "";
479 }
480
481 print "<option $selected value='$base'>$name</option>";
482
483 }
484
485 print "</select></td></tr>";
486 }
487 $lnum = 0;
488 }
489
490 print "<tr>";
491
492 $type_name = $line["type_name"];
493 $pref_name = $line["pref_name"];
494 $value = $line["value"];
495 $def_value = $line["def_value"];
496 $help_text = $line["help_text"];
497
498 print "<td width=\"40%\" class=\"prefName\" id=\"$pref_name\">" . __($line["short_desc"]);
499
500 if ($help_text) print "<div class=\"prefHelp\">".__($help_text)."</div>";
501
502 print "</td>";
503
504 print "<td class=\"prefValue\">";
505
506 if ($pref_name == "USER_TIMEZONE") {
507
508 $timezones = explode("\n", file_get_contents("lib/timezones.txt"));
509
510 print_select($pref_name, $value, $timezones, 'dojoType="dijit.form.FilteringSelect"');
511 } else if ($pref_name == "USER_STYLESHEET") {
512
513 print "<button dojoType=\"dijit.form.Button\"
514 onclick=\"customizeCSS()\">" . __('Customize') . "</button>";
515
516 } else if ($pref_name == "DEFAULT_ARTICLE_LIMIT") {
517
518 $limits = array(15, 30, 45, 60);
519
520 print_select($pref_name, $value, $limits,
521 'dojoType="dijit.form.Select"');
522
523 } else if ($pref_name == "DEFAULT_UPDATE_INTERVAL") {
524
525 global $update_intervals_nodefault;
526
527 print_select_hash($pref_name, $value, $update_intervals_nodefault,
528 'dojoType="dijit.form.Select"');
529
530 } else if ($type_name == "bool") {
531
532 if ($value == "true") {
533 $value = __("Yes");
534 } else {
535 $value = __("No");
536 }
537
538 if ($pref_name == "PURGE_UNREAD_ARTICLES" && FORCE_ARTICLE_PURGE != 0) {
539 $disabled = "disabled=\"1\"";
540 $value = __("Yes");
541 } else {
542 $disabled = "";
543 }
544
545 print_radio($pref_name, $value, __("Yes"), array(__("Yes"), __("No")),
546 $disabled);
547
548 } else if (array_search($pref_name, array('FRESH_ARTICLE_MAX_AGE', 'DEFAULT_ARTICLE_LIMIT',
549 'PURGE_OLD_DAYS', 'LONG_DATE_FORMAT', 'SHORT_DATE_FORMAT')) !== false) {
550
551 $regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
552
553 if ($pref_name == "PURGE_OLD_DAYS" && FORCE_ARTICLE_PURGE != 0) {
554 $disabled = "disabled=\"1\"";
555 $value = FORCE_ARTICLE_PURGE;
556 } else {
557 $disabled = "";
558 }
559
560 print "<input dojoType=\"dijit.form.ValidationTextBox\"
561 required=\"1\" $regexp $disabled
562 name=\"$pref_name\" value=\"$value\">";
563
564 } else if ($pref_name == "SSL_CERT_SERIAL") {
565
566 print "<input dojoType=\"dijit.form.ValidationTextBox\"
567 id=\"SSL_CERT_SERIAL\" readonly=\"1\"
568 name=\"$pref_name\" value=\"$value\">";
569
570 $cert_serial = htmlspecialchars(get_ssl_certificate_id());
571 $has_serial = ($cert_serial) ? "false" : "true";
572
573 print " <button dojoType=\"dijit.form.Button\" disabled=\"$has_serial\"
574 onclick=\"insertSSLserial('$cert_serial')\">" .
575 __('Register') . "</button>";
576
577 print " <button dojoType=\"dijit.form.Button\"
578 onclick=\"insertSSLserial('')\">" .
579 __('Clear') . "</button>";
580
76c843a9 581 } else if ($pref_name == 'DIGEST_PREFERRED_TIME') {
61c1812f 582 print "<input dojoType=\"dijit.form.ValidationTextBox\"
1b92f543 583 id=\"$pref_name\" regexp=\"[012]?\d:\d\d\" placeHolder=\"12:00\"
61c1812f 584 name=\"$pref_name\" value=\"$value\"><div class=\"insensitive\">".
8eba830f 585 T_sprintf("Current server time: %s (UTC)", date("H:i")) . "</div>";
1395083e
AD
586 } else {
587 $regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
588
589 print "<input dojoType=\"dijit.form.ValidationTextBox\"
590 $regexp
591 name=\"$pref_name\" value=\"$value\">";
592 }
593
594 print "</td>";
595
596 print "</tr>";
597
598 $lnum++;
599 }
600
601 print "</table>";
602
699daf58
AD
603 global $pluginhost;
604 $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB_SECTION,
605 "hook_prefs_tab_section", "prefPrefsPrefsInside");
606
1395083e
AD
607 print '</div>'; # inside pane
608 print '<div dojoType="dijit.layout.ContentPane" region="bottom">';
609
610 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
611 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"saveconfig\">";
612
613 print "<button dojoType=\"dijit.form.Button\" type=\"submit\">".
614 __('Save configuration')."</button> ";
615
616 print "<button dojoType=\"dijit.form.Button\" onclick=\"return editProfiles()\">".
617 __('Manage profiles')."</button> ";
618
619 print "<button dojoType=\"dijit.form.Button\" onclick=\"return validatePrefsReset()\">".
620 __('Reset to defaults')."</button>";
621
f9ebb32c
AD
622 print "&nbsp;";
623
624 $checked = $_SESSION["prefs_show_advanced"] ? "checked='1'" : "";
625
626 print "<input onclick='toggleAdvancedPrefs()'
627 id='prefs_show_advanced'
628 dojoType=\"dijit.form.CheckBox\"
629 $checked
630 type=\"checkbox\"></input>
631 <label for='prefs_show_advanced'>" .
632 __("Show additional preferences") . "</label>";
633
699daf58
AD
634 global $pluginhost;
635 $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB_SECTION,
636 "hook_prefs_tab_section", "prefPrefsPrefsOutside");
637
de612e7a 638 print "</form>";
1395083e
AD
639 print '</div>'; # inner pane
640 print '</div>'; # border container
de612e7a
AD
641
642 print "</div>"; #pane
643
644 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Plugins')."\">";
645
646 print "<h2>".__("Plugins")."</h2>";
647
648 print_notice("You will need to reload Tiny Tiny RSS for plugin changes to take effect.");
649
650 print "<form dojoType=\"dijit.form.Form\" id=\"changePluginsForm\">";
651
652 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
653 evt.preventDefault();
654 if (this.validate()) {
655 notify_progress('Saving data...', true);
656
657 new Ajax.Request('backend.php', {
658 parameters: dojo.objectToQuery(this.getValues()),
659 onComplete: function(transport) {
660 notify('');
661 if (confirm(__('Selected plugins have been enabled. Reload?'))) {
662 window.location.reload();
663 }
664 } });
665
666 }
667 </script>";
668
669 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
670 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setplugins\">";
671
65d1e250 672 print "<table width='100%' class='prefPluginsList'>";
de612e7a
AD
673
674 print "<tr><td colspan='4'><h3>".__("System plugins")."</h3></td></tr>";
675
676 print "<tr class=\"title\">
677 <td width=\"5%\">&nbsp;</td>
678 <td width='10%'>".__('Plugin')."</td>
679 <td width=''>".__('Description')."</td>
680 <td width='5%'>".__('Version')."</td>
681 <td width='10%'>".__('Author')."</td></tr>";
682
683 $system_enabled = array_map("trim", explode(",", PLUGINS));
684 $user_enabled = array_map("trim", explode(",", get_pref($this->link, "_ENABLED_PLUGINS")));
685
686 $tmppluginhost = new PluginHost($link);
d2a421e3 687 $tmppluginhost->load_all($tmppluginhost::KIND_ALL);
de612e7a
AD
688
689 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
d2a421e3 690 $about = $plugin->about();
de612e7a 691
23be0bd3 692 if ($about[3] && strpos($name, "example") === FALSE) {
de612e7a
AD
693 if (in_array($name, $system_enabled)) {
694 $checked = "checked='1'";
695 } else {
696 $checked = "";
697 }
698
699 print "<tr>";
700
701 print "<td align='center'><input disabled='1'
702 dojoType=\"dijit.form.CheckBox\" $checked
703 type=\"checkbox\"></td>";
704
705 print "<td>$name</td>";
706 print "<td>" . htmlspecialchars($about[1]) . "</td>";
707 print "<td>" . htmlspecialchars(sprintf("%.2f", $about[0])) . "</td>";
708 print "<td>" . htmlspecialchars($about[2]) . "</td>";
709
710 print "</tr>";
711
712 }
713 }
714
715 print "<tr><td colspan='4'><h3>".__("User plugins")."</h3></td></tr>";
716
717 print "<tr class=\"title\">
718 <td width=\"5%\">&nbsp;</td>
719 <td width='10%'>".__('Plugin')."</td>
720 <td width=''>".__('Description')."</td>
721 <td width='5%'>".__('Version')."</td>
722 <td width='10%'>".__('Author')."</td></tr>";
723
724
725 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
d2a421e3 726 $about = $plugin->about();
de612e7a 727
23be0bd3 728 if (!$about[3] && strpos($name, "example") === FALSE) {
de612e7a
AD
729
730 if (in_array($name, $system_enabled)) {
731 $checked = "checked='1'";
732 $disabled = "disabled='1'";
65d1e250 733 $rowclass = '';
de612e7a
AD
734 } else if (in_array($name, $user_enabled)) {
735 $checked = "checked='1'";
736 $disabled = "";
65d1e250 737 $rowclass = "Selected";
de612e7a
AD
738 } else {
739 $checked = "";
740 $disabled = "";
65d1e250 741 $rowclass = '';
de612e7a
AD
742 }
743
65d1e250 744 print "<tr class='$rowclass'>";
de612e7a
AD
745
746 print "<td align='center'><input id='FPCHK-$name' name='plugins[]' value='$name' onclick='toggleSelectRow2(this);'
747 dojoType=\"dijit.form.CheckBox\" $checked $disabled
748 type=\"checkbox\"></td>";
749
65d1e250
AD
750 print "<td><label for='FPCHK-$name'>$name</label></td>";
751 print "<td><label for='FPCHK-$name'>" . htmlspecialchars($about[1]) . "</label></td>";
de612e7a
AD
752 print "<td>" . htmlspecialchars(sprintf("%.2f", $about[0])) . "</td>";
753 print "<td>" . htmlspecialchars($about[2]) . "</td>";
754
755 print "</tr>";
756
757
758
759 }
760
761 }
762
763 print "</table>";
764
765 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
766 __("Enable selected plugins")."</button></p>";
767
1395083e
AD
768 print "</form>";
769
770 print "</div>"; #pane
27211afe 771
6065f3ad
AD
772 global $pluginhost;
773 $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB,
774 "hook_prefs_tab", "prefPrefs");
775
1395083e
AD
776 print "</div>"; #container
777 }
27211afe 778
f9ebb32c
AD
779 function toggleAdvanced() {
780 $_SESSION["prefs_show_advanced"] = !$_SESSION["prefs_show_advanced"];
781 }
fb70f26e
AD
782
783 function otpqrcode() {
784 require_once "lib/otphp/vendor/base32.php";
785 require_once "lib/otphp/lib/otp.php";
786 require_once "lib/otphp/lib/totp.php";
787 require_once "lib/phpqrcode/phpqrcode.php";
788
973392b9 789 $result = db_query($this->link, "SELECT login,salt,otp_enabled
fb70f26e
AD
790 FROM ttrss_users
791 WHERE id = ".$_SESSION["uid"]);
792
793 $base32 = new Base32();
794
795 $login = db_fetch_result($result, 0, "login");
973392b9 796 $otp_enabled = sql_bool_to_bool(db_fetch_result($result, 0, "otp_enabled"));
fb70f26e 797
973392b9
AD
798 if (!$otp_enabled) {
799 $secret = $base32->encode(sha1(db_fetch_result($result, 0, "salt")));
800 $topt = new \OTPHP\TOTP($secret);
801 print QRcode::png($topt->provisioning_uri($login));
802 }
fb70f26e
AD
803 }
804
3ca8af7f
AD
805 function otpenable() {
806 $password = db_escape_string($_REQUEST["password"]);
3ca8af7f
AD
807 $enable_otp = $_REQUEST["enable_otp"] == "on";
808
0f28f81f
AD
809 global $pluginhost;
810 $authenticator = $pluginhost->get_plugin($_SESSION["auth_module"]);
811
3ca8af7f
AD
812 if ($authenticator->check_password($_SESSION["uid"], $password)) {
813
814 if ($enable_otp) {
815 db_query($this->link, "UPDATE ttrss_users SET otp_enabled = true WHERE
816 id = " . $_SESSION["uid"]);
817
818 print "OK";
819 }
820 } else {
821 print "ERROR: ".__("Incorrect password");
822 }
fb70f26e 823
3ca8af7f
AD
824 }
825
826 function otpdisable() {
827 $password = db_escape_string($_REQUEST["password"]);
828
0f28f81f
AD
829 global $pluginhost;
830 $authenticator = $pluginhost->get_plugin($_SESSION["auth_module"]);
3ca8af7f
AD
831
832 if ($authenticator->check_password($_SESSION["uid"], $password)) {
833
834 db_query($this->link, "UPDATE ttrss_users SET otp_enabled = false WHERE
fb70f26e 835 id = " . $_SESSION["uid"]);
3ca8af7f
AD
836
837 print "OK";
838 } else {
839 print "ERROR: ".__("Incorrect password");
fb70f26e 840 }
3ca8af7f 841
fb70f26e 842 }
de612e7a
AD
843
844 function setplugins() {
845 $plugins = join(",", $_REQUEST["plugins"]);
846
847 set_pref($this->link, "_ENABLED_PLUGINS", $plugins);
848 }
1395083e
AD
849}
850?>