3 class Pref_Prefs extends Handler_Protected {
5 private $pref_help = array();
6 private $pref_sections = array();
8 function csrf_ignore($method) {
9 $csrf_ignored = array("index", "updateself", "customizecss", "editprefprofiles");
11 return array_search($method, $csrf_ignored) !== false;
14 function __construct($args) {
15 parent::__construct($args);
17 $this->pref_sections = array(
24 $this->pref_help = array(
25 "ALLOW_DUPLICATE_POSTS" => array(__("Allow duplicate articles"), ""),
26 "BLACKLISTED_TAGS" => array(__("Blacklisted tags"), __("When auto-detecting tags in articles these tags will not be applied (comma-separated list).")),
27 "CDM_AUTO_CATCHUP" => array(__("Automatically mark articles as read"), __("This option enables marking articles as read automatically while you scroll article list.")),
28 "CDM_EXPANDED" => array(__("Automatically expand articles in combined mode"), ""),
29 "COMBINED_DISPLAY_MODE" => array(__("Combined feed display"), __("Display expanded list of feed articles, instead of separate displays for headlines and article content")),
30 "CONFIRM_FEED_CATCHUP" => array(__("Confirm marking feed as read"), ""),
31 "DEFAULT_ARTICLE_LIMIT" => array(__("Amount of articles to display at once"), ""),
32 "DEFAULT_UPDATE_INTERVAL" => array(__("Default feed update interval"), __("Shortest interval at which a feed will be checked for updates regardless of update method")),
33 "DIGEST_CATCHUP" => array(__("Mark articles in e-mail digest as read"), ""),
34 "DIGEST_ENABLE" => array(__("Enable e-mail digest"), __("This option enables sending daily digest of new (and unread) headlines on your configured e-mail address")),
35 "DIGEST_PREFERRED_TIME" => array(__("Try to send digests around specified time"), __("Uses UTC timezone")),
36 "ENABLE_API_ACCESS" => array(__("Enable API access"), __("Allows external clients to access this account through the API")),
37 "ENABLE_FEED_CATS" => array(__("Enable feed categories"), ""),
38 "FEEDS_SORT_BY_UNREAD" => array(__("Sort feeds by unread articles count"), ""),
39 "FRESH_ARTICLE_MAX_AGE" => array(__("Maximum age of fresh articles (in hours)"), ""),
40 "HIDE_READ_FEEDS" => array(__("Hide feeds with no unread articles"), ""),
41 "HIDE_READ_SHOWS_SPECIAL" => array(__("Show special feeds when hiding read feeds"), ""),
42 "LONG_DATE_FORMAT" => array(__("Long date format"), __("The syntax used is identical to the PHP <a href='http://php.net/manual/function.date.php'>date()</a> function.")),
43 "ON_CATCHUP_SHOW_NEXT_FEED" => array(__("On catchup show next feed"), __("Automatically open next feed with unread articles after marking one as read")),
44 "PURGE_OLD_DAYS" => array(__("Purge articles after this number of days (0 - disables)"), ""),
45 "PURGE_UNREAD_ARTICLES" => array(__("Purge unread articles"), ""),
46 "REVERSE_HEADLINES" => array(__("Reverse headline order (oldest first)"), ""),
47 "SHORT_DATE_FORMAT" => array(__("Short date format"), ""),
48 "SHOW_CONTENT_PREVIEW" => array(__("Show content preview in headlines list"), ""),
49 "SORT_HEADLINES_BY_FEED_DATE" => array(__("Sort headlines by feed date"), __("Use feed-specified date to sort headlines instead of local import date.")),
50 "SSL_CERT_SERIAL" => array(__("Login with an SSL certificate"), __("Click to register your SSL client certificate with tt-rss")),
51 "STRIP_IMAGES" => array(__("Do not embed images in articles"), ""),
52 "STRIP_UNSAFE_TAGS" => array(__("Strip unsafe tags from articles"), __("Strip all but most common HTML tags when reading articles.")),
53 "USER_STYLESHEET" => array(__("Customize stylesheet"), __("Customize CSS stylesheet to your liking")),
54 "USER_TIMEZONE" => array(__("Time zone"), ""),
55 "VFEED_GROUP_BY_FEED" => array(__("Group headlines in virtual feeds"), __("Special feeds, labels, and categories are grouped by originating feeds")),
56 "USER_LANGUAGE" => array(__("Language")),
57 "USER_CSS_THEME" => array(__("Theme"), __("Select one of the available CSS themes"))
61 function changepassword() {
63 $old_pw = $_POST["old_password"];
64 $new_pw = $_POST["new_password"];
65 $con_pw = $_POST["confirm_password"];
68 print "ERROR: ".__("Old password cannot be blank.");
73 print "ERROR: ".__("New password cannot be blank.");
77 if ($new_pw != $con_pw) {
78 print "ERROR: ".__("Entered passwords do not match.");
82 $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
84 if (method_exists($authenticator, "change_password")) {
85 print $authenticator->change_password($_SESSION["uid"], $old_pw, $new_pw);
87 print "ERROR: ".__("Function not supported by authentication module.");
91 function saveconfig() {
92 $boolean_prefs = explode(",", $_POST["boolean_prefs"]);
94 foreach ($boolean_prefs as $pref) {
95 if (!isset($_POST[$pref])) $_POST[$pref] = 'false';
100 foreach (array_keys($_POST) as $pref_name) {
102 $pref_name = $this->dbh->escape_string($pref_name);
103 $value = $this->dbh->escape_string($_POST[$pref_name]);
105 if ($pref_name == 'DIGEST_PREFERRED_TIME') {
106 if (get_pref('DIGEST_PREFERRED_TIME') != $value) {
108 $this->dbh->query("UPDATE ttrss_users SET
109 last_digest_sent = NULL WHERE id = " . $_SESSION['uid']);
114 if ($pref_name == "USER_LANGUAGE") {
115 if ($_SESSION["language"] != $value) {
120 set_pref($pref_name, $value);
124 print "PREFS_NEED_RELOAD";
126 print __("The configuration was saved.");
132 $pref_name = $this->dbh->escape_string($_REQUEST["pn"]);
134 $result = $this->dbh->query("SELECT help_text FROM ttrss_prefs
135 WHERE pref_name = '$pref_name'");
137 if ($this->dbh->num_rows($result) > 0) {
138 $help_text = $this->dbh->fetch_result($result, 0, "help_text");
141 printf(__("Unknown option: %s"), $pref_name);
145 function changeemail() {
147 $email = $this->dbh->escape_string($_POST["email"]);
148 $full_name = $this->dbh->escape_string($_POST["full_name"]);
150 $active_uid = $_SESSION["uid"];
152 $this->dbh->query("UPDATE ttrss_users SET email = '$email',
153 full_name = '$full_name' WHERE id = '$active_uid'");
155 print __("Your personal data has been saved.");
160 function resetconfig() {
162 $_SESSION["prefs_op_result"] = "reset-to-defaults";
164 if ($_SESSION["profile"]) {
165 $profile_qpart = "profile = '" . $_SESSION["profile"] . "'";
167 $profile_qpart = "profile IS NULL";
170 $this->dbh->query("DELETE FROM ttrss_user_prefs
171 WHERE $profile_qpart AND owner_uid = ".$_SESSION["uid"]);
173 initialize_user_prefs($_SESSION["uid"], $_SESSION["profile"]);
175 echo __("Your preferences are now set to default values.");
180 global $access_level_names;
182 $prefs_blacklist = array("STRIP_UNSAFE_TAGS", "REVERSE_HEADLINES",
183 "SORT_HEADLINES_BY_FEED_DATE", "DEFAULT_ARTICLE_LIMIT",
184 "FEEDS_SORT_BY_UNREAD");
186 /* "FEEDS_SORT_BY_UNREAD", "HIDE_READ_FEEDS", "REVERSE_HEADLINES" */
188 $profile_blacklist = array("ALLOW_DUPLICATE_POSTS", "PURGE_OLD_DAYS",
189 "PURGE_UNREAD_ARTICLES", "DIGEST_ENABLE", "DIGEST_CATCHUP",
190 "BLACKLISTED_TAGS", "ENABLE_API_ACCESS", "UPDATE_POST_ON_CHECKSUM_CHANGE",
191 "DEFAULT_UPDATE_INTERVAL", "USER_TIMEZONE", "SORT_HEADLINES_BY_FEED_DATE",
192 "SSL_CERT_SERIAL", "DIGEST_PREFERRED_TIME");
195 $_SESSION["prefs_op_result"] = "";
197 print "<div dojoType=\"dijit.layout.AccordionContainer\" region=\"center\">";
198 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Personal data / Authentication')."\">";
200 print "<form dojoType=\"dijit.form.Form\" id=\"changeUserdataForm\">";
202 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
203 evt.preventDefault();
204 if (this.validate()) {
205 notify_progress('Saving data...', true);
207 new Ajax.Request('backend.php', {
208 parameters: dojo.objectToQuery(this.getValues()),
209 onComplete: function(transport) {
210 notify_callback2(transport);
216 print "<table width=\"100%\" class=\"prefPrefsList\">";
218 print "<h2>" . __("Personal data") . "</h2>";
220 $result = $this->dbh->query("SELECT email,full_name,otp_enabled,
221 access_level FROM ttrss_users
222 WHERE id = ".$_SESSION["uid"]);
224 $email = htmlspecialchars($this->dbh->fetch_result($result, 0, "email"));
225 $full_name = htmlspecialchars($this->dbh->fetch_result($result, 0, "full_name"));
226 $otp_enabled = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "otp_enabled"));
228 print "<tr><td width=\"40%\">".__('Full name')."</td>";
229 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" name=\"full_name\" required=\"1\"
230 value=\"$full_name\"></td></tr>";
232 print "<tr><td width=\"40%\">".__('E-mail')."</td>";
233 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" name=\"email\" required=\"1\" value=\"$email\"></td></tr>";
235 if (!SINGLE_USER_MODE && !$_SESSION["hide_hello"]) {
237 $access_level = $this->dbh->fetch_result($result, 0, "access_level");
238 print "<tr><td width=\"40%\">".__('Access level')."</td>";
239 print "<td>" . $access_level_names[$access_level] . "</td></tr>";
244 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
245 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"changeemail\">";
247 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
248 __("Save data")."</button>";
252 if ($_SESSION["auth_module"]) {
253 $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
255 $authenticator = false;
258 if ($authenticator && method_exists($authenticator, "change_password")) {
260 print "<h2>" . __("Password") . "</h2>";
262 $result = $this->dbh->query("SELECT id FROM ttrss_users
263 WHERE id = ".$_SESSION["uid"]." AND pwd_hash
264 = 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8'");
266 if ($this->dbh->num_rows($result) != 0) {
267 print format_warning(__("Your password is at default value, please change it."), "default_pass_warning");
270 print "<form dojoType=\"dijit.form.Form\">";
272 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
273 evt.preventDefault();
274 if (this.validate()) {
275 notify_progress('Changing password...', true);
277 new Ajax.Request('backend.php', {
278 parameters: dojo.objectToQuery(this.getValues()),
279 onComplete: function(transport) {
281 if (transport.responseText.indexOf('ERROR: ') == 0) {
282 notify_error(transport.responseText.replace('ERROR: ', ''));
284 notify_info(transport.responseText);
285 var warn = $('default_pass_warning');
286 if (warn) Element.hide(warn);
294 print_notice(__("Changing your current password will disable OTP."));
297 print "<table width=\"100%\" class=\"prefPrefsList\">";
299 print "<tr><td width=\"40%\">".__("Old password")."</td>";
300 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\" name=\"old_password\"></td></tr>";
302 print "<tr><td width=\"40%\">".__("New password")."</td>";
304 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
305 name=\"new_password\"></td></tr>";
307 print "<tr><td width=\"40%\">".__("Confirm password")."</td>";
309 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\" name=\"confirm_password\"></td></tr>";
313 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
314 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"changepassword\">";
316 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
317 __("Change password")."</button>";
321 if ($_SESSION["auth_module"] == "auth_internal") {
323 print "<h2>" . __("One time passwords / Authenticator") . "</h2>";
327 print_notice(__("One time passwords are currently enabled. Enter your current password below to disable."));
329 print "<form dojoType=\"dijit.form.Form\">";
331 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
332 evt.preventDefault();
333 if (this.validate()) {
334 notify_progress('Disabling OTP', true);
336 new Ajax.Request('backend.php', {
337 parameters: dojo.objectToQuery(this.getValues()),
338 onComplete: function(transport) {
340 if (transport.responseText.indexOf('ERROR: ') == 0) {
341 notify_error(transport.responseText.replace('ERROR: ', ''));
343 window.location.reload();
350 print "<table width=\"100%\" class=\"prefPrefsList\">";
352 print "<tr><td width=\"40%\">".__("Enter your password")."</td>";
354 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
355 name=\"password\"></td></tr>";
359 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
360 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"otpdisable\">";
362 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
363 __("Disable OTP")."</button>";
367 } else if (function_exists("imagecreatefromstring")) {
369 print_warning(__("You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP."));
371 print "<p>".__("Scan the following code by the Authenticator application:")."</p>";
373 $csrf_token = $_SESSION["csrf_token"];
375 print "<img src=\"backend.php?op=pref-prefs&method=otpqrcode&csrf_token=$csrf_token\">";
377 print "<form dojoType=\"dijit.form.Form\" id=\"changeOtpForm\">";
379 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
380 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"otpenable\">";
382 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
383 evt.preventDefault();
384 if (this.validate()) {
385 notify_progress('Saving data...', true);
387 new Ajax.Request('backend.php', {
388 parameters: dojo.objectToQuery(this.getValues()),
389 onComplete: function(transport) {
391 if (transport.responseText.indexOf('ERROR:') == 0) {
392 notify_error(transport.responseText.replace('ERROR:', ''));
394 window.location.reload();
401 print "<table width=\"100%\" class=\"prefPrefsList\">";
403 print "<tr><td width=\"40%\">".__("Enter your password")."</td>";
405 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
406 name=\"password\"></td></tr>";
408 print "<tr><td width=\"40%\">".__("Enter the generated one time password")."</td>";
410 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" autocomplete=\"off\"
412 name=\"otp\"></td></tr>";
414 print "<tr><td colspan=\"2\">";
416 print "</td></tr><tr><td colspan=\"2\">";
421 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
422 __("Enable OTP")."</button>";
428 print_notice(__("PHP GD functions are required for OTP support."));
435 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
436 "hook_prefs_tab_section", "prefPrefsAuth");
438 print "</div>"; #pane
440 print "<div dojoType=\"dijit.layout.AccordionPane\" selected=\"true\" title=\"".__('Preferences')."\">";
442 print "<form dojoType=\"dijit.form.Form\" id=\"changeSettingsForm\">";
444 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt, quit\">
445 if (evt) evt.preventDefault();
446 if (this.validate()) {
447 console.log(dojo.objectToQuery(this.getValues()));
449 new Ajax.Request('backend.php', {
450 parameters: dojo.objectToQuery(this.getValues()),
451 onComplete: function(transport) {
452 var msg = transport.responseText;
456 if (msg == 'PREFS_NEED_RELOAD') {
457 window.location.reload();
466 print '<div dojoType="dijit.layout.BorderContainer" gutters="false">';
468 print '<div dojoType="dijit.layout.ContentPane" region="center" style="overflow-y : auto">';
470 if ($_SESSION["profile"]) {
471 print_notice(__("Some preferences are only available in default profile."));
474 if ($_SESSION["profile"]) {
475 initialize_user_prefs($_SESSION["uid"], $_SESSION["profile"]);
476 $profile_qpart = "profile = '" . $_SESSION["profile"] . "'";
478 initialize_user_prefs($_SESSION["uid"]);
479 $profile_qpart = "profile IS NULL";
482 /* if ($_SESSION["prefs_show_advanced"])
483 $access_query = "true";
485 $access_query = "(access_level = 0 AND section_id != 3)"; */
487 $access_query = 'true';
489 $result = $this->dbh->query("SELECT DISTINCT
490 ttrss_user_prefs.pref_name,value,type_name,
491 ttrss_prefs_sections.order_id,
493 FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections,ttrss_user_prefs
494 WHERE type_id = ttrss_prefs_types.id AND
496 section_id = ttrss_prefs_sections.id AND
497 ttrss_user_prefs.pref_name = ttrss_prefs.pref_name AND
499 owner_uid = ".$_SESSION["uid"]."
500 ORDER BY ttrss_prefs_sections.order_id,pref_name");
504 $active_section = "";
506 $listed_boolean_prefs = array();
508 while ($line = $this->dbh->fetch_assoc($result)) {
510 if (in_array($line["pref_name"], $prefs_blacklist)) {
514 $type_name = $line["type_name"];
515 $pref_name = $line["pref_name"];
516 $section_name = $this->getSectionName($line["section_id"]);
517 $value = $line["value"];
519 $short_desc = $this->getShortDesc($pref_name);
520 $help_text = $this->getHelpText($pref_name);
522 if (!$short_desc) continue;
524 if ($_SESSION["profile"] && in_array($line["pref_name"],
525 $profile_blacklist)) {
529 if ($active_section != $line["section_id"]) {
531 if ($active_section != "") {
535 print "<table width=\"100%\" class=\"prefPrefsList\">";
537 $active_section = $line["section_id"];
539 print "<tr><td colspan=\"3\"><h3>".$section_name."</h3></td></tr>";
546 print "<td width=\"40%\" class=\"prefName\" id=\"$pref_name\">";
547 print "<label for='CB_$pref_name'>";
551 if ($help_text) print "<div class=\"prefHelp\">".__($help_text)."</div>";
555 print "<td class=\"prefValue\">";
557 if ($pref_name == "USER_LANGUAGE") {
558 print_select_hash($pref_name, $value, get_translations(),
559 "style='width : 220px; margin : 0px' dojoType='dijit.form.Select'");
561 } else if ($pref_name == "USER_TIMEZONE") {
563 $timezones = explode("\n", file_get_contents("lib/timezones.txt"));
565 print_select($pref_name, $value, $timezones, 'dojoType="dijit.form.FilteringSelect"');
566 } else if ($pref_name == "USER_STYLESHEET") {
568 print "<button dojoType=\"dijit.form.Button\"
569 onclick=\"customizeCSS()\">" . __('Customize') . "</button>";
571 } else if ($pref_name == "USER_CSS_THEME") {
573 $themes = array_merge(glob("themes/*.css"), glob("themes.local/*.css"));
574 $themes = array_map("basename", $themes);
575 $themes = array_filter($themes, "theme_valid");
578 print_select($pref_name, $value, $themes,
579 'dojoType="dijit.form.Select"');
582 } else if ($pref_name == "DEFAULT_UPDATE_INTERVAL") {
584 global $update_intervals_nodefault;
586 print_select_hash($pref_name, $value, $update_intervals_nodefault,
587 'dojoType="dijit.form.Select"');
589 } else if ($type_name == "bool") {
591 array_push($listed_boolean_prefs, $pref_name);
593 $checked = ($value == "true") ? "checked=\"checked\"" : "";
595 if ($pref_name == "PURGE_UNREAD_ARTICLES" && FORCE_ARTICLE_PURGE != 0) {
596 $disabled = "disabled=\"1\"";
597 $checked = "checked=\"checked\"";
602 print "<input type='checkbox' name='$pref_name' $checked $disabled
603 dojoType='dijit.form.CheckBox' id='CB_$pref_name' value='1'>";
605 } else if (array_search($pref_name, array('FRESH_ARTICLE_MAX_AGE',
606 'PURGE_OLD_DAYS', 'LONG_DATE_FORMAT', 'SHORT_DATE_FORMAT')) !== false) {
608 $regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
610 if ($pref_name == "PURGE_OLD_DAYS" && FORCE_ARTICLE_PURGE != 0) {
611 $disabled = "disabled=\"1\"";
612 $value = FORCE_ARTICLE_PURGE;
617 print "<input dojoType=\"dijit.form.ValidationTextBox\"
618 required=\"1\" $regexp $disabled
619 name=\"$pref_name\" value=\"$value\">";
621 } else if ($pref_name == "SSL_CERT_SERIAL") {
623 print "<input dojoType=\"dijit.form.ValidationTextBox\"
624 id=\"SSL_CERT_SERIAL\" readonly=\"1\"
625 name=\"$pref_name\" value=\"$value\">";
627 $cert_serial = htmlspecialchars(get_ssl_certificate_id());
628 $has_serial = ($cert_serial) ? "false" : "true";
630 print " <button dojoType=\"dijit.form.Button\" disabled=\"$has_serial\"
631 onclick=\"insertSSLserial('$cert_serial')\">" .
632 __('Register') . "</button>";
634 print " <button dojoType=\"dijit.form.Button\"
635 onclick=\"insertSSLserial('')\">" .
636 __('Clear') . "</button>";
638 } else if ($pref_name == 'DIGEST_PREFERRED_TIME') {
639 print "<input dojoType=\"dijit.form.ValidationTextBox\"
640 id=\"$pref_name\" regexp=\"[012]?\d:\d\d\" placeHolder=\"12:00\"
641 name=\"$pref_name\" value=\"$value\"><div class=\"insensitive\">".
642 T_sprintf("Current server time: %s (UTC)", date("H:i")) . "</div>";
644 $regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
646 print "<input dojoType=\"dijit.form.ValidationTextBox\"
648 name=\"$pref_name\" value=\"$value\">";
660 $listed_boolean_prefs = htmlspecialchars(join(",", $listed_boolean_prefs));
662 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"boolean_prefs\" value=\"$listed_boolean_prefs\">";
664 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
665 "hook_prefs_tab_section", "prefPrefsPrefsInside");
667 print '</div>'; # inside pane
668 print '<div dojoType="dijit.layout.ContentPane" region="bottom">';
670 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
671 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"saveconfig\">";
673 print "<div dojoType=\"dijit.form.ComboButton\" type=\"submit\">
674 <span>".__('Save configuration')."</span>
675 <div dojoType=\"dijit.DropDownMenu\">
676 <div dojoType=\"dijit.MenuItem\"
677 onclick=\"dijit.byId('changeSettingsForm').onSubmit(null, true)\">".
678 __("Save and exit preferences")."</div>
682 print "<button dojoType=\"dijit.form.Button\" onclick=\"return editProfiles()\">".
683 __('Manage profiles')."</button> ";
685 print "<button dojoType=\"dijit.form.Button\" onclick=\"return validatePrefsReset()\">".
686 __('Reset to defaults')."</button>";
690 /* $checked = $_SESSION["prefs_show_advanced"] ? "checked='1'" : "";
692 print "<input onclick='toggleAdvancedPrefs()'
693 id='prefs_show_advanced'
694 dojoType=\"dijit.form.CheckBox\"
696 type=\"checkbox\"></input>
697 <label for='prefs_show_advanced'>" .
698 __("Show additional preferences") . "</label>"; */
700 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
701 "hook_prefs_tab_section", "prefPrefsPrefsOutside");
704 print '</div>'; # inner pane
705 print '</div>'; # border container
707 print "</div>"; #pane
709 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Plugins')."\">";
711 print "<p>" . __("You will need to reload Tiny Tiny RSS for plugin changes to take effect.") . "</p>";
713 print_notice(__("Download more plugins at tt-rss.org <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/forum/viewforum.php?f=22\">forums</a> or <a target=\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins\">wiki</a>."));
715 print "<form dojoType=\"dijit.form.Form\" id=\"changePluginsForm\">";
717 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
718 evt.preventDefault();
719 if (this.validate()) {
720 notify_progress('Saving data...', true);
722 new Ajax.Request('backend.php', {
723 parameters: dojo.objectToQuery(this.getValues()),
724 onComplete: function(transport) {
726 if (confirm(__('Selected plugins have been enabled. Reload?'))) {
727 window.location.reload();
734 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
735 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setplugins\">";
737 print "<table width='100%' class='prefPluginsList'>";
739 print "<tr><td colspan='4'><h3>".__("System plugins")."</h3></td></tr>";
741 print "<tr class=\"title\">
742 <td width=\"5%\"> </td>
743 <td width='10%'>".__('Plugin')."</td>
744 <td width=''>".__('Description')."</td>
745 <td width='5%'>".__('Version')."</td>
746 <td width='10%'>".__('Author')."</td></tr>";
748 $system_enabled = array_map("trim", explode(",", PLUGINS));
749 $user_enabled = array_map("trim", explode(",", get_pref("_ENABLED_PLUGINS")));
751 $tmppluginhost = new PluginHost();
752 $tmppluginhost->load_all($tmppluginhost::KIND_ALL, $_SESSION["uid"]);
753 $tmppluginhost->load_data(true);
755 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
756 $about = $plugin->about();
758 if ($about[3] && strpos($name, "example") === FALSE) {
759 if (in_array($name, $system_enabled)) {
760 $checked = "checked='1'";
767 print "<td align='center'><input disabled='1'
768 dojoType=\"dijit.form.CheckBox\" $checked
769 type=\"checkbox\"></td>";
771 $plugin_icon = $checked ? "plugin.png" : "plugin_disabled.png";
773 print "<td><label><img src='images/$plugin_icon' alt=''> $name</label></td>";
774 print "<td>" . htmlspecialchars($about[1]);
776 print " — <a target=\"_blank\" class=\"visibleLink\"
777 href=\"".htmlspecialchars($about[4])."\">".__("more info")."</a>";
780 print "<td>" . htmlspecialchars(sprintf("%.2f", $about[0])) . "</td>";
781 print "<td>" . htmlspecialchars($about[2]) . "</td>";
783 if (count($tmppluginhost->get_all($plugin)) > 0) {
784 if (in_array($name, $system_enabled)) {
785 print "<td><a href='#' onclick=\"clearPluginData('$name')\"
786 class='visibleLink'>".__("Clear data")."</a></td>";
795 print "<tr><td colspan='4'><h3>".__("User plugins")."</h3></td></tr>";
797 print "<tr class=\"title\">
798 <td width=\"5%\"> </td>
799 <td width='10%'>".__('Plugin')."</td>
800 <td width=''>".__('Description')."</td>
801 <td width='5%'>".__('Version')."</td>
802 <td width='10%'>".__('Author')."</td></tr>";
805 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
806 $about = $plugin->about();
808 if (!$about[3] && strpos($name, "example") === FALSE) {
810 if (in_array($name, $system_enabled)) {
811 $checked = "checked='1'";
812 $disabled = "disabled='1'";
814 } else if (in_array($name, $user_enabled)) {
815 $checked = "checked='1'";
817 $rowclass = "Selected";
824 print "<tr class='$rowclass'>";
826 $plugin_icon = $checked ? "plugin.png" : "plugin_disabled.png";
828 print "<td align='center'><input id='FPCHK-$name' name='plugins[]' value='$name' onclick='toggleSelectRow2(this);'
829 dojoType=\"dijit.form.CheckBox\" $checked $disabled
830 type=\"checkbox\"></td>";
832 print "<td><label for='FPCHK-$name'><img src='images/$plugin_icon' alt=''> $name</label></td>";
833 print "<td><label for='FPCHK-$name'>" . htmlspecialchars($about[1]) . "</label>";
835 print " — <a target=\"_blank\" class=\"visibleLink\"
836 href=\"".htmlspecialchars($about[4])."\">".__("more info")."</a>";
840 print "<td>" . htmlspecialchars(sprintf("%.2f", $about[0])) . "</td>";
841 print "<td>" . htmlspecialchars($about[2]) . "</td>";
843 if (count($tmppluginhost->get_all($plugin)) > 0) {
844 if (in_array($name, $system_enabled) || in_array($name, $user_enabled)) {
845 print "<td><a href='#' onclick=\"clearPluginData('$name')\" class='visibleLink'>".__("Clear data")."</a></td>";
859 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
860 __("Enable selected plugins")."</button></p>";
864 print "</div>"; #pane
866 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB,
867 "hook_prefs_tab", "prefPrefs");
869 print "</div>"; #container
872 function toggleAdvanced() {
873 $_SESSION["prefs_show_advanced"] = !$_SESSION["prefs_show_advanced"];
876 function otpqrcode() {
877 require_once "lib/otphp/vendor/base32.php";
878 require_once "lib/otphp/lib/otp.php";
879 require_once "lib/otphp/lib/totp.php";
880 require_once "lib/phpqrcode/phpqrcode.php";
882 $result = $this->dbh->query("SELECT login,salt,otp_enabled
884 WHERE id = ".$_SESSION["uid"]);
886 $base32 = new Base32();
888 $login = $this->dbh->fetch_result($result, 0, "login");
889 $otp_enabled = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "otp_enabled"));
892 $secret = $base32->encode(sha1($this->dbh->fetch_result($result, 0, "salt")));
893 print QRcode::png("otpauth://totp/".urlencode($login).
894 "?secret=$secret&issuer=".urlencode("Tiny Tiny RSS"));
899 function otpenable() {
900 require_once "lib/otphp/vendor/base32.php";
901 require_once "lib/otphp/lib/otp.php";
902 require_once "lib/otphp/lib/totp.php";
904 $password = $_REQUEST["password"];
905 $otp = $_REQUEST["otp"];
907 $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
909 if ($authenticator->check_password($_SESSION["uid"], $password)) {
911 $result = $this->dbh->query("SELECT salt
913 WHERE id = ".$_SESSION["uid"]);
915 $base32 = new Base32();
917 $secret = $base32->encode(sha1($this->dbh->fetch_result($result, 0, "salt")));
918 $topt = new \OTPHP\TOTP($secret);
920 $otp_check = $topt->now();
922 if ($otp == $otp_check) {
923 $this->dbh->query("UPDATE ttrss_users SET otp_enabled = true WHERE
924 id = " . $_SESSION["uid"]);
928 print "ERROR:".__("Incorrect one time password");
931 print "ERROR:".__("Incorrect password");
936 function otpdisable() {
937 $password = $this->dbh->escape_string($_REQUEST["password"]);
939 $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
941 if ($authenticator->check_password($_SESSION["uid"], $password)) {
943 $this->dbh->query("UPDATE ttrss_users SET otp_enabled = false WHERE
944 id = " . $_SESSION["uid"]);
948 print "ERROR: ".__("Incorrect password");
953 function setplugins() {
954 if (is_array($_REQUEST["plugins"]))
955 $plugins = join(",", $_REQUEST["plugins"]);
959 set_pref("_ENABLED_PLUGINS", $plugins);
962 function clearplugindata() {
963 $name = $this->dbh->escape_string($_REQUEST["name"]);
965 PluginHost::getInstance()->clear_data(PluginHost::getInstance()->get_plugin($name));
968 function customizeCSS() {
969 $value = get_pref("USER_STYLESHEET");
971 $value = str_replace("<br/>", "\n", $value);
973 print_notice(T_sprintf("You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">This file</a> can be used as a baseline.", "css/tt-rss.css"));
975 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
976 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setpref\">";
977 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"key\" value=\"USER_STYLESHEET\">";
979 print "<table width='100%'><tr><td>";
980 print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
981 style='font-size : 12px; width : 100%; height: 200px;'
982 placeHolder='body#ttrssMain { font-size : 14px; };'
983 name='value'>$value</textarea>";
984 print "</td></tr></table>";
986 print "<div class='dlgButtons'>";
987 print "<button dojoType=\"dijit.form.Button\"
988 onclick=\"dijit.byId('cssEditDlg').execute()\">".__('Save')."</button> ";
989 print "<button dojoType=\"dijit.form.Button\"
990 onclick=\"dijit.byId('cssEditDlg').hide()\">".__('Cancel')."</button>";
995 function editPrefProfiles() {
996 print "<div dojoType=\"dijit.Toolbar\">";
998 print "<div dojoType=\"dijit.form.DropDownButton\">".
999 "<span>" . __('Select')."</span>";
1000 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1001 print "<div onclick=\"selectTableRows('prefFeedProfileList', 'all')\"
1002 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1003 print "<div onclick=\"selectTableRows('prefFeedProfileList', 'none')\"
1004 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1005 print "</div></div>";
1007 print "<div style=\"float : right\">";
1009 print "<input name=\"newprofile\" dojoType=\"dijit.form.ValidationTextBox\"
1011 <button dojoType=\"dijit.form.Button\"
1012 onclick=\"dijit.byId('profileEditDlg').addProfile()\">".
1013 __('Create profile')."</button></div>";
1017 $result = $this->dbh->query("SELECT title,id FROM ttrss_settings_profiles
1018 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1020 print "<div class=\"prefProfileHolder\">";
1022 print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";
1024 print "<table width=\"100%\" class=\"prefFeedProfileList\"
1025 cellspacing=\"0\" id=\"prefFeedProfileList\">";
1027 print "<tr class=\"placeholder\" id=\"FCATR-0\">"; #odd
1029 print "<td width='5%' align='center'><input
1031 onclick='toggleSelectRow2(this);'
1032 dojoType=\"dijit.form.CheckBox\"
1033 type=\"checkbox\"></td>";
1035 if (!$_SESSION["profile"]) {
1036 $is_active = __("(active)");
1041 print "<td><span>" .
1042 __("Default profile") . " $is_active</span></td>";
1048 while ($line = $this->dbh->fetch_assoc($result)) {
1050 $profile_id = $line["id"];
1051 $this_row_id = "id=\"FCATR-$profile_id\"";
1053 print "<tr class=\"placeholder\" $this_row_id>";
1055 $edit_title = htmlspecialchars($line["title"]);
1057 print "<td width='5%' align='center'><input
1058 onclick='toggleSelectRow2(this);'
1059 id='FCATC-$profile_id'
1060 dojoType=\"dijit.form.CheckBox\"
1061 type=\"checkbox\"></td>";
1063 if ($_SESSION["profile"] == $line["id"]) {
1064 $is_active = __("(active)");
1069 print "<td><span dojoType=\"dijit.InlineEditBox\"
1070 width=\"300px\" autoSave=\"false\"
1071 profile-id=\"$profile_id\">" . $edit_title .
1072 "<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
1076 content: {op: 'rpc', method: 'saveprofile',
1078 id: this.srcNodeRef.getAttribute('profile-id')},
1079 load: function(response) {
1080 elem.attr('value', response);
1084 </span> $is_active</td>";
1095 print "<div class='dlgButtons'>
1096 <div style='float : left'>
1097 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').removeSelected()\">".
1098 __('Remove selected profiles')."</button>
1099 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').activateProfile()\">".
1100 __('Activate profile')."</button>
1103 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').hide()\">".
1104 __('Close this window')."</button>";
1109 private function getShortDesc($pref_name) {
1110 if (isset($this->pref_help[$pref_name])) {
1111 return $this->pref_help[$pref_name][0];
1116 private function getHelpText($pref_name) {
1117 if (isset($this->pref_help[$pref_name])) {
1118 return $this->pref_help[$pref_name][1];
1123 private function getSectionName($id) {
1124 if (isset($this->pref_sections[$id])) {
1125 return $this->pref_sections[$id];