forked from enwikipedia-acc/waca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.php
631 lines (531 loc) · 18.2 KB
/
users.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
<?php
/**************************************************************************
********** English Wikipedia Account Request Interface **********
***************************************************************************
** Wikipedia Account Request Graphic Design by Charles Melbye, **
** which is licensed under a Creative Commons **
** Attribution-Noncommercial-Share Alike 3.0 United States License. **
** **
** All other code are released under the Public Domain **
** by the ACC Development Team. **
** **
** See CREDITS for the list of developers. **
***************************************************************************/
// load the configuration
require_once 'config.inc.php';
// Get all the classes.
require_once 'functions.php';
initialiseSession();
require_once 'includes/PdoDatabase.php';
require_once 'includes/SmartyInit.php';
require_once 'includes/session.php';
// Check to see if the database is unavailable.
// Uses the false variable as its the internal interface.
if (Offline::isOffline()) {
echo Offline::getOfflineMessage(false);
die();
}
// Initialize the class objects.
$session = new session();
#region User search
if (isset($_GET['usersearch'])) {
$user = User::getByUsername($_GET['usersearch'], gGetDb());
if ($user != false) {
header("Location: $baseurl/statistics.php?page=Users&user={$user->getId()}");
die();
}
}
#endregion
// Display the header of the interface.
BootstrapSkin::displayInternalHeader();
// A content block is created if the action is none of the above.
// This block would later be used to keep all the HTML except the header and footer.
$out = "<div class=\"row-fluid\"><div id=\"span12\">";
BootstrapSkin::pushTagStack("</div>");
BootstrapSkin::pushTagStack("</div>");
echo $out;
#region Checks if the current user has admin rights.
if (User::getCurrent()->isCommunityUser()) {
showlogin();
BootstrapSkin::displayInternalFooter();
die();
}
if (!User::getCurrent()->isAdmin()) {
// Displays both the error message and the footer of the interface.
BootstrapSkin::displayAlertBox(
"I'm sorry, but, this page is restricted to administrators only.",
"alert-error",
"Access Denied",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
#endregion
#region user access actions
if (isset ($_GET['approve'])) {
$user = User::getById($_GET['approve'], gGetDb());
if ($user == false) {
BootstrapSkin::displayAlertBox(
"Sorry, the user you are trying to approve could not be found.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
if ($user->isUser() || $user->isAdmin()) {
BootstrapSkin::displayAlertBox(
"Sorry, the user you are trying to approve has already been approved.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
$user->approve();
BootstrapSkin::displayAlertBox(
"Approved user " . htmlentities($user->getUsername(), ENT_COMPAT, 'UTF-8'),
"alert-info",
"",
false);
Notification::userApproved($user);
$headers = 'From: accounts-enwiki-l@lists.wikimedia.org';
// TODO: move to template?
mail($user->getEmail(), "ACC Account Approved", "Dear " . $user->getOnWikiName() . ",\nYour account " . $user->getUsername() . " has been approved by " . User::getCurrent()->getUsername() . ". To login please go to $baseurl/acc.php.\nPlease note that if you cannot login immediately, we may be updating your identification information in the system. Please let us know if you continue to have issues if you cannot login after 12 hours pass from the time you receive this approval.\n- The English Wikipedia Account Creation Team", $headers);
BootstrapSkin::displayInternalFooter();
die();
}
if (isset ($_GET['demote'])) {
$user = User::getById($_GET['demote'], gGetDb());
if ($user == false) {
BootstrapSkin::displayAlertBox(
"Sorry, the user you are trying to demote could not be found.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
if (!$user->isAdmin()) {
BootstrapSkin::displayAlertBox(
"Sorry, the user you are trying to demote is not an admin.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
if (!isset($_POST['reason'])) {
global $smarty;
$smarty->assign("user", $user);
$smarty->assign("status", "User");
$smarty->assign("action", "demote");
$smarty->display("usermanagement/changelevel-reason.tpl");
BootstrapSkin::displayInternalFooter();
die();
}
else {
$user->demote($_POST['reason']);
BootstrapSkin::displayAlertBox(
"Changed " . htmlentities($user->getUsername(), ENT_COMPAT, 'UTF-8') . "'s access to 'User'",
"alert-info",
"",
false);
Notification::userDemoted($user, $_POST['reason']);
$headers = 'From: accounts-enwiki-l@lists.wikimedia.org';
// TODO: move to template?
mail($user->getEmail(), "ACC Account Demoted", "Dear " . $user->getOnWikiName() . ",\nYour account " . $user->getUsername() . " has been demoted by " . User::getCurrent()->getUsername() . " because " . User::getCurrent()->getUsername() . ". To contest this demotion please email accounts-enwiki-l@lists.wikimedia.org.\n- The English Wikipedia Account Creation Team", $headers);
BootstrapSkin::displayInternalFooter();
die();
}
}
if (isset ($_GET['suspend'])) {
$user = User::getById($_GET['suspend'], gGetDb());
if ($user == false) {
BootstrapSkin::displayAlertBox(
"Sorry, the user you are trying to suspend could not be found.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
if ($user->isSuspended()) {
BootstrapSkin::displayAlertBox(
"Sorry, the user you are trying to suspend is already suspended.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
elseif (!isset($_POST['reason'])) {
global $smarty;
$smarty->assign("user", $user);
$smarty->assign("status", "Suspended");
$smarty->assign("action", "suspend");
$smarty->display("usermanagement/changelevel-reason.tpl");
BootstrapSkin::displayInternalFooter();
die();
}
else {
$user->suspend($_POST['reason']);
Notification::userSuspended($user, $_POST['reason']);
BootstrapSkin::displayAlertBox(
"Suspended user " . htmlentities($user->getUsername(), ENT_COMPAT, 'UTF-8'),
"alert-info",
"",
false);
$headers = 'From: accounts-enwiki-l@lists.wikimedia.org';
// TODO: move to template?
mail($user->getEmail(), "ACC Account Suspended", "Dear " . $user->getOnWikiName() . ",\nYour account " . $user->getUsername() . " has been suspended by " . User::getCurrent()->getUsername() . " because " . $_POST['reason'] . ". To contest this suspension please email accounts-enwiki-l@lists.wikimedia.org.\n- The English Wikipedia Account Creation Team", $headers);
BootstrapSkin::displayInternalFooter();
die();
}
}
if (isset ($_GET['promote'])) {
$user = User::getById($_GET['promote'], gGetDb());
if ($user == false) {
BootstrapSkin::displayAlertBox(
"Sorry, the user you are trying to promote could not be found.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
if ($user->isAdmin()) {
BootstrapSkin::displayAlertBox(
"Sorry, the user you are trying to promote has Administrator access.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
$user->promote();
Notification::userPromoted($user);
BootstrapSkin::displayAlertBox(
htmlentities($user->getUsername(), ENT_COMPAT, 'UTF-8') . " promoted to 'Admin'",
"alert-info",
"",
false);
$headers = 'From: accounts-enwiki-l@lists.wikimedia.org';
// TODO: move to template?
mail($user->getEmail(), "ACC Account Promoted", "Dear " . $user->getOnWikiName() . ",\nYour account " . $user->getUsername() . " has been promted to admin status by " . User::getCurrent()->getUsername() . ".\n- The English Wikipedia Account Creation Team", $headers);
die();
}
if (isset ($_GET['decline'])) {
$user = User::getById($_GET['decline'], gGetDb());
if ($user == false) {
BootstrapSkin::displayAlertBox(
"Sorry, the user you are trying to decline could not be found.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
if ($user->isAdmin()) {
BootstrapSkin::displayAlertBox("Sorry, the user you are trying to decline is not new.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
if (!isset($_POST['reason'])) {
global $smarty;
$smarty->assign("user", $user);
$smarty->assign("status", "Declined");
$smarty->assign("action", "decline");
$smarty->display("usermanagement/changelevel-reason.tpl");
BootstrapSkin::displayInternalFooter();
die();
}
else {
$user->decline($_POST['reason']);
Notification::userDeclined($user, $_POST['reason']);
BootstrapSkin::displayAlertBox(
"Declined user " . htmlentities($user->getUsername(), ENT_COMPAT, 'UTF-8'),
"alert-info",
"",
false);
$headers = 'From: accounts-enwiki-l@lists.wikimedia.org';
// TODO: move to template?
mail($user->getEmail(), "ACC Account Declined", "Dear " . $user->getOnWikiName() . ",\nYour account " . $user->getUsername() . " has been declined access to the account creation tool by " . User::getCurrent()->getUsername() . " because " . $_POST['reason'] . ". For more infomation please email accounts-enwiki-l@lists.wikimedia.org.\n- The English Wikipedia Account Creation Team", $headers);
BootstrapSkin::displayInternalFooter();
die();
}
}
#endregion
#region renaming
if (isset ($_GET['rename'])) {
$user = User::getById($_GET['rename'], gGetDb());
if ($user == false) {
BootstrapSkin::displayAlertBox(
"Sorry, the user you are trying to rename could not be found.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
if (!isset($_POST['newname'])) {
global $smarty;
$smarty->assign("user", $user);
$smarty->display("usermanagement/renameuser.tpl");
BootstrapSkin::displayInternalFooter();
die();
}
else {
if (!isset($_POST['newname']) || trim($_POST['newname']) == "") {
BootstrapSkin::displayAlertBox("The new username cannot be empty.", "alert-error", "Error", true, false);
BootstrapSkin::displayInternalFooter();
die();
}
if (User::getByUsername($_POST['newname'], gGetDb()) != false) {
BootstrapSkin::displayAlertBox("Username already exists.", "alert-error", "Error", true, false);
BootstrapSkin::displayInternalFooter();
die();
}
$database = gGetDb();
if (!$database->beginTransaction()) {
BootstrapSkin::displayAlertBox(
"Database transaction could not be started.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
try {
$oldname = $user->getUsername();
$user->setUsername($_POST['newname']);
$user->save();
$logentry = serialize(array('old' => $oldname, 'new' => $_POST['newname']));
Logger::renamedUser($database, $user, $logentry);
BootstrapSkin::displayAlertBox(
"Changed User "
. htmlentities($oldname, ENT_COMPAT, 'UTF-8')
. " name to "
. htmlentities($_POST['newname'], ENT_COMPAT, 'UTF-8'),
"alert-info",
"",
false);
}
catch (Exception $ex) {
$database->rollBack();
BootstrapSkin::displayAlertBox($ex->getMessage(), "alert-error", "Error", true, false);
BootstrapSkin::displayInternalFooter();
die();
}
$database->commit();
Notification::userRenamed($user, $oldname);
BootstrapSkin::displayInternalFooter();
die();
}
}
#endregion
#region edit user
if (isset ($_GET['edituser'])) {
$user = User::getById($_GET['edituser'], gGetDb());
if ($user == false) {
BootstrapSkin::displayAlertBox(
"Sorry, the user you are trying to rename could not be found.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
if ($_SERVER['REQUEST_METHOD'] != "POST") {
global $smarty;
$smarty->assign("user", $user);
$smarty->display("usermanagement/edituser.tpl");
}
else {
$database = gGetDb();
if (!$database->beginTransaction()) {
BootstrapSkin::displayAlertBox(
"Database transaction could not be started.",
"alert-error",
"Error",
true,
false);
BootstrapSkin::displayInternalFooter();
die();
}
try {
$user->setEmail($_POST['user_email']);
if (!$user->isOAuthLinked()) {
$user->setOnWikiName($_POST['user_onwikiname']);
}
$user->save();
Logger::userPreferencesChange($database, $user);
Notification::userPrefChange($user);
BootstrapSkin::displayAlertBox("Changes saved.", "alert-info");
}
catch (Exception $ex) {
$database->rollBack();
BootstrapSkin::displayAlertBox($ex->getMessage(), "alert-error", "Error", true, false);
BootstrapSkin::displayInternalFooter();
die();
}
$database->commit();
}
BootstrapSkin::displayInternalFooter();
die();
}
#endregion
// --------------------- USER MANAGEMENT MAIN PAGE -----------------------------------------
echo <<<HTML
<div class="page-header">
<h1>User Management<small> Approve, suspend, promote, demote, etc. <a class="btn btn-primary" href="?showall"><i class="icon-white icon-eye-open"></i> Show all</a></small></h1>
</div>
HTML;
BootstrapSkin::displayAlertBox(
"If it says you can do it, you can do it. Please use this responsibly.",
"alert-warning",
"This interface is NOT a toy.",
true,
false);
// assign to user
$tailscript = getTypeaheadSource(User::getAllUsernames(gGetDb()));
echo <<<HTML
<div class="row-fluid">
<form class="form-search">
<input type="text" class="input-large username-typeahead" placeholder="Jump to user" data-provide="typeahead" data-items="10" name="usersearch">
<button type="submit" class="btn">Search</button>
</form>
</div>
HTML;
/**
* CURRENTLY UNUSED!!
*
* Shows A list of users in a table with the relevant buttons for that access level.
*
* Uses smarty
*
* Different levels may require the use of different data attributes.
*
* @param $data An array of arrays (see example)
* @param $level The user access level
* @example showUserList( array(
* 1 => array(
* "username" => "foo",
* "onwikiname" => "foo",
* ),
* )
*
*/
function showUserList($data, $level)
{
global $smarty;
$smarty->assign("listuserlevel", $level);
$smarty->assign("listuserdata", $data);
$smarty->display("usermanagement-userlist.tpl");
}
global $smarty;
echo '<div class="row-fluid"><div class="span12"><div class="accordion" id="accordion2">';
BootstrapSkin::pushTagStack("</div>");
BootstrapSkin::pushTagStack("</div>");
BootstrapSkin::pushTagStack("</div>");
$database = gGetDb();
$result = User::getAllWithStatus("New", $database);
if ($result != false && count($result) != 0) {
echo <<<HTML
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseOne">Open requests</a>
</div>
<div id="collapseOne" class="accordion-body collapse in"><div class="accordion-inner">
HTML;
$smarty->assign("userlist", $result);
$smarty->display("usermanagement/userlist.tpl");
echo "</div></div></div>\n";
}
echo <<<HTML
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseTwo">Users</a>
</div>
<div id="collapseTwo" class="accordion-body collapse"><div class="accordion-inner">
HTML;
$result = User::getAllWithStatus("User", $database);
$smarty->assign("userlist", $result);
$smarty->display("usermanagement/userlist.tpl");
echo <<<HTML
</div>
</div></div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseThree">Admins</a>
</div>
<div id="collapseThree" class="accordion-body collapse"><div class="accordion-inner">
<p class="muted">
Please note: Users marked as checkusers automatically get administrative rights, even if they do
not appear in the tool administrators section.
</p>
HTML;
$result = User::getAllWithStatus("Admin", $database);
$smarty->assign("userlist", $result);
$smarty->display("usermanagement/userlist.tpl");
echo <<<HTML
</div>
</div></div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseFour">Tool Checkuser access</a>
</div>
<div id="collapseFour" class="accordion-body collapse"><div class="accordion-inner">
<p class="muted">
Please note: Users marked as checkusers automatically get administrative rights, even if they do
not appear in the tool administrators section.
</p>
HTML;
$result = User::getAllCheckusers($database);
$smarty->assign("userlist", $result);
$smarty->display("usermanagement/userlist.tpl");
echo '</div></div></div>';
if (isset($_GET['showall'])) {
echo <<<HTML
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseFive">Suspended accounts</a>
</div>
<div id="collapseFive" class="accordion-body collapse"><div class="accordion-inner">
HTML;
$result = User::getAllWithStatus("Suspended", $database);
$smarty->assign("userlist", $result);
$smarty->display("usermanagement/userlist.tpl");
echo <<<HTML
</div>
</div></div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseSix">Declined accounts</a>
</div>
<div id="collapseSix" class="accordion-body collapse"><div class="accordion-inner">
HTML;
$result = User::getAllWithStatus("Declined", $database);
$smarty->assign("userlist", $result);
$smarty->display("usermanagement/userlist.tpl");
echo "</div></div></div>";
}
BootstrapSkin::displayInternalFooter($tailscript);
die();