]> git.wh0rd.org Git - tt-rss.git/blob - classes/pref_users.php
experimental CSRF protection
[tt-rss.git] / classes / pref_users.php
1 <?php
2 class Pref_Users extends Protected_Handler {
3                 function before() {
4                         if (parent::before()) {
5                                 if ($_SESSION["access_level"] < 10) {
6                                         print __("Your access level is insufficient to open this tab.");
7                                         return false;
8                                 }
9                                 return true;
10                         }
11                         return false;
12                 }
13
14                 function csrf_ignore($method) {
15                         $csrf_ignored = array("index");
16
17                         return array_search($method, $csrf_ignored) !== false;
18                 }
19
20                 function userdetails() {
21
22                         header("Content-Type: text/xml");
23                         print "<dlg>";
24
25                         $uid = sprintf("%d", $_REQUEST["id"]);
26
27                         print "<title>".__('User details')."</title>";
28
29                         print "<content><![CDATA[";
30
31                         $result = db_query($this->link, "SELECT login,
32                                 ".SUBSTRING_FOR_DATE."(last_login,1,16) AS last_login,
33                                 access_level,
34                                 (SELECT COUNT(int_id) FROM ttrss_user_entries
35                                         WHERE owner_uid = id) AS stored_articles,
36                                 ".SUBSTRING_FOR_DATE."(created,1,16) AS created
37                                 FROM ttrss_users
38                                 WHERE id = '$uid'");
39
40                         if (db_num_rows($result) == 0) {
41                                 print "<h1>".__('User not found')."</h1>";
42                                 return;
43                         }
44
45                         // print "<h1>User Details</h1>";
46
47                         $login = db_fetch_result($result, 0, "login");
48
49                         print "<table width='100%'>";
50
51                         $last_login = make_local_datetime($this->link,
52                                 db_fetch_result($result, 0, "last_login"), true);
53
54                         $created = make_local_datetime($this->link,
55                                 db_fetch_result($result, 0, "created"), true);
56
57                         $access_level = db_fetch_result($result, 0, "access_level");
58                         $stored_articles = db_fetch_result($result, 0, "stored_articles");
59
60                         print "<tr><td>".__('Registered')."</td><td>$created</td></tr>";
61                         print "<tr><td>".__('Last logged in')."</td><td>$last_login</td></tr>";
62
63                         $result = db_query($this->link, "SELECT COUNT(id) as num_feeds FROM ttrss_feeds
64                                 WHERE owner_uid = '$uid'");
65
66                         $num_feeds = db_fetch_result($result, 0, "num_feeds");
67
68                         print "<tr><td>".__('Subscribed feeds count')."</td><td>$num_feeds</td></tr>";
69
70                         print "</table>";
71
72                         print "<h1>".__('Subscribed feeds')."</h1>";
73
74                         $result = db_query($this->link, "SELECT id,title,site_url FROM ttrss_feeds
75                                 WHERE owner_uid = '$uid' ORDER BY title");
76
77                         print "<ul class=\"userFeedList\">";
78
79                         $row_class = "odd";
80
81                         while ($line = db_fetch_assoc($result)) {
82
83                                 $icon_file = ICONS_URL."/".$line["id"].".ico";
84
85                                 if (file_exists($icon_file) && filesize($icon_file) > 0) {
86                                         $feed_icon = "<img class=\"tinyFeedIcon\" src=\"$icon_file\">";
87                                 } else {
88                                         $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
89                                 }
90
91                                 print "<li class=\"$row_class\">$feed_icon&nbsp;<a href=\"".$line["site_url"]."\">".$line["title"]."</a></li>";
92
93                                 $row_class = $row_class == "even" ? "odd" : "even";
94
95                         }
96
97                         if (db_num_rows($result) < $num_feeds) {
98                                 // FIXME - add link to show ALL subscribed feeds here somewhere
99                                 print "<li><img
100                                         class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">&nbsp;...</li>";
101                         }
102
103                         print "</ul>";
104
105                         print "<div align='center'>
106                                 <button onclick=\"closeInfoBox()\">".__("Close this window").
107                                 "</button></div>";
108
109                         print "]]></content></dlg>";
110
111                         return;
112                 }
113
114                 function edit() {
115                         global $access_level_names;
116
117                         header("Content-Type: text/xml");
118
119                         $id = db_escape_string($_REQUEST["id"]);
120
121                         print "<dlg id=\"$method\">";
122                         print "<title>".__('User Editor')."</title>";
123                         print "<content><![CDATA[";
124
125                         print "<form id=\"user_edit_form\" onsubmit='return false'>";
126
127                         print "<input type=\"hidden\" name=\"id\" value=\"$id\">";
128                         print "<input type=\"hidden\" name=\"op\" value=\"pref-users\">";
129                         print "<input type=\"hidden\" name=\"method\" value=\"editSave\">";
130
131                         $result = db_query($this->link, "SELECT * FROM ttrss_users WHERE id = '$id'");
132
133                         $login = db_fetch_result($result, 0, "login");
134                         $access_level = db_fetch_result($result, 0, "access_level");
135                         $email = db_fetch_result($result, 0, "email");
136
137                         $sel_disabled = ($id == $_SESSION["uid"]) ? "disabled" : "";
138
139                         print "<div class=\"dlgSec\">".__("User")."</div>";
140                         print "<div class=\"dlgSecCont\">";
141
142                         if ($sel_disabled) {
143                                 print "<input type=\"hidden\" name=\"login\" value=\"$login\">";
144                                 print "<input size=\"30\" style=\"font-size : 16px\"
145                                         onkeypress=\"return filterCR(event, userEditSave)\" $sel_disabled
146                                         value=\"$login\">";
147                         } else {
148                                 print "<input size=\"30\" style=\"font-size : 16px\"
149                                         onkeypress=\"return filterCR(event, userEditSave)\" $sel_disabled
150                                         name=\"login\" value=\"$login\">";
151                         }
152
153                         print "</div>";
154
155                         print "<div class=\"dlgSec\">".__("Authentication")."</div>";
156                         print "<div class=\"dlgSecCont\">";
157
158                         print __('Access level: ') . " ";
159
160                         if (!$sel_disabled) {
161                                 print_select_hash("access_level", $access_level, $access_level_names,
162                                         $sel_disabled);
163                         } else {
164                                 print_select_hash("", $access_level, $access_level_names,
165                                         $sel_disabled);
166                                 print "<input type=\"hidden\" name=\"access_level\" value=\"$access_level\">";
167                         }
168
169                         print "<br/>";
170
171                         print __('Change password to') .
172                                 " <input size=\"20\" onkeypress=\"return filterCR(event, userEditSave)\"
173                                 name=\"password\">";
174
175                         print "</div>";
176
177                         print "<div class=\"dlgSec\">".__("Options")."</div>";
178                         print "<div class=\"dlgSecCont\">";
179
180                         print __('E-mail: ').
181                                 " <input size=\"30\" name=\"email\" onkeypress=\"return filterCR(event, userEditSave)\"
182                                 value=\"$email\">";
183
184                         print "</div>";
185
186                         print "</table>";
187
188                         print "</form>";
189
190                         print "<div class=\"dlgButtons\">
191                                 <button onclick=\"return userEditSave()\">".
192                                         __('Save')."</button>
193                                 <button onclick=\"return userEditCancel()\">".
194                                         __('Cancel')."</button></div>";
195
196                         print "]]></content></dlg>";
197
198                         return;
199                 }
200
201                 function editSave() {
202                         $login = db_escape_string(trim($_REQUEST["login"]));
203                         $uid = db_escape_string($_REQUEST["id"]);
204                         $access_level = (int) $_REQUEST["access_level"];
205                         $email = db_escape_string(trim($_REQUEST["email"]));
206                         $password = db_escape_string(trim($_REQUEST["password"]));
207
208                         if ($password) {
209                                 $pwd_hash = encrypt_password($password, $login);
210                                 $pass_query_part = "pwd_hash = '$pwd_hash', ";
211                         } else {
212                                 $pass_query_part = "";
213                         }
214
215                         db_query($this->link, "UPDATE ttrss_users SET $pass_query_part login = '$login',
216                                 access_level = '$access_level', email = '$email' WHERE id = '$uid'");
217
218                 }
219
220                 function remove() {
221                         $ids = split(",", db_escape_string($_REQUEST["ids"]));
222
223                         foreach ($ids as $id) {
224                                 if ($id != $_SESSION["uid"] && $id != 1) {
225                                         db_query($this->link, "DELETE FROM ttrss_tags WHERE owner_uid = '$id'");
226                                         db_query($this->link, "DELETE FROM ttrss_feeds WHERE owner_uid = '$id'");
227                                         db_query($this->link, "DELETE FROM ttrss_users WHERE id = '$id'");
228                                 }
229                         }
230                 }
231
232                 function add() {
233
234                         $login = db_escape_string(trim($_REQUEST["login"]));
235                         $tmp_user_pwd = make_password(8);
236                         $pwd_hash = encrypt_password($tmp_user_pwd, $login);
237
238                         $result = db_query($this->link, "SELECT id FROM ttrss_users WHERE
239                                 login = '$login'");
240
241                         if (db_num_rows($result) == 0) {
242
243                                 db_query($this->link, "INSERT INTO ttrss_users
244                                         (login,pwd_hash,access_level,last_login,created)
245                                         VALUES ('$login', '$pwd_hash', 0, null, NOW())");
246
247
248                                 $result = db_query($this->link, "SELECT id FROM ttrss_users WHERE
249                                         login = '$login' AND pwd_hash = '$pwd_hash'");
250
251                                 if (db_num_rows($result) == 1) {
252
253                                         $new_uid = db_fetch_result($result, 0, "id");
254
255                                         print format_notice(T_sprintf("Added user <b>%s</b> with password <b>%s</b>",
256                                                 $login, $tmp_user_pwd));
257
258                                         initialize_user($this->link, $new_uid);
259
260                                 } else {
261
262                                         print format_warning(T_sprintf("Could not create user <b>%s</b>", $login));
263
264                                 }
265                         } else {
266                                 print format_warning(T_sprintf("User <b>%s</b> already exists.", $login));
267                         }
268                 }
269
270                 function resetPass() {
271
272                         $uid = db_escape_string($_REQUEST["id"]);
273
274                         $result = db_query($this->link, "SELECT login,email
275                                 FROM ttrss_users WHERE id = '$uid'");
276
277                         $login = db_fetch_result($result, 0, "login");
278                         $email = db_fetch_result($result, 0, "email");
279                         $tmp_user_pwd = make_password(8);
280                         $pwd_hash = encrypt_password($tmp_user_pwd, $login);
281
282                         db_query($this->link, "UPDATE ttrss_users SET pwd_hash = '$pwd_hash'
283                                 WHERE id = '$uid'");
284
285                         print T_sprintf("Changed password of user <b>%s</b>
286                                  to <b>%s</b>", $login, $tmp_user_pwd);
287
288                         require_once 'lib/phpmailer/class.phpmailer.php';
289
290                         if ($email) {
291                                 print " ";
292                                 print T_sprintf("Notifying <b>%s</b>.", $email);
293
294                                 require_once "lib/MiniTemplator.class.php";
295
296                                 $tpl = new MiniTemplator;
297
298                                 $tpl->readTemplateFromFile("templates/resetpass_template.txt");
299
300                                 $tpl->setVariable('LOGIN', $login);
301                                 $tpl->setVariable('NEWPASS', $tmp_user_pwd);
302
303                                 $tpl->addBlock('message');
304
305                                 $message = "";
306
307                                 $tpl->generateOutputToString($message);
308
309                                 $mail = new PHPMailer();
310
311                                 $mail->PluginDir = "lib/phpmailer/";
312                                 $mail->SetLanguage("en", "lib/phpmailer/language/");
313
314                                 $mail->CharSet = "UTF-8";
315
316                                 $mail->From = SMTP_FROM_ADDRESS;
317                                 $mail->FromName = SMTP_FROM_NAME;
318                                 $mail->AddAddress($email, $login);
319
320                                 if (SMTP_HOST) {
321                                         $mail->Host = SMTP_HOST;
322                                         $mail->Mailer = "smtp";
323                                         $mail->SMTPAuth = SMTP_LOGIN != '';
324                                         $mail->Username = SMTP_LOGIN;
325                                         $mail->Password = SMTP_PASSWORD;
326                                 }
327
328                                 $mail->IsHTML(false);
329                                 $mail->Subject = __("[tt-rss] Password change notification");
330                                 $mail->Body = $message;
331
332                                 $rc = $mail->Send();
333
334                                 if (!$rc) print_error($mail->ErrorInfo);
335                         }
336
337                         print "</div>";
338                 }
339
340                 function index() {
341
342                         global $access_level_names;
343
344                         print "<div id=\"pref-user-wrap\" dojoType=\"dijit.layout.BorderContainer\" gutters=\"false\">";
345                         print "<div id=\"pref-user-header\" dojoType=\"dijit.layout.ContentPane\" region=\"top\">";
346
347                         print "<div id=\"pref-user-toolbar\" dojoType=\"dijit.Toolbar\">";
348
349                         $user_search = db_escape_string($_REQUEST["search"]);
350
351                         if (array_key_exists("search", $_REQUEST)) {
352                                 $_SESSION["prefs_user_search"] = $user_search;
353                         } else {
354                                 $user_search = $_SESSION["prefs_user_search"];
355                         }
356
357                         print "<div style='float : right; padding-right : 4px;'>
358                                 <input dojoType=\"dijit.form.TextBox\" id=\"user_search\" size=\"20\" type=\"search\"
359                                         value=\"$user_search\">
360                                 <button dojoType=\"dijit.form.Button\" onclick=\"javascript:updateUsersList()\">".
361                                         __('Search')."</button>
362                                 </div>";
363
364                         $sort = db_escape_string($_REQUEST["sort"]);
365
366                         if (!$sort || $sort == "undefined") {
367                                 $sort = "login";
368                         }
369
370                         print "<div dojoType=\"dijit.form.DropDownButton\">".
371                                         "<span>" . __('Select')."</span>";
372                         print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
373                         print "<div onclick=\"selectTableRows('prefUserList', 'all')\"
374                                 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
375                         print "<div onclick=\"selectTableRows('prefUserList', 'none')\"
376                                 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
377                         print "</div></div>";
378
379                         print "<button dojoType=\"dijit.form.Button\" onclick=\"javascript:addUser()\">".__('Create user')."</button>";
380
381                         print "
382                                 <button dojoType=\"dijit.form.Button\" onclick=\"javascript:selectedUserDetails()\">".
383                                 __('Details')."</button dojoType=\"dijit.form.Button\">
384                                 <button dojoType=\"dijit.form.Button\" onclick=\"javascript:editSelectedUser()\">".
385                                 __('Edit')."</button dojoType=\"dijit.form.Button\">
386                                 <button dojoType=\"dijit.form.Button\" onclick=\"javascript:removeSelectedUsers()\">".
387                                 __('Remove')."</button dojoType=\"dijit.form.Button\">
388                                 <button dojoType=\"dijit.form.Button\" onclick=\"javascript:resetSelectedUserPass()\">".
389                                 __('Reset password')."</button dojoType=\"dijit.form.Button\">";
390
391                         print "</div>"; #toolbar
392                         print "</div>"; #pane
393                         print "<div id=\"pref-user-content\" dojoType=\"dijit.layout.ContentPane\" region=\"center\">";
394
395                         print "<div id=\"sticky-status-msg\"></div>";
396
397                         if ($user_search) {
398
399                                 $user_search = split(" ", $user_search);
400                                 $tokens = array();
401
402                                 foreach ($user_search as $token) {
403                                         $token = trim($token);
404                                         array_push($tokens, "(UPPER(login) LIKE UPPER('%$token%'))");
405                                 }
406
407                                 $user_search_query = "(" . join($tokens, " AND ") . ") AND ";
408
409                         } else {
410                                 $user_search_query = "";
411                         }
412
413                         $result = db_query($this->link, "SELECT
414                                         id,login,access_level,email,
415                                         ".SUBSTRING_FOR_DATE."(last_login,1,16) as last_login,
416                                         ".SUBSTRING_FOR_DATE."(created,1,16) as created
417                                 FROM
418                                         ttrss_users
419                                 WHERE
420                                         $user_search_query
421                                         id > 0
422                                 ORDER BY $sort");
423
424                         if (db_num_rows($result) > 0) {
425
426                         print "<p><table width=\"100%\" cellspacing=\"0\"
427                                 class=\"prefUserList\" id=\"prefUserList\">";
428
429                         print "<tr class=\"title\">
430                                                 <td align='center' width=\"5%\">&nbsp;</td>
431                                                 <td width=''><a href=\"#\" onclick=\"updateUsersList('login')\">".__('Login')."</a></td>
432                                                 <td width='20%'><a href=\"#\" onclick=\"updateUsersList('access_level')\">".__('Access Level')."</a></td>
433                                                 <td width='20%'><a href=\"#\" onclick=\"updateUsersList('created')\">".__('Registered')."</a></td>
434                                                 <td width='20%'><a href=\"#\" onclick=\"updateUsersList('last_login')\">".__('Last login')."</a></td></tr>";
435
436                         $lnum = 0;
437
438                         while ($line = db_fetch_assoc($result)) {
439
440                                 $class = ($lnum % 2) ? "even" : "odd";
441
442                                 $uid = $line["id"];
443
444                                 print "<tr class=\"$class\" id=\"UMRR-$uid\">";
445
446                                 $line["login"] = htmlspecialchars($line["login"]);
447
448                                 $line["created"] = make_local_datetime($this->link, $line["created"], false);
449                                 $line["last_login"] = make_local_datetime($this->link, $line["last_login"], false);
450
451                                 print "<td align='center'><input onclick='toggleSelectRow(this);'
452                                         type=\"checkbox\" id=\"UMCHK-$uid\"></td>";
453
454                                 $onclick = "onclick='editUser($uid, event)' title='".__('Click to edit')."'";
455
456                                 print "<td $onclick>" . $line["login"] . "</td>";
457
458                                 if (!$line["email"]) $line["email"] = "&nbsp;";
459
460                                 print "<td $onclick>" . $access_level_names[$line["access_level"]] . "</td>";
461                                 print "<td $onclick>" . $line["created"] . "</td>";
462                                 print "<td $onclick>" . $line["last_login"] . "</td>";
463
464                                 print "</tr>";
465
466                                 ++$lnum;
467                         }
468
469                         print "</table>";
470
471                         } else {
472                                 print "<p>";
473                                 if (!$user_search) {
474                                         print_warning(__('No users defined.'));
475                                 } else {
476                                         print_warning(__('No matching users found.'));
477                                 }
478                                 print "</p>";
479
480                         }
481
482                         print "</div>"; #pane
483                         print "</div>"; #container
484
485                 }
486
487         }
488 ?>