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