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