]> git.wh0rd.org Git - tt-rss.git/blob - classes/pref/prefs.php
32071e3b31680ff00a89b215650babb7467d6cd8
[tt-rss.git] / classes / pref / prefs.php
1 <?php
2
3 class Pref_Prefs extends Handler_Protected {
4
5         private $pref_help = array();
6         private $pref_sections = array();
7
8         function csrf_ignore($method) {
9                 $csrf_ignored = array("index", "updateself", "customizecss", "editprefprofiles");
10
11                 return array_search($method, $csrf_ignored) !== false;
12         }
13
14         function __construct($args) {
15                 parent::__construct($args);
16
17                 $this->pref_sections = array(
18                         1 => __('General'),
19                         2 => __('Interface'),
20                         3 => __('Advanced'),
21                         4 => __('Digest')
22                 );
23
24                 $this->pref_help = array(
25                         "ALLOW_DUPLICATE_POSTS" => array(__("Allow duplicate articles"), ""),
26                         "AUTO_ASSIGN_LABELS" => array(__("Assign articles to labels automatically"), ""),
27                         "BLACKLISTED_TAGS" => array(__("Blacklisted tags"), __("When auto-detecting tags in articles these tags will not be applied (comma-separated list).")),
28                         "CDM_AUTO_CATCHUP" => array(__("Automatically mark articles as read"), __("This option enables marking articles as read automatically while you scroll article list.")),
29                         "CDM_EXPANDED" => array(__("Automatically expand articles in combined mode"), ""),
30                         "COMBINED_DISPLAY_MODE" => array(__("Combined feed display"), __("Display expanded list of feed articles, instead of separate displays for headlines and article content")),
31                         "CONFIRM_FEED_CATCHUP" => array(__("Confirm marking feed as read"), ""),
32                         "DEFAULT_ARTICLE_LIMIT" => array(__("Amount of articles to display at once"), ""),
33                         "DEFAULT_UPDATE_INTERVAL" => array(__("Default feed update interval"), __("Shortest interval at which a feed will be checked for updates regardless of update method")),
34                         "DIGEST_CATCHUP" => array(__("Mark articles in e-mail digest as read"), ""),
35                         "DIGEST_ENABLE" => array(__("Enable e-mail digest"), __("This option enables sending daily digest of new (and unread) headlines on your configured e-mail address")),
36                         "DIGEST_PREFERRED_TIME" => array(__("Try to send digests around specified time"), __("Uses UTC timezone")),
37                         "ENABLE_API_ACCESS" => array(__("Enable API access"), __("Allows external clients to access this account through the API")),
38                         "ENABLE_FEED_CATS" => array(__("Enable feed categories"), ""),
39                         "FEEDS_SORT_BY_UNREAD" => array(__("Sort feeds by unread articles count"), ""),
40                         "FRESH_ARTICLE_MAX_AGE" => array(__("Maximum age of fresh articles (in hours)"), ""),
41                         "HIDE_READ_FEEDS" => array(__("Hide feeds with no unread articles"), ""),
42                         "HIDE_READ_SHOWS_SPECIAL" => array(__("Show special feeds when hiding read feeds"), ""),
43                         "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.")),
44                         "ON_CATCHUP_SHOW_NEXT_FEED" => array(__("On catchup show next feed"), __("Automatically open next feed with unread articles after marking one as read")),
45                         "PURGE_OLD_DAYS" => array(__("Purge articles after this number of days (0 - disables)"), ""),
46                         "PURGE_UNREAD_ARTICLES" => array(__("Purge unread articles"), ""),
47                         "REVERSE_HEADLINES" => array(__("Reverse headline order (oldest first)"), ""),
48                         "SHORT_DATE_FORMAT" => array(__("Short date format"), ""),
49                         "SHOW_CONTENT_PREVIEW" => array(__("Show content preview in headlines list"), ""),
50                         "SORT_HEADLINES_BY_FEED_DATE" => array(__("Sort headlines by feed date"), __("Use feed-specified date to sort headlines instead of local import date.")),
51                         "SSL_CERT_SERIAL" => array(__("Login with an SSL certificate"), __("Click to register your SSL client certificate with tt-rss")),
52                         "STRIP_IMAGES" => array(__("Do not embed images in articles"), ""),
53                         "STRIP_UNSAFE_TAGS" => array(__("Strip unsafe tags from articles"), __("Strip all but most common HTML tags when reading articles.")),
54                         "USER_STYLESHEET" => array(__("Customize stylesheet"), __("Customize CSS stylesheet to your liking")),
55                         "USER_TIMEZONE" => array(__("Time zone"), ""),
56                         "VFEED_GROUP_BY_FEED" => array(__("Group headlines in virtual feeds"), __("Special feeds, labels, and categories are grouped by originating feeds")),
57                         "USER_LANGUAGE" => array(__("Language")),
58                         "USER_CSS_THEME" => array(__("Theme"), __("Select one of the available CSS themes"))
59                 );
60         }
61
62         function changepassword() {
63
64                 $old_pw = $_POST["old_password"];
65                 $new_pw = $_POST["new_password"];
66                 $con_pw = $_POST["confirm_password"];
67
68                 if ($old_pw == "") {
69                         print "ERROR: ".__("Old password cannot be blank.");
70                         return;
71                 }
72
73                 if ($new_pw == "") {
74                         print "ERROR: ".__("New password cannot be blank.");
75                         return;
76                 }
77
78                 if ($new_pw != $con_pw) {
79                         print "ERROR: ".__("Entered passwords do not match.");
80                         return;
81                 }
82
83                 $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
84
85                 if (method_exists($authenticator, "change_password")) {
86                         print $authenticator->change_password($_SESSION["uid"], $old_pw, $new_pw);
87                 } else {
88                         print "ERROR: ".__("Function not supported by authentication module.");
89                 }
90         }
91
92         function saveconfig() {
93                 $boolean_prefs = explode(",", $_POST["boolean_prefs"]);
94
95                 foreach ($boolean_prefs as $pref) {
96                         if (!isset($_POST[$pref])) $_POST[$pref] = 'false';
97                 }
98
99                 $need_reload = false;
100
101                 foreach (array_keys($_POST) as $pref_name) {
102
103                         $pref_name = $this->dbh->escape_string($pref_name);
104                         $value = $this->dbh->escape_string($_POST[$pref_name]);
105
106                         if ($pref_name == 'DIGEST_PREFERRED_TIME') {
107                                 if (get_pref('DIGEST_PREFERRED_TIME') != $value) {
108
109                                         $this->dbh->query("UPDATE ttrss_users SET
110                                                 last_digest_sent = NULL WHERE id = " . $_SESSION['uid']);
111
112                                 }
113                         }
114
115                         if ($pref_name == "USER_LANGUAGE") {
116                                 if ($_SESSION["language"] != $value) {
117                                         $need_reload = true;
118                                 }
119                         }
120
121                         set_pref($pref_name, $value);
122                 }
123
124                 if ($need_reload) {
125                         print "PREFS_NEED_RELOAD";
126                 } else {
127                         print __("The configuration was saved.");
128                 }
129         }
130
131         function getHelp() {
132
133                 $pref_name = $this->dbh->escape_string($_REQUEST["pn"]);
134
135                 $result = $this->dbh->query("SELECT help_text FROM ttrss_prefs
136                         WHERE pref_name = '$pref_name'");
137
138                 if ($this->dbh->num_rows($result) > 0) {
139                         $help_text = $this->dbh->fetch_result($result, 0, "help_text");
140                         print $help_text;
141                 } else {
142                         printf(__("Unknown option: %s"), $pref_name);
143                 }
144         }
145
146         function changeemail() {
147
148                 $email = $this->dbh->escape_string($_POST["email"]);
149                 $full_name = $this->dbh->escape_string($_POST["full_name"]);
150
151                 $active_uid = $_SESSION["uid"];
152
153                 $this->dbh->query("UPDATE ttrss_users SET email = '$email',
154                         full_name = '$full_name' WHERE id = '$active_uid'");
155
156                 print __("Your personal data has been saved.");
157
158                 return;
159         }
160
161         function resetconfig() {
162
163                 $_SESSION["prefs_op_result"] = "reset-to-defaults";
164
165                 if ($_SESSION["profile"]) {
166                         $profile_qpart = "profile = '" . $_SESSION["profile"] . "'";
167                 } else {
168                         $profile_qpart = "profile IS NULL";
169                 }
170
171                 $this->dbh->query("DELETE FROM ttrss_user_prefs
172                         WHERE $profile_qpart AND owner_uid = ".$_SESSION["uid"]);
173
174                 initialize_user_prefs($_SESSION["uid"], $_SESSION["profile"]);
175
176                 echo __("Your preferences are now set to default values.");
177         }
178
179         function index() {
180
181                 global $access_level_names;
182
183                 $prefs_blacklist = array("STRIP_UNSAFE_TAGS", "REVERSE_HEADLINES",
184                         "SORT_HEADLINES_BY_FEED_DATE", "DEFAULT_ARTICLE_LIMIT");
185
186                 /* "FEEDS_SORT_BY_UNREAD", "HIDE_READ_FEEDS", "REVERSE_HEADLINES" */
187
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");
193
194
195                 $_SESSION["prefs_op_result"] = "";
196
197                 print "<div dojoType=\"dijit.layout.AccordionContainer\" region=\"center\">";
198                 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Personal data / Authentication')."\">";
199
200                 print "<form dojoType=\"dijit.form.Form\" id=\"changeUserdataForm\">";
201
202                 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
203                 evt.preventDefault();
204                 if (this.validate()) {
205                         notify_progress('Saving data...', true);
206
207                         new Ajax.Request('backend.php', {
208                                 parameters: dojo.objectToQuery(this.getValues()),
209                                 onComplete: function(transport) {
210                                         notify_callback2(transport);
211                         } });
212
213                 }
214                 </script>";
215
216                 print "<table width=\"100%\" class=\"prefPrefsList\">";
217
218                 print "<h2>" . __("Personal data") . "</h2>";
219
220                 $result = $this->dbh->query("SELECT email,full_name,otp_enabled,
221                         access_level FROM ttrss_users
222                         WHERE id = ".$_SESSION["uid"]);
223
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"));
227
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>";
231
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>";
234
235                 if (!SINGLE_USER_MODE && !$_SESSION["hide_hello"]) {
236
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>";
240                 }
241
242                 print "</table>";
243
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\">";
246
247                 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
248                         __("Save data")."</button>";
249
250                 print "</form>";
251
252                 if ($_SESSION["auth_module"]) {
253                         $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
254                 } else {
255                         $authenticator = false;
256                 }
257
258                 if ($authenticator && method_exists($authenticator, "change_password")) {
259
260                         print "<h2>" . __("Password") . "</h2>";
261
262                         $result = $this->dbh->query("SELECT id FROM ttrss_users
263                                 WHERE id = ".$_SESSION["uid"]." AND pwd_hash
264                                 = 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8'");
265
266                         if ($this->dbh->num_rows($result) != 0) {
267                                 print format_warning(__("Your password is at default value, please change it."), "default_pass_warning");
268                         }
269
270                         print "<form dojoType=\"dijit.form.Form\">";
271
272                         print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
273                         evt.preventDefault();
274                         if (this.validate()) {
275                                 notify_progress('Changing password...', true);
276
277                                 new Ajax.Request('backend.php', {
278                                         parameters: dojo.objectToQuery(this.getValues()),
279                                         onComplete: function(transport) {
280                                                 notify('');
281                                                 if (transport.responseText.indexOf('ERROR: ') == 0) {
282                                                         notify_error(transport.responseText.replace('ERROR: ', ''));
283                                                 } else {
284                                                         notify_info(transport.responseText);
285                                                         var warn = $('default_pass_warning');
286                                                         if (warn) Element.hide(warn);
287                                                 }
288                                 }});
289                                 this.reset();
290                         }
291                         </script>";
292
293                         if ($otp_enabled) {
294                                 print_notice(__("Changing your current password will disable OTP."));
295                         }
296
297                         print "<table width=\"100%\" class=\"prefPrefsList\">";
298
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>";
301
302                         print "<tr><td width=\"40%\">".__("New password")."</td>";
303
304                         print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
305                                 name=\"new_password\"></td></tr>";
306
307                         print "<tr><td width=\"40%\">".__("Confirm password")."</td>";
308
309                         print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\" name=\"confirm_password\"></td></tr>";
310
311                         print "</table>";
312
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\">";
315
316                         print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
317                                 __("Change password")."</button>";
318
319                         print "</form>";
320
321                         if ($_SESSION["auth_module"] == "auth_internal") {
322
323                                 print "<h2>" . __("One time passwords / Authenticator") . "</h2>";
324
325                                 if ($otp_enabled) {
326
327                                         print_notice(__("One time passwords are currently enabled. Enter your current password below to disable."));
328
329                                         print "<form dojoType=\"dijit.form.Form\">";
330
331                                 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
332                                 evt.preventDefault();
333                                 if (this.validate()) {
334                                         notify_progress('Disabling OTP', true);
335
336                                         new Ajax.Request('backend.php', {
337                                                 parameters: dojo.objectToQuery(this.getValues()),
338                                                 onComplete: function(transport) {
339                                                         notify('');
340                                                         if (transport.responseText.indexOf('ERROR: ') == 0) {
341                                                                 notify_error(transport.responseText.replace('ERROR: ', ''));
342                                                         } else {
343                                                                 window.location.reload();
344                                                         }
345                                         }});
346                                         this.reset();
347                                 }
348                                 </script>";
349
350                                 print "<table width=\"100%\" class=\"prefPrefsList\">";
351
352                                 print "<tr><td width=\"40%\">".__("Enter your password")."</td>";
353
354                                 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
355                                         name=\"password\"></td></tr>";
356
357                                 print "</table>";
358
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\">";
361
362                                 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
363                                         __("Disable OTP")."</button>";
364
365                                 print "</form>";
366
367                                 } else if (function_exists("imagecreatefromstring")) {
368
369                                         print_warning(__("You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP."));
370
371                                         print "<p>".__("Scan the following code by the Authenticator application:")."</p>";
372
373                                         $csrf_token = $_SESSION["csrf_token"];
374
375                                         print "<img src=\"backend.php?op=pref-prefs&method=otpqrcode&csrf_token=$csrf_token\">";
376
377                                         print "<form dojoType=\"dijit.form.Form\" id=\"changeOtpForm\">";
378
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\">";
381
382                                         print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
383                                         evt.preventDefault();
384                                         if (this.validate()) {
385                                                 notify_progress('Saving data...', true);
386
387                                                 new Ajax.Request('backend.php', {
388                                                         parameters: dojo.objectToQuery(this.getValues()),
389                                                         onComplete: function(transport) {
390                                                                 notify('');
391                                                                 if (transport.responseText.indexOf('ERROR:') == 0) {
392                                                                         notify_error(transport.responseText.replace('ERROR:', ''));
393                                                                 } else {
394                                                                         window.location.reload();
395                                                                 }
396                                                 } });
397
398                                         }
399                                         </script>";
400
401                                         print "<table width=\"100%\" class=\"prefPrefsList\">";
402
403                                         print "<tr><td width=\"40%\">".__("Enter your password")."</td>";
404
405                                         print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
406                                                 name=\"password\"></td></tr>";
407
408                                         print "<tr><td width=\"40%\">".__("Enter the generated one time password")."</td>";
409
410                                         print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" autocomplete=\"off\"
411                                                 required=\"1\"
412                                                 name=\"otp\"></td></tr>";
413
414                                         print "<tr><td colspan=\"2\">";
415
416                                         print "</td></tr><tr><td colspan=\"2\">";
417
418                                         print "</td></tr>";
419                                         print "</table>";
420
421                                         print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
422                                                 __("Enable OTP")."</button>";
423
424                                         print "</form>";
425
426                                 } else {
427
428                                         print_notice(__("PHP GD functions are required for OTP support."));
429
430                                 }
431
432                         }
433                 }
434
435                 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
436                         "hook_prefs_tab_section", "prefPrefsAuth");
437
438                 print "</div>"; #pane
439
440                 print "<div dojoType=\"dijit.layout.AccordionPane\" selected=\"true\" title=\"".__('Preferences')."\">";
441
442                 print "<form dojoType=\"dijit.form.Form\" id=\"changeSettingsForm\">";
443
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()));
448
449                         new Ajax.Request('backend.php', {
450                                 parameters: dojo.objectToQuery(this.getValues()),
451                                 onComplete: function(transport) {
452                                         var msg = transport.responseText;
453                                         if (quit) {
454                                                 gotoMain();
455                                         } else {
456                                                 if (msg == 'PREFS_NEED_RELOAD') {
457                                                         window.location.reload();
458                                                 } else {
459                                                         notify_info(msg);
460                                                 }
461                                         }
462                         } });
463                 }
464                 </script>";
465
466                 print '<div dojoType="dijit.layout.BorderContainer" gutters="false">';
467
468                 print '<div dojoType="dijit.layout.ContentPane" region="center" style="overflow-y : auto">';
469
470                 if ($_SESSION["profile"]) {
471                         print_notice(__("Some preferences are only available in default profile."));
472                 }
473
474                 if ($_SESSION["profile"]) {
475                         initialize_user_prefs($_SESSION["uid"], $_SESSION["profile"]);
476                         $profile_qpart = "profile = '" . $_SESSION["profile"] . "'";
477                 } else {
478                         initialize_user_prefs($_SESSION["uid"]);
479                         $profile_qpart = "profile IS NULL";
480                 }
481
482                 /* if ($_SESSION["prefs_show_advanced"])
483                         $access_query = "true";
484                 else
485                         $access_query = "(access_level = 0 AND section_id != 3)"; */
486
487                 $access_query = 'true';
488
489                 $result = $this->dbh->query("SELECT DISTINCT
490                         ttrss_user_prefs.pref_name,value,type_name,
491                         ttrss_prefs_sections.order_id,
492                         def_value,section_id
493                         FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections,ttrss_user_prefs
494                         WHERE type_id = ttrss_prefs_types.id AND
495                                 $profile_qpart AND
496                                 section_id = ttrss_prefs_sections.id AND
497                                 ttrss_user_prefs.pref_name = ttrss_prefs.pref_name AND
498                                 $access_query AND
499                                 owner_uid = ".$_SESSION["uid"]."
500                         ORDER BY ttrss_prefs_sections.order_id,pref_name");
501
502                 $lnum = 0;
503
504                 $active_section = "";
505
506                 $listed_boolean_prefs = array();
507
508                 while ($line = $this->dbh->fetch_assoc($result)) {
509
510                         if (in_array($line["pref_name"], $prefs_blacklist)) {
511                                 continue;
512                         }
513
514                         $type_name = $line["type_name"];
515                         $pref_name = $line["pref_name"];
516                         $section_name = $this->getSectionName($line["section_id"]);
517                         $value = $line["value"];
518
519                         $short_desc = $this->getShortDesc($pref_name);
520                         $help_text = $this->getHelpText($pref_name);
521
522                         if (!$short_desc) continue;
523
524                         if ($_SESSION["profile"] && in_array($line["pref_name"],
525                                         $profile_blacklist)) {
526                                 continue;
527                         }
528
529                         if ($active_section != $line["section_id"]) {
530
531                                 if ($active_section != "") {
532                                         print "</table>";
533                                 }
534
535                                 print "<table width=\"100%\" class=\"prefPrefsList\">";
536
537                                 $active_section = $line["section_id"];
538
539                                 print "<tr><td colspan=\"3\"><h3>".$section_name."</h3></td></tr>";
540
541                                 $lnum = 0;
542                         }
543
544                         print "<tr>";
545
546                         print "<td width=\"40%\" class=\"prefName\" id=\"$pref_name\">";
547                         print "<label for='CB_$pref_name'>";
548                         print $short_desc;
549                         print "</label>";
550
551                         if ($help_text) print "<div class=\"prefHelp\">".__($help_text)."</div>";
552
553                         print "</td>";
554
555                         print "<td class=\"prefValue\">";
556
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'");
560
561                         } else if ($pref_name == "USER_TIMEZONE") {
562
563                                 $timezones = explode("\n", file_get_contents("lib/timezones.txt"));
564
565                                 print_select($pref_name, $value, $timezones, 'dojoType="dijit.form.FilteringSelect"');
566                         } else if ($pref_name == "USER_STYLESHEET") {
567
568                                 print "<button dojoType=\"dijit.form.Button\"
569                                         onclick=\"customizeCSS()\">" . __('Customize') . "</button>";
570
571                         } else if ($pref_name == "USER_CSS_THEME") {
572
573                                 $themes = array_map("basename", glob("themes/*.css"));
574
575                                 print_select($pref_name, $value, $themes,
576                                         'dojoType="dijit.form.Select"');
577
578
579                         } else if ($pref_name == "DEFAULT_UPDATE_INTERVAL") {
580
581                                 global $update_intervals_nodefault;
582
583                                 print_select_hash($pref_name, $value, $update_intervals_nodefault,
584                                         'dojoType="dijit.form.Select"');
585
586                         } else if ($type_name == "bool") {
587
588                                 array_push($listed_boolean_prefs, $pref_name);
589
590                                 $checked = ($value == "true") ? "checked=\"checked\"" : "";
591
592                                 if ($pref_name == "PURGE_UNREAD_ARTICLES" && FORCE_ARTICLE_PURGE != 0) {
593                                         $disabled = "disabled=\"1\"";
594                                         $checked = "checked=\"checked\"";
595                                 } else {
596                                         $disabled = "";
597                                 }
598
599                                 print "<input type='checkbox' name='$pref_name' $checked $disabled
600                                         dojoType='dijit.form.CheckBox' id='CB_$pref_name' value='1'>";
601
602                         } else if (array_search($pref_name, array('FRESH_ARTICLE_MAX_AGE',
603                                         'PURGE_OLD_DAYS', 'LONG_DATE_FORMAT', 'SHORT_DATE_FORMAT')) !== false) {
604
605                                 $regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
606
607                                 if ($pref_name == "PURGE_OLD_DAYS" && FORCE_ARTICLE_PURGE != 0) {
608                                         $disabled = "disabled=\"1\"";
609                                         $value = FORCE_ARTICLE_PURGE;
610                                 } else {
611                                         $disabled = "";
612                                 }
613
614                                 print "<input dojoType=\"dijit.form.ValidationTextBox\"
615                                         required=\"1\" $regexp $disabled
616                                         name=\"$pref_name\" value=\"$value\">";
617
618                         } else if ($pref_name == "SSL_CERT_SERIAL") {
619
620                                 print "<input dojoType=\"dijit.form.ValidationTextBox\"
621                                         id=\"SSL_CERT_SERIAL\" readonly=\"1\"
622                                         name=\"$pref_name\" value=\"$value\">";
623
624                                 $cert_serial = htmlspecialchars(get_ssl_certificate_id());
625                                 $has_serial = ($cert_serial) ? "false" : "true";
626
627                                 print " <button dojoType=\"dijit.form.Button\" disabled=\"$has_serial\"
628                                         onclick=\"insertSSLserial('$cert_serial')\">" .
629                                         __('Register') . "</button>";
630
631                                 print " <button dojoType=\"dijit.form.Button\"
632                                         onclick=\"insertSSLserial('')\">" .
633                                         __('Clear') . "</button>";
634
635                         } else if ($pref_name == 'DIGEST_PREFERRED_TIME') {
636                                 print "<input dojoType=\"dijit.form.ValidationTextBox\"
637                                         id=\"$pref_name\" regexp=\"[012]?\d:\d\d\" placeHolder=\"12:00\"
638                                         name=\"$pref_name\" value=\"$value\"><div class=\"insensitive\">".
639                                         T_sprintf("Current server time: %s (UTC)", date("H:i")) . "</div>";
640                         } else {
641                                 $regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
642
643                                 print "<input dojoType=\"dijit.form.ValidationTextBox\"
644                                         $regexp
645                                         name=\"$pref_name\" value=\"$value\">";
646                         }
647
648                         print "</td>";
649
650                         print "</tr>";
651
652                         $lnum++;
653                 }
654
655                 print "</table>";
656
657                 $listed_boolean_prefs = htmlspecialchars(join(",", $listed_boolean_prefs));
658
659                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"boolean_prefs\" value=\"$listed_boolean_prefs\">";
660
661                 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
662                         "hook_prefs_tab_section", "prefPrefsPrefsInside");
663
664                 print '</div>'; # inside pane
665                 print '<div dojoType="dijit.layout.ContentPane" region="bottom">';
666
667                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
668                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"saveconfig\">";
669
670                 print "<div dojoType=\"dijit.form.ComboButton\" type=\"submit\">
671                         <span>".__('Save configuration')."</span>
672                         <div dojoType=\"dijit.DropDownMenu\">
673                                 <div dojoType=\"dijit.MenuItem\"
674                                         onclick=\"dijit.byId('changeSettingsForm').onSubmit(null, true)\">".
675                                 __("Save and exit preferences")."</div>
676                         </div>
677                         </div>";
678
679                 print "<button dojoType=\"dijit.form.Button\" onclick=\"return editProfiles()\">".
680                         __('Manage profiles')."</button> ";
681
682                 print "<button dojoType=\"dijit.form.Button\" onclick=\"return validatePrefsReset()\">".
683                         __('Reset to defaults')."</button>";
684
685                 print "&nbsp;";
686
687                 /* $checked = $_SESSION["prefs_show_advanced"] ? "checked='1'" : "";
688
689                 print "<input onclick='toggleAdvancedPrefs()'
690                                 id='prefs_show_advanced'
691                                 dojoType=\"dijit.form.CheckBox\"
692                                 $checked
693                                 type=\"checkbox\"></input>
694                                 <label for='prefs_show_advanced'>" .
695                                 __("Show additional preferences") . "</label>"; */
696
697                 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
698                         "hook_prefs_tab_section", "prefPrefsPrefsOutside");
699
700                 print "</form>";
701                 print '</div>'; # inner pane
702                 print '</div>'; # border container
703
704                 print "</div>"; #pane
705
706                 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Plugins')."\">";
707
708                 print "<p>" . __("You will need to reload Tiny Tiny RSS for plugin changes to take effect.") . "</p>";
709
710                 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>."));
711
712                 print "<form dojoType=\"dijit.form.Form\" id=\"changePluginsForm\">";
713
714                 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
715                 evt.preventDefault();
716                 if (this.validate()) {
717                         notify_progress('Saving data...', true);
718
719                         new Ajax.Request('backend.php', {
720                                 parameters: dojo.objectToQuery(this.getValues()),
721                                 onComplete: function(transport) {
722                                         notify('');
723                                         if (confirm(__('Selected plugins have been enabled. Reload?'))) {
724                                                 window.location.reload();
725                                         }
726                         } });
727
728                 }
729                 </script>";
730
731                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
732                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setplugins\">";
733
734                 print "<table width='100%' class='prefPluginsList'>";
735
736                 print "<tr><td colspan='4'><h3>".__("System plugins")."</h3></td></tr>";
737
738                 print "<tr class=\"title\">
739                                 <td width=\"5%\">&nbsp;</td>
740                                 <td width='10%'>".__('Plugin')."</td>
741                                 <td width=''>".__('Description')."</td>
742                                 <td width='5%'>".__('Version')."</td>
743                                 <td width='10%'>".__('Author')."</td></tr>";
744
745                 $system_enabled = array_map("trim", explode(",", PLUGINS));
746                 $user_enabled = array_map("trim", explode(",", get_pref("_ENABLED_PLUGINS")));
747
748                 $tmppluginhost = new PluginHost();
749                 $tmppluginhost->load_all($tmppluginhost::KIND_ALL, $_SESSION["uid"]);
750                 $tmppluginhost->load_data(true);
751
752                 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
753                         $about = $plugin->about();
754
755                         if ($about[3] && strpos($name, "example") === FALSE) {
756                                 if (in_array($name, $system_enabled)) {
757                                         $checked = "checked='1'";
758                                 } else {
759                                         $checked = "";
760                                 }
761
762                                 print "<tr>";
763
764                                 print "<td align='center'><input disabled='1'
765                                                 dojoType=\"dijit.form.CheckBox\" $checked
766                                                 type=\"checkbox\"></td>";
767
768                                 print "<td>$name</td>";
769                                 print "<td>" . htmlspecialchars($about[1]);
770                                 if (@$about[4]) {
771                                         print " &mdash; <a target=\"_blank\" class=\"visibleLink\"
772                                                 href=\"".htmlspecialchars($about[4])."\">".__("more info")."</a>";
773                                 }
774                                 print "</td>";
775                                 print "<td>" . htmlspecialchars(sprintf("%.2f", $about[0])) . "</td>";
776                                 print "<td>" . htmlspecialchars($about[2]) . "</td>";
777
778                                 if (count($tmppluginhost->get_all($plugin)) > 0) {
779                                         if (in_array($name, $system_enabled)) {
780                                                 print "<td><a href='#' onclick=\"clearPluginData('$name')\"
781                                                         class='visibleLink'>".__("Clear data")."</a></td>";
782                                         }
783                                 }
784
785                                 print "</tr>";
786
787                         }
788                 }
789
790                 print "<tr><td colspan='4'><h3>".__("User plugins")."</h3></td></tr>";
791
792                 print "<tr class=\"title\">
793                                 <td width=\"5%\">&nbsp;</td>
794                                 <td width='10%'>".__('Plugin')."</td>
795                                 <td width=''>".__('Description')."</td>
796                                 <td width='5%'>".__('Version')."</td>
797                                 <td width='10%'>".__('Author')."</td></tr>";
798
799
800                 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
801                         $about = $plugin->about();
802
803                         if (!$about[3] && strpos($name, "example") === FALSE) {
804
805                                 if (in_array($name, $system_enabled)) {
806                                         $checked = "checked='1'";
807                                         $disabled = "disabled='1'";
808                                         $rowclass = '';
809                                 } else if (in_array($name, $user_enabled)) {
810                                         $checked = "checked='1'";
811                                         $disabled = "";
812                                         $rowclass = "Selected";
813                                 } else {
814                                         $checked = "";
815                                         $disabled = "";
816                                         $rowclass = '';
817                                 }
818
819                                 print "<tr class='$rowclass'>";
820
821                                 print "<td align='center'><input id='FPCHK-$name' name='plugins[]' value='$name' onclick='toggleSelectRow2(this);'
822                                         dojoType=\"dijit.form.CheckBox\" $checked $disabled
823                                         type=\"checkbox\"></td>";
824
825                                 print "<td><label for='FPCHK-$name'>$name</label></td>";
826                                 print "<td><label for='FPCHK-$name'>" . htmlspecialchars($about[1]) . "</label>";
827                                 if (@$about[4]) {
828                                         print " &mdash; <a target=\"_blank\" class=\"visibleLink\"
829                                                 href=\"".htmlspecialchars($about[4])."\">".__("more info")."</a>";
830                                 }
831                                 print "</td>";
832
833                                 print "<td>" . htmlspecialchars(sprintf("%.2f", $about[0])) . "</td>";
834                                 print "<td>" . htmlspecialchars($about[2]) . "</td>";
835
836                                 if (count($tmppluginhost->get_all($plugin)) > 0) {
837                                         if (in_array($name, $system_enabled) || in_array($name, $user_enabled)) {
838                                                 print "<td><a href='#' onclick=\"clearPluginData('$name')\" class='visibleLink'>".__("Clear data")."</a></td>";
839                                         }
840                                 }
841
842                                 print "</tr>";
843
844
845
846                         }
847
848                 }
849
850                 print "</table>";
851
852                 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
853                         __("Enable selected plugins")."</button></p>";
854
855                 print "</form>";
856
857                 print "</div>"; #pane
858
859                 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB,
860                         "hook_prefs_tab", "prefPrefs");
861
862                 print "</div>"; #container
863         }
864
865         function toggleAdvanced() {
866                 $_SESSION["prefs_show_advanced"] = !$_SESSION["prefs_show_advanced"];
867         }
868
869         function otpqrcode() {
870                 require_once "lib/otphp/vendor/base32.php";
871                 require_once "lib/otphp/lib/otp.php";
872                 require_once "lib/otphp/lib/totp.php";
873                 require_once "lib/phpqrcode/phpqrcode.php";
874
875                 $result = $this->dbh->query("SELECT login,salt,otp_enabled
876                         FROM ttrss_users
877                         WHERE id = ".$_SESSION["uid"]);
878
879                 $base32 = new Base32();
880
881                 $login = $this->dbh->fetch_result($result, 0, "login");
882                 $otp_enabled = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "otp_enabled"));
883
884                 if (!$otp_enabled) {
885                         $secret = $base32->encode(sha1($this->dbh->fetch_result($result, 0, "salt")));
886                         $topt = new \OTPHP\TOTP($secret);
887                         print QRcode::png($topt->provisioning_uri($login));
888                 }
889         }
890
891         function otpenable() {
892                 require_once "lib/otphp/vendor/base32.php";
893                 require_once "lib/otphp/lib/otp.php";
894                 require_once "lib/otphp/lib/totp.php";
895
896                 $password = $_REQUEST["password"];
897                 $otp = $_REQUEST["otp"];
898
899                 $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
900
901                 if ($authenticator->check_password($_SESSION["uid"], $password)) {
902
903                         $result = $this->dbh->query("SELECT salt
904                                 FROM ttrss_users
905                                 WHERE id = ".$_SESSION["uid"]);
906
907                         $base32 = new Base32();
908
909                         $secret = $base32->encode(sha1($this->dbh->fetch_result($result, 0, "salt")));
910                         $topt = new \OTPHP\TOTP($secret);
911
912                         $otp_check = $topt->now();
913
914                         if ($otp == $otp_check) {
915                                 $this->dbh->query("UPDATE ttrss_users SET otp_enabled = true WHERE
916                                         id = " . $_SESSION["uid"]);
917
918                                 print "OK";
919                         } else {
920                                 print "ERROR:".__("Incorrect one time password");
921                         }
922                 } else {
923                         print "ERROR:".__("Incorrect password");
924                 }
925
926         }
927
928         function otpdisable() {
929                 $password = $this->dbh->escape_string($_REQUEST["password"]);
930
931                 $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
932
933                 if ($authenticator->check_password($_SESSION["uid"], $password)) {
934
935                         $this->dbh->query("UPDATE ttrss_users SET otp_enabled = false WHERE
936                                 id = " . $_SESSION["uid"]);
937
938                         print "OK";
939                 } else {
940                         print "ERROR: ".__("Incorrect password");
941                 }
942
943         }
944
945         function setplugins() {
946                 if (is_array($_REQUEST["plugins"]))
947                         $plugins = join(",", $_REQUEST["plugins"]);
948                 else
949                         $plugins = "";
950
951                 set_pref("_ENABLED_PLUGINS", $plugins);
952         }
953
954         function clearplugindata() {
955                 $name = $this->dbh->escape_string($_REQUEST["name"]);
956
957                 PluginHost::getInstance()->clear_data(PluginHost::getInstance()->get_plugin($name));
958         }
959
960         function customizeCSS() {
961                 $value = get_pref("USER_STYLESHEET");
962
963                 $value = str_replace("<br/>", "\n", $value);
964
965                 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"));
966
967                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
968                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setpref\">";
969                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"key\" value=\"USER_STYLESHEET\">";
970
971                 print "<table width='100%'><tr><td>";
972                 print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
973                         style='font-size : 12px; width : 100%; height: 200px;'
974                         placeHolder='body#ttrssMain { font-size : 14px; };'
975                         name='value'>$value</textarea>";
976                 print "</td></tr></table>";
977
978                 print "<div class='dlgButtons'>";
979                 print "<button dojoType=\"dijit.form.Button\"
980                         onclick=\"dijit.byId('cssEditDlg').execute()\">".__('Save')."</button> ";
981                 print "<button dojoType=\"dijit.form.Button\"
982                         onclick=\"dijit.byId('cssEditDlg').hide()\">".__('Cancel')."</button>";
983                 print "</div>";
984
985         }
986
987         function editPrefProfiles() {
988                 print "<div dojoType=\"dijit.Toolbar\">";
989
990                 print "<div dojoType=\"dijit.form.DropDownButton\">".
991                                 "<span>" . __('Select')."</span>";
992                 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
993                 print "<div onclick=\"selectTableRows('prefFeedProfileList', 'all')\"
994                         dojoType=\"dijit.MenuItem\">".__('All')."</div>";
995                 print "<div onclick=\"selectTableRows('prefFeedProfileList', 'none')\"
996                         dojoType=\"dijit.MenuItem\">".__('None')."</div>";
997                 print "</div></div>";
998
999                 print "<div style=\"float : right\">";
1000
1001                 print "<input name=\"newprofile\" dojoType=\"dijit.form.ValidationTextBox\"
1002                                 required=\"1\">
1003                         <button dojoType=\"dijit.form.Button\"
1004                         onclick=\"dijit.byId('profileEditDlg').addProfile()\">".
1005                                 __('Create profile')."</button></div>";
1006
1007                 print "</div>";
1008
1009                 $result = $this->dbh->query("SELECT title,id FROM ttrss_settings_profiles
1010                         WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1011
1012                 print "<div class=\"prefProfileHolder\">";
1013
1014                 print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";
1015
1016                 print "<table width=\"100%\" class=\"prefFeedProfileList\"
1017                         cellspacing=\"0\" id=\"prefFeedProfileList\">";
1018
1019                 print "<tr class=\"placeholder\" id=\"FCATR-0\">"; #odd
1020
1021                 print "<td width='5%' align='center'><input
1022                         id='FCATC-0'
1023                         onclick='toggleSelectRow2(this);'
1024                         dojoType=\"dijit.form.CheckBox\"
1025                         type=\"checkbox\"></td>";
1026
1027                 if (!$_SESSION["profile"]) {
1028                         $is_active = __("(active)");
1029                 } else {
1030                         $is_active = "";
1031                 }
1032
1033                 print "<td><span>" .
1034                         __("Default profile") . " $is_active</span></td>";
1035
1036                 print "</tr>";
1037
1038                 $lnum = 1;
1039
1040                 while ($line = $this->dbh->fetch_assoc($result)) {
1041
1042                         $profile_id = $line["id"];
1043                         $this_row_id = "id=\"FCATR-$profile_id\"";
1044
1045                         print "<tr class=\"placeholder\" $this_row_id>";
1046
1047                         $edit_title = htmlspecialchars($line["title"]);
1048
1049                         print "<td width='5%' align='center'><input
1050                                 onclick='toggleSelectRow2(this);'
1051                                 id='FCATC-$profile_id'
1052                                 dojoType=\"dijit.form.CheckBox\"
1053                                 type=\"checkbox\"></td>";
1054
1055                         if ($_SESSION["profile"] == $line["id"]) {
1056                                 $is_active = __("(active)");
1057                         } else {
1058                                 $is_active = "";
1059                         }
1060
1061                         print "<td><span dojoType=\"dijit.InlineEditBox\"
1062                                 width=\"300px\" autoSave=\"false\"
1063                                 profile-id=\"$profile_id\">" . $edit_title .
1064                                 "<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
1065                                         var elem = this;
1066                                         dojo.xhrPost({
1067                                                 url: 'backend.php',
1068                                                 content: {op: 'rpc', method: 'saveprofile',
1069                                                         value: this.value,
1070                                                         id: this.srcNodeRef.getAttribute('profile-id')},
1071                                                         load: function(response) {
1072                                                                 elem.attr('value', response);
1073                                                 }
1074                                         });
1075                                 </script>
1076                         </span> $is_active</td>";
1077
1078                         print "</tr>";
1079
1080                         ++$lnum;
1081                 }
1082
1083                 print "</table>";
1084                 print "</form>";
1085                 print "</div>";
1086
1087                 print "<div class='dlgButtons'>
1088                         <div style='float : left'>
1089                         <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').removeSelected()\">".
1090                         __('Remove selected profiles')."</button>
1091                         <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').activateProfile()\">".
1092                         __('Activate profile')."</button>
1093                         </div>";
1094
1095                 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').hide()\">".
1096                         __('Close this window')."</button>";
1097                 print "</div>";
1098
1099         }
1100
1101         private function getShortDesc($pref_name) {
1102                 if (isset($this->pref_help[$pref_name])) {
1103                         return $this->pref_help[$pref_name][0];
1104                 }
1105                 return "";
1106         }
1107
1108         private function getHelpText($pref_name) {
1109                 if (isset($this->pref_help[$pref_name])) {
1110                         return $this->pref_help[$pref_name][1];
1111                 }
1112                 return "";
1113         }
1114
1115         private function getSectionName($id) {
1116                 if (isset($this->pref_sections[$id])) {
1117                         return $this->pref_sections[$id];
1118                 }
1119
1120                 return "";
1121         }
1122 }
1123 ?>