summaryrefslogtreecommitdiffstats
path: root/sections/user/takemoderate.php
blob: fb1ca91fd19ac46752ea72ebdf5b2dd096e19254 (plain)
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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
<?
/*************************************************************************\
//--------------Take moderation -----------------------------------------//



\*************************************************************************/

// Are they being tricky blighters?
if (!$_POST['userid'] || !is_number($_POST['userid'])) {
	error(404);
} elseif (!check_perms('users_mod')) {
	error(403);
}
authorize();
// End checking for moronity

$UserID = $_POST['userid'];
$DeleteKeys = false;

// Variables for database input
$Class = (int)$_POST['Class'];
$Username = db_string($_POST['Username']);
$Title = db_string($_POST['Title']);
$AdminComment = db_string($_POST['AdminComment']);
$Donor = isset($_POST['Donor']) ? 1 : 0;
$Artist = isset($_POST['Artist']) ? 1 : 0;
$SecondaryClasses = isset($_POST['secondary_classes']) ? $_POST['secondary_classes'] : array();
foreach ($SecondaryClasses as $i => $Val) {
	if (!is_number($Val)) {
		unset($SecondaryClasses[$i]);
	}
}
$Visible = isset($_POST['Visible']) ? 1 : 0;
$Invites = (int)$_POST['Invites'];
$SupportFor = db_string($_POST['SupportFor']);
$Pass = $_POST['ChangePassword'];
$Warned = isset($_POST['Warned']) ? 1 : 0;
$Logs095 = (int)$_POST['095logs'];
if (isset($_POST['Uploaded']) && isset($_POST['Downloaded'])) {
	$Uploaded = ($_POST['Uploaded'] === '' ? 0 : $_POST['Uploaded']);
	if ($Arithmetic = strpbrk($Uploaded, '+-')) {
		$Uploaded += max(-$Uploaded, Format::get_bytes($Arithmetic));
	}
	$Downloaded = ($_POST['Downloaded'] === '' ? 0 : $_POST['Downloaded']);
	if ($Arithmetic = strpbrk($Downloaded, '+-')) {
		$Downloaded += max(-$Downloaded, Format::get_bytes($Arithmetic));
	}
	if (!is_number($Uploaded) || !is_number($Downloaded)) {
		error(0);
	}
}
$FLTokens = isset($_POST['FLTokens']) ? $_POST['FLTokens'] : 0;
if (!is_number($FLTokens)) {
	error(0);
}

$WarnLength = (int)$_POST['WarnLength'];
$ExtendWarning = (int)$_POST['ExtendWarning'];
$ReduceWarning = (int)$_POST['ReduceWarning'];
$WarnReason = $_POST['WarnReason'];
$UserReason = $_POST['UserReason'];
$DisableAvatar = isset($_POST['DisableAvatar']) ? 1 : 0;
$DisableInvites = isset($_POST['DisableInvites']) ? 1 : 0;
$DisablePosting = isset($_POST['DisablePosting']) ? 1 : 0;
$DisableForums = isset($_POST['DisableForums']) ? 1 : 0;
$DisableTagging = isset($_POST['DisableTagging']) ? 1 : 0;
$DisableUpload = isset($_POST['DisableUpload']) ? 1 : 0;
$DisableWiki = isset($_POST['DisableWiki']) ? 1 : 0;
$DisablePM = isset($_POST['DisablePM']) ? 1 : 0;
$DisableIRC = isset($_POST['DisableIRC']) ? 1 : 0;
$DisableRequests = isset($_POST['DisableRequests']) ? 1 : 0;
$DisableLeech = isset($_POST['DisableLeech']) ? 0 : 1;
$LockedAccount = isset($_POST['LockAccount']) ? 1 : 0;
$LockType = $_POST['LockReason'];

$RestrictedForums = db_string(trim($_POST['RestrictedForums']));
$PermittedForums = db_string(trim($_POST['PermittedForums']));
$EnableUser = (int)$_POST['UserStatus'];
$ResetRatioWatch = isset($_POST['ResetRatioWatch']) ? 1 : 0;
$ResetPasskey = isset($_POST['ResetPasskey']) ? 1 : 0;
$ResetAuthkey = isset($_POST['ResetAuthkey']) ? 1 : 0;
$SendHackedMail = isset($_POST['SendHackedMail']) ? 1 : 0;
if ($SendHackedMail && !empty($_POST['HackedEmail'])) {
	$HackedEmail = $_POST['HackedEmail'];
} else {
	$SendHackedMail = false;
}
$MergeStatsFrom = db_string($_POST['MergeStatsFrom']);
$Reason = db_string($_POST['Reason']);
$HeavyUpdates = array();
$LightUpdates = array();

// Get user info from the database

$DB->query("
	SELECT
		m.Username,
		m.IP,
		m.Email,
		m.PermissionID,
		p.Level AS Class,
		m.Title,
		m.Enabled,
		m.Uploaded,
		m.Downloaded,
		m.Invites,
		m.can_leech,
		m.Visible,
		i.AdminComment,
		m.torrent_pass,
		i.Donor,
		i.Artist,
		i.Warned,
		i.SupportFor,
		i.RestrictedForums,
		i.PermittedForums,
		DisableAvatar,
		DisableInvites,
		DisablePosting,
		DisableForums,
		DisableTagging,
		DisableUpload,
		DisableWiki,
		DisablePM,
		DisableIRC,
		DisableRequests,
		m.RequiredRatio,
		m.FLTokens,
		i.RatioWatchEnds,
		la.Type,
		SHA1(i.AdminComment) AS CommentHash,
		GROUP_CONCAT(l.PermissionID SEPARATOR ',') AS SecondaryClasses
	FROM users_main AS m
		JOIN users_info AS i ON i.UserID = m.ID
		LEFT JOIN permissions AS p ON p.ID = m.PermissionID
		LEFT JOIN users_levels AS l ON l.UserID = m.ID
		LEFT JOIN locked_accounts AS la ON la.UserID = m.ID
	WHERE m.ID = $UserID
	GROUP BY m.ID");

if (!$DB->has_results()) { // If user doesn't exist
	header("Location: log.php?search=User+$UserID");
}

$Cur = $DB->next_record(MYSQLI_ASSOC, false);
if ($_POST['comment_hash'] != $Cur['CommentHash']) {
	error("Somebody else has moderated this user since you loaded it. Please go back and refresh the page.");
}

//NOW that we know the class of the current user, we can see if one staff member is trying to hax0r us.
if (!check_perms('users_mod', $Cur['Class'])) {
	//Son of a fucking bitch
	error(403);
	die();
}

if (!empty($_POST['donor_points_submit']) && !empty($_POST['donation_value']) && is_numeric($_POST['donation_value'])) {
	Donations::regular_donate($UserID, $_POST['donation_value'], "Add Points", $_POST['donation_reason'], $_POST['donation_currency']);
} elseif (!empty($_POST['donor_values_submit'])) {
	Donations::update_rank($UserID, $_POST['donor_rank'], $_POST['total_donor_rank'], $_POST['reason']);
}


// If we're deleting the user, we can ignore all the other crap

if ($_POST['UserStatus'] === 'delete' && check_perms('users_delete_users')) {
	Misc::write_log("User account $UserID (".$Cur['Username'].") was deleted by ".$LoggedUser['Username']);
	$DB->query("
		DELETE FROM users_main
		WHERE id = $UserID");
	$DB->query("
		DELETE FROM users_info
		WHERE UserID = $UserID");
	$Cache->delete_value("user_info_$UserID");

	Tracker::update_tracker('remove_user', array('passkey' => $Cur['torrent_pass']));

	header("Location: log.php?search=User+$UserID");
	die();
}

// User was not deleted. Perform other stuff.

$UpdateSet = array();
$EditSummary = array();
$TrackerUserUpdates = array('passkey' => $Cur['torrent_pass']);

$QueryID = G::$DB->get_query_id();

if ($LockType == '---' || $LockedAccount == 0) {
	if ($Cur['Type']) {
		$DB->query("DELETE FROM locked_accounts WHERE UserID = '" . $UserID . "'");
		$EditSummary[] = 'Account unlocked';
		$Cache->delete_value('user_' . $Cur['torrent_pass']);
	}
} else if (!$Cur['Type'] || $Cur['Type'] != $LockType) {
	$DB->query("INSERT INTO locked_accounts (UserID, Type)
				VALUES ('" . $UserID . "', '" . $LockType . "')
				ON DUPLICATE KEY UPDATE Type = '" . $LockType . "'");
	$Cache->delete_value('user_' . $Cur['torrent_pass']);
		
	if ($Cur['Type'] != $LockType) {
		$EditSummary[] = 'Account lock reason changed to ' . $LockType;
	} else {
		$EditSummary[] = 'Account locked (' . $LockType . ')';
	}
	
}
$Cache->delete_value("user_info_" . $UserID);
$DB->set_query_id($QueryID);

if ($_POST['ResetRatioWatch'] && check_perms('users_edit_reset_keys')) {
	$DB->query("
		UPDATE users_info
		SET RatioWatchEnds = '0000-00-00 00:00:00', RatioWatchDownload = '0', RatioWatchTimes = '0'
		WHERE UserID = '$UserID'");
	$EditSummary[] = 'RatioWatch history reset';
}

if ($_POST['ResetIPHistory'] && check_perms('users_edit_reset_keys')) {

	$DB->query("
		DELETE FROM users_history_ips
		WHERE UserID = '$UserID'");
	$DB->query("
		UPDATE users_main
		SET IP = '127.0.0.1'
		WHERE ID = '$UserID'");
	$DB->query("
		UPDATE xbt_snatched
		SET IP = ''
		WHERE uid = '$UserID'");
	$DB->query("
		UPDATE users_history_passwords
		SET ChangerIP = ''
		WHERE UserID = $UserID");
	$DB->query("
		UPDATE users_history_passkeys
		SET ChangerIP = ''
		WHERE UserID = $UserID");
	$DB->query("
		UPDATE users_sessions
		SET IP = '127.0.0.1'
		WHERE UserID = $UserID");

	$EditSummary[] = 'IP history cleared';
}

if ($_POST['ResetEmailHistory'] && check_perms('users_edit_reset_keys')) {
	$DB->query("
		DELETE FROM users_history_emails
		WHERE UserID = '$UserID'");
	if ($_POST['ResetIPHistory']) {
		$DB->query("
			INSERT INTO users_history_emails
				(UserID, Email, Time, IP)
			VALUES
				('$UserID', '$Username@".SITE_URL."', '0000-00-00 00:00:00', '127.0.0.1')");
	} else {
		$DB->query("
			INSERT INTO users_history_emails
				(UserID, Email, Time, IP)
			VALUES
				('$UserID', '$Username@".SITE_URL."', '0000-00-00 00:00:00', '".$Cur['IP']."')");
	}
	$DB->query("
		UPDATE users_main
		SET Email = '$Username@".SITE_URL."'
		WHERE ID = '$UserID'");
	$DB->query("
		UPDATE users_history_invites AS uhi
		JOIN users_main um ON um.ID = uhi.InvitedID
		  AND (
		    um.IP IN ('127.0.0.1', '0.0.0.0')
		    OR um.Visible = '0'
		  )
		SET uhi.Email = '$Username@".SITE_URL."'
		WHERE uhi.Email != um.Email
			AND uhi.InvitedID = '$UserID'");

	$EditSummary[] = 'Email history cleared';
}

if ($_POST['ResetSnatchList'] && check_perms('users_edit_reset_keys')) {
	$DB->query("
		DELETE FROM xbt_snatched
		WHERE uid = '$UserID'");
	$EditSummary[] = 'Snatch list cleared';
	$Cache->delete_value("recent_snatches_$UserID");
}

if ($_POST['ResetDownloadList'] && check_perms('users_edit_reset_keys')) {
	$DB->query("
		DELETE FROM users_downloads
		WHERE UserID = '$UserID'");
	$EditSummary[] = 'Download list cleared';
}

if (($_POST['ResetSession'] || $_POST['LogOut']) && check_perms('users_logout')) {
	$Cache->delete_value("user_info_$UserID");
	$Cache->delete_value("user_info_heavy_$UserID");
	$Cache->delete_value("user_stats_$UserID");
	$Cache->delete_value("enabled_$UserID");

	if ($_POST['LogOut']) {
		$DB->query("
			SELECT SessionID
			FROM users_sessions
			WHERE UserID = '$UserID'");
		while (list($SessionID) = $DB->next_record()) {
			$Cache->delete_value("session_{$UserID}_$SessionID");
		}
		$Cache->delete_value("users_sessions_$UserID");

		$DB->query("
			DELETE FROM users_sessions
			WHERE UserID = '$UserID'");

	}
}

if ($Logs095 !== 0) {
	$TargetScore = $Logs095 === 100 ? 99 : 100;
	$Logs = $DB->query("
		SELECT DISTINCT TorrentID
		FROM torrents_logs_new
			JOIN torrents ON ID = TorrentID
		WHERE Log LIKE 'EAC extraction logfile%'
			AND UserID = $UserID
			AND Score = $TargetScore
			AND (Adjusted = '0' OR Adjusted = '')");
	while (list($TorrentID) = $DB->next_record()) {
		$Results = array();
		if ($Logs095 === 100) {
			$Details = '';
		} else {
			$Results[] = 'The original uploader has chosen to allow this log to be deducted one point for using EAC v0.95., -1 point [1]';
			$Details = db_string(serialize($Results));
		}

		$DB->query("
			UPDATE torrents
			SET LogScore = $Logs095
			WHERE ID = $TorrentID");
		$DB->query("
			UPDATE torrents_logs_new
			SET Score = $Logs095, Details = '$Details'
			WHERE TorrentID = $TorrentID");
		$DB->set_query_id($Logs);
	}
	$EditSummary[] = "EAC v0.95 logs rescored to $Logs095";
}

// Start building SQL query and edit summary
if ($Classes[$Class]['Level'] != $Cur['Class']
	&& (
		($Classes[$Class]['Level'] < $LoggedUser['Class'] && check_perms('users_promote_below', $Cur['Class']))
		|| ($Classes[$Class]['Level'] <= $LoggedUser['Class'] && check_perms('users_promote_to', $Cur['Class'] - 1))
		)
	) {
	$UpdateSet[] = "PermissionID = '$Class'";
	$EditSummary[] = 'class changed to '.Users::make_class_string($Class);
	$LightUpdates['PermissionID'] = $Class;
	$DeleteKeys = true;

	$DB->query("
		SELECT DISTINCT DisplayStaff
		FROM permissions
		WHERE ID = $Class
			OR ID = ".$ClassLevels[$Cur['Class']]['ID']);
	if ($DB->record_count() === 2) {
		if ($Classes[$Class]['Level'] < $Cur['Class']) {
			$SupportFor = '';
		}
		$ClearStaffIDCache = true;
	}
	$Cache->delete_value("donor_info_$UserID");
}

if ($Username != $Cur['Username'] && check_perms('users_edit_usernames', $Cur['Class'] - 1)) {
	$DB->query("
		SELECT ID
		FROM users_main
		WHERE Username = '$Username'");
	if ($DB->next_record() > 0) {
		list($UsedUsernameID) = $DB->next_record();
		error("Username already in use by <a href=\"user.php?id=$UsedUsernameID\">$Username</a>");
		header("Location: user.php?id=$UserID");
		die();
	} elseif ($Username == '0' || $Username == '1') {
		error('You cannot set a username of "0" or "1".');
		header("Location: user.php?id=$UserID");
		die();
	} else {
		$UpdateSet[] = "Username = '$Username'";
		$EditSummary[] = "username changed from ".$Cur['Username']." to $Username";
		$LightUpdates['Username'] = $Username;
	}
}

if ($Title != db_string($Cur['Title']) && check_perms('users_edit_titles')) {
	// Using the unescaped value for the test to avoid confusion
	if (strlen($_POST['Title']) > 1024) {
		error("Custom titles have a maximum length of 1,024 characters.");
		header("Location: user.php?id=$UserID");
		die();
	} else {
		$UpdateSet[] = "Title = '$Title'";
		$EditSummary[] = "title changed to [code]{$Title}[/code]";
		$LightUpdates['Title'] = $_POST['Title'];
	}
}

if ($Donor != $Cur['Donor'] && check_perms('users_give_donor')) {
	$UpdateSet[] = "Donor = '$Donor'";
	$EditSummary[] = 'donor status changed';
	$LightUpdates['Donor'] = $Donor;
}

// Secondary classes
$OldClasses = $Cur['SecondaryClasses'] ? explode(',', $Cur['SecondaryClasses']) : array();
$DroppedClasses = array_diff($OldClasses, $SecondaryClasses);
$AddedClasses   = array_diff($SecondaryClasses, $OldClasses);
if (count($DroppedClasses) > 0) {
	$ClassChanges = array();
	foreach ($DroppedClasses as $PermID) {
		$ClassChanges[] = $Classes[$PermID]['Name'];
	}
	$EditSummary[] = 'Secondary classes dropped: '.implode(', ', $ClassChanges);
	$DB->query("
		DELETE FROM users_levels
		WHERE UserID = '$UserID'
			AND PermissionID IN (".implode(',', $DroppedClasses).')');
	if (count($SecondaryClasses) > 0) {
		$LightUpdates['ExtraClasses'] = array_fill_keys($SecondaryClasses, 1);
	} else {
		$LightUpdates['ExtraClasses'] = array();
	}
	$DeleteKeys = true;
}
if (count($AddedClasses) > 0) {
	$ClassChanges = array();
	foreach ($AddedClasses as $PermID) {
		$ClassChanges[] = $Classes[$PermID]['Name'];
	}
	$EditSummary[] = "Secondary classes added: ".implode(', ', $ClassChanges);
	$Values = array();
	foreach ($AddedClasses as $PermID) {
		$Values[] = "($UserID, $PermID)";

	}
	$DB->query("
		INSERT INTO users_levels (UserID, PermissionID)
		VALUES ".implode(', ', $Values));
	//$LightUpdates['ExtraClasses'] = array_fill_keys($SecondaryClasses, 1);
	$DeleteKeys = true;
}

if ($Visible != $Cur['Visible'] && check_perms('users_make_invisible')) {
	$UpdateSet[] = "Visible = '$Visible'";
	$EditSummary[] = 'visibility changed';
	$LightUpdates['Visible'] = $Visible;
	$TrackerUserUpdates['visible'] = $Visible;
}

if ($Uploaded != $Cur['Uploaded'] && $Uploaded != $_POST['OldUploaded'] && (check_perms('users_edit_ratio')
	|| (check_perms('users_edit_own_ratio') && $UserID == $LoggedUser['ID']))) {
		$UpdateSet[] = "Uploaded = '$Uploaded'";
		$EditSummary[] = "uploaded changed from ".Format::get_size($Cur['Uploaded']).' to '.Format::get_size($Uploaded);
		$Cache->delete_value("user_stats_$UserID");
}

if ($Downloaded != $Cur['Downloaded'] && $Downloaded != $_POST['OldDownloaded'] && (check_perms('users_edit_ratio')
	|| (check_perms('users_edit_own_ratio') && $UserID == $LoggedUser['ID']))) {
		$UpdateSet[] = "Downloaded = '$Downloaded'";
		$EditSummary[] = "downloaded changed from ".Format::get_size($Cur['Downloaded']).' to '.Format::get_size($Downloaded);
		$Cache->delete_value("user_stats_$UserID");
}

if ($FLTokens != $Cur['FLTokens'] && (check_perms('users_edit_ratio') || (check_perms('users_edit_own_ratio') && $UserID == $LoggedUser['ID']))) {
	$UpdateSet[] = "FLTokens = $FLTokens";
	$EditSummary[] = "Freeleech Tokens changed from ".$Cur['FLTokens']." to $FLTokens";
	$HeavyUpdates['FLTokens'] = $FLTokens;
}

if ($Invites != $Cur['Invites'] && check_perms('users_edit_invites')) {
	$UpdateSet[] = "invites = '$Invites'";
	$EditSummary[] = "number of invites changed to $Invites";
	$HeavyUpdates['Invites'] = $Invites;
}

if ($Warned == 1 && $Cur['Warned'] == '0000-00-00 00:00:00' && check_perms('users_warn')) {
	$Weeks = 'week' . ($WarnLength === 1 ? '' : 's');
	Misc::send_pm($UserID, 0, 'You have received a warning', "You have been [url=".site_url()."wiki.php?action=article&amp;id=218]warned for $WarnLength {$Weeks}[/url] by [user]".$LoggedUser['Username']."[/user]. The reason given was:
[quote]{$WarnReason}[/quote]");
	$UpdateSet[] = "Warned = '".sqltime()."' + INTERVAL $WarnLength WEEK";
	$Msg = "warned for $WarnLength $Weeks";
	if ($WarnReason) {
		$Msg .= " for \"$WarnReason\"";
	}
	$EditSummary[] = db_string($Msg);
	$LightUpdates['Warned'] = time_plus(3600 * 24 * 7 * $WarnLength);

} elseif ($Warned == 0 && $Cur['Warned'] != '0000-00-00 00:00:00' && check_perms('users_warn')) {
	$UpdateSet[] = "Warned = '0000-00-00 00:00:00'";
	$EditSummary[] = 'warning removed';
	$LightUpdates['Warned'] = '0000-00-00 00:00:00';

} elseif ($Warned == 1 && $ExtendWarning != '---' && check_perms('users_warn')) {
	$Weeks = 'week' . ($ExtendWarning === 1 ? '' : 's');
	Misc::send_pm($UserID, 0, 'Your warning has been extended', "Your warning has been extended by $ExtendWarning $Weeks by [user]".$LoggedUser['Username']."[/user]. The reason given was:
[quote]{$WarnReason}[/quote]");

	$UpdateSet[] = "Warned = Warned + INTERVAL $ExtendWarning WEEK";
	$DB->query("
		SELECT Warned + INTERVAL $ExtendWarning WEEK
		FROM users_info
		WHERE UserID = '$UserID'");
	list($WarnedUntil) = $DB->next_record();
	$Msg = "warning extended by $ExtendWarning $Weeks to $WarnedUntil";
	if ($WarnReason) {
		$Msg .= " for \"$WarnReason\"";
	}
	$EditSummary[] = db_string($Msg);
	$LightUpdates['Warned'] = $WarnedUntil;

} elseif ($Warned == 1 && $ExtendWarning == '---' && $ReduceWarning != '---' && check_perms('users_warn')) {
	$Weeks = 'week' . ($ReduceWarning === 1 ? '' : 's');
	Misc::send_pm($UserID, 0, 'Your warning has been reduced', "Your warning has been reduced by $ReduceWarning $Weeks by [user]".$LoggedUser['Username']."[/user]. The reason given was:
[quote]{$WarnReason}[/quote]");
	$UpdateSet[] = "Warned = Warned - INTERVAL $ReduceWarning WEEK";
	$DB->query("
		SELECT Warned - INTERVAL $ReduceWarning WEEK
		FROM users_info
		WHERE UserID = '$UserID'");
	list($WarnedUntil) = $DB->next_record();
	$Msg = "warning reduced by $ReduceWarning $Weeks to $WarnedUntil";
	if ($WarnReason) {
		$Msg .= " for \"$WarnReason\"";
	}
	$EditSummary[] = db_string($Msg);
	$LightUpdates['Warned'] = $WarnedUntil;
}

if ($SupportFor != db_string($Cur['SupportFor']) && (check_perms('admin_manage_fls') || (check_perms('users_mod') && $UserID == $LoggedUser['ID']))) {
	$UpdateSet[] = "SupportFor = '$SupportFor'";
	$EditSummary[] = "First-Line Support status changed to \"$SupportFor\"";
}

if ($RestrictedForums != db_string($Cur['RestrictedForums']) && check_perms('users_mod')) {
	$UpdateSet[] = "RestrictedForums = '$RestrictedForums'";
	$EditSummary[] = "restricted forum(s): $RestrictedForums";
	$DeleteKeys = true;
}

if ($PermittedForums != db_string($Cur['PermittedForums']) && check_perms('users_mod')) {
	$ForumSet = explode(',', $PermittedForums);
	$ForumList = array();
	foreach ($ForumSet as $ForumID) {
		if ($Forums[$ForumID]['MinClassCreate'] <= $LoggedUser['EffectiveClass']) {
			$ForumList[] = $ForumID;
		}
	}
	$PermittedForums = implode(',', $ForumSet);
	$UpdateSet[] = "PermittedForums = '$PermittedForums'";
	$EditSummary[] = "permitted forum(s): $PermittedForums";
	$DeleteKeys = true;
}

if ($DisableAvatar != $Cur['DisableAvatar'] && check_perms('users_disable_any')) {
	$UpdateSet[] = "DisableAvatar = '$DisableAvatar'";
	$EditSummary[] = 'avatar privileges ' . ($DisableAvatar ? 'disabled' : 'enabled');
	$HeavyUpdates['DisableAvatar'] = $DisableAvatar;
	if (!empty($UserReason)) {
		Misc::send_pm($UserID, 0, 'Your avatar privileges have been disabled', "Your avatar privileges have been disabled. The reason given was: [quote]{$UserReason}[/quote] If you would like to discuss this, please join ".BOT_DISABLED_CHAN.' on our IRC network. Instructions can be found [url='.site_url().'wiki.php?action=article&amp;name=IRC+-+How+to+join]here[/url].');
	}
}

if ($DisableLeech != $Cur['can_leech'] && check_perms('users_disable_any')) {
	$UpdateSet[] = "can_leech = '$DisableLeech'";
	$EditSummary[] = "leeching status changed (".translateLeechStatus($Cur['can_leech'])." -> ".translateLeechStatus($DisableLeech).")";
	$HeavyUpdates['DisableLeech'] = $DisableLeech;
	$HeavyUpdates['CanLeech'] = $DisableLeech;
	if (!empty($UserReason)) {
		Misc::send_pm($UserID, 0, 'Your leeching privileges have been disabled', "Your leeching privileges have been disabled. The reason given was: [quote]{$UserReason}[/quote] If you would like to discuss this, please join ".BOT_DISABLED_CHAN.' on our IRC network. Instructions can be found [url='.site_url().'wiki.php?action=article&amp;name=IRC+-+How+to+join]here[/url].');
	}
	$TrackerUserUpdates['can_leech'] = $DisableLeech;
}

if ($DisableInvites != $Cur['DisableInvites'] && check_perms('users_disable_any')) {
	$UpdateSet[] = "DisableInvites = '$DisableInvites'";
	if ($DisableInvites == 1) {
		//$UpdateSet[] = "Invites = '0'";
		if (!empty($UserReason)) {
			Misc::send_pm($UserID, 0, 'Your invite privileges have been disabled', "Your invite privileges have been disabled. The reason given was: [quote]{$UserReason}[/quote] If you would like to discuss this, please join ".BOT_DISABLED_CHAN.' on our IRC network. Instructions can be found [url='.site_url().'wiki.php?action=article&amp;name=IRC+-+How+to+join]here[/url].');
		}
	}
	$EditSummary[] = 'invites privileges ' . ($DisableInvites ? 'disabled' : 'enabled');
	$HeavyUpdates['DisableInvites'] = $DisableInvites;
}

if ($DisablePosting != $Cur['DisablePosting'] && check_perms('users_disable_posts')) {
	$UpdateSet[] = "DisablePosting = '$DisablePosting'";
	$EditSummary[] = 'posting privileges ' . ($DisablePosting ? 'disabled' : 'enabled');
	$HeavyUpdates['DisablePosting'] = $DisablePosting;
	if (!empty($UserReason)) {
		Misc::send_pm($UserID, 0, 'Your forum posting privileges have been disabled', "Your forum posting privileges have been disabled. The reason given was: [quote]{$UserReason}[/quote] If you would like to discuss this, please join ".BOT_DISABLED_CHAN.' on our IRC network. Instructions can be found [url='.site_url().'wiki.php?action=article&amp;name=IRC+-+How+to+join]here[/url].');
	}
}

if ($DisableForums != $Cur['DisableForums'] && check_perms('users_disable_posts')) {
	$UpdateSet[] = "DisableForums = '$DisableForums'";
	$EditSummary[] = 'forums privileges ' . ($DisableForums ? 'disabled' : 'enabled');
	$HeavyUpdates['DisableForums'] = $DisableForums;
	if (!empty($UserReason)) {
		Misc::send_pm($UserID, 0, 'Your forum privileges have been disabled', "Your forum privileges have been disabled. The reason given was: [quote]{$UserReason}[/quote] If you would like to discuss this, please join ".BOT_DISABLED_CHAN.' on our IRC network. Instructions can be found [url='.site_url().'wiki.php?action=article&amp;name=IRC+-+How+to+join]here[/url].');
	}
}

if ($DisableTagging != $Cur['DisableTagging'] && check_perms('users_disable_any')) {
	$UpdateSet[] = "DisableTagging = '$DisableTagging'";
	$EditSummary[] = 'tagging privileges ' . ($DisableTagging ? 'disabled' : 'enabled');
	$HeavyUpdates['DisableTagging'] = $DisableTagging;
	if (!empty($UserReason)) {
		Misc::send_pm($UserID, 0, 'Your tagging privileges have been disabled', "Your tagging privileges have been disabled. The reason given was: [quote]{$UserReason}[/quote] If you would like to discuss this, please join ".BOT_DISABLED_CHAN.' on our IRC network. Instructions can be found [url='.site_url().'wiki.php?action=article&amp;name=IRC+-+How+to+join]here[/url].');
	}
}

if ($DisableUpload != $Cur['DisableUpload'] && check_perms('users_disable_any')) {
	$UpdateSet[] = "DisableUpload = '$DisableUpload'";
	$EditSummary[] = 'upload privileges ' . ($DisableUpload ? 'disabled' : 'enabled');
	$HeavyUpdates['DisableUpload'] = $DisableUpload;
	if ($DisableUpload == 1) {
		Misc::send_pm($UserID, 0, 'Your upload privileges have been disabled', "Your upload privileges have been disabled. The reason given was: [quote]{$UserReason}[/quote] If you would like to discuss this, please join ".BOT_DISABLED_CHAN.' on our IRC network. Instructions can be found [url='.site_url().'wiki.php?action=article&amp;name=IRC+-+How+to+join]here[/url].');
	}
}

if ($DisableWiki != $Cur['DisableWiki'] && check_perms('users_disable_any')) {
	$UpdateSet[] = "DisableWiki = '$DisableWiki'";
	$EditSummary[] = 'wiki privileges ' . ($DisableWiki ? 'disabled' : 'enabled');
	$HeavyUpdates['DisableWiki'] = $DisableWiki;
	$HeavyUpdates['site_edit_wiki'] = 0;
	if (!empty($UserReason)) {
		Misc::send_pm($UserID, 0, 'Your site editing privileges have been disabled', "Your site editing privileges have been disabled. The reason given was: [quote]{$UserReason}[/quote] If you would like to discuss this, please join ".BOT_DISABLED_CHAN.' on our IRC network. Instructions can be found [url='.site_url().'wiki.php?action=article&amp;name=IRC+-+How+to+join]here[/url].');
	}

}

if ($DisablePM != $Cur['DisablePM'] && check_perms('users_disable_any')) {
	$UpdateSet[] = "DisablePM = '$DisablePM'";
	$EditSummary[] = 'PM privileges ' . ($DisablePM ? 'disabled' : 'enabled');
	$HeavyUpdates['DisablePM'] = $DisablePM;
	if (!empty($UserReason)) {
		Misc::send_pm($UserID, 0, 'Your PM privileges have been disabled', "Your PM privileges have been disabled. The reason given was: [quote]{$UserReason}[/quote] If you would like to discuss this, please join ".BOT_DISABLED_CHAN.' on our IRC network. Instructions can be found [url='.site_url().'wiki.php?action=article&amp;name=IRC+-+How+to+join]here[/url].');
	}
}

if ($DisableIRC != $Cur['DisableIRC'] && check_perms('users_disable_any')) {
	$UpdateSet[] = "DisableIRC = '$DisableIRC'";
	$EditSummary[] = 'IRC privileges ' . ($DisableIRC ? 'disabled' : 'enabled');
	$HeavyUpdates['DisableIRC'] = $DisableIRC;
	if (!empty($UserReason)) {
		Misc::send_pm($UserID, 0, 'Your IRC privileges have been disabled', "Your IRC privileges have been disabled. The reason given was: [quote]{$UserReason}[/quote] If you would like to discuss this, please join ".BOT_DISABLED_CHAN.' on our IRC network. Instructions can be found [url='.site_url().'wiki.php?action=article&amp;name=IRC+-+How+to+join]here[/url]. This loss of privileges does not affect the ability to join and talk to staff in '.BOT_DISABLED_CHAN.'.');
	}
}

if ($DisableRequests != $Cur['DisableRequests'] && check_perms('users_disable_any')) {
	$UpdateSet[] = "DisableRequests = '$DisableRequests'";
	$EditSummary[] = 'request privileges ' . ($DisableRequests ? 'disabled' : 'enabled');
	$HeavyUpdates['DisableRequests'] = $DisableRequests;
	if (!empty($UserReason)) {
		Misc::send_pm($UserID, 0, 'Your request privileges have been disabled', "Your request privileges have been disabled. The reason given was: [quote]{$UserReason}[/quote] If you would like to discuss this, please join ".BOT_DISABLED_CHAN.' on our IRC network. Instructions can be found [url='.site_url().'wiki.php?action=article&amp;name=IRC+-+How+to+join]here[/url].');
	}
}


if ($EnableUser != $Cur['Enabled'] && check_perms('users_disable_users')) {
	$EnableStr = 'account '.translateUserStatus($Cur['Enabled']).'->'.translateUserStatus($EnableUser);
	if ($EnableUser == '2') {
		Tools::disable_users($UserID, '', 1);
		$TrackerUserUpdates = array();
	} elseif ($EnableUser == '1') {
		$Cache->increment('stats_user_count');
		$VisibleTrIP = $Visible && $Cur['IP'] != '127.0.0.1' ? '1' : '0';
		Tracker::update_tracker('add_user', array('id' => $UserID, 'passkey' => $Cur['torrent_pass'], 'visible' => $VisibleTrIP));
		if (($Cur['Downloaded'] == 0) || ($Cur['Uploaded'] / $Cur['Downloaded'] >= $Cur['RequiredRatio'])) {
			$UpdateSet[] = "i.RatioWatchEnds = '0000-00-00 00:00:00'";
			$CanLeech = 1;
			$UpdateSet[] = "m.can_leech = '1'";
			$UpdateSet[] = "i.RatioWatchDownload = '0'";
		} else {
			$EnableStr .= ' (Ratio: '.Format::get_ratio_html($Cur['Uploaded'], $Cur['Downloaded'], false).', RR: '.number_format($Cur['RequiredRatio'],2).')';
			if ($Cur['RatioWatchEnds'] != '0000-00-00 00:00:00') {
				$UpdateSet[] = "i.RatioWatchEnds = NOW()";
				$UpdateSet[] = "i.RatioWatchDownload = m.Downloaded";
				$CanLeech = 0;
			}
			$TrackerUserUpdates['can_leech'] = 0;
		}
		$UpdateSet[] = "i.BanReason = '0'";
		$UpdateSet[] = "Enabled = '1'";
		$LightUpdates['Enabled'] = 1;
	}
	$EditSummary[] = $EnableStr;
	$Cache->replace_value("enabled_$UserID", $EnableUser, 0);
}

if ($ResetPasskey == 1 && check_perms('users_edit_reset_keys')) {
	$Passkey = db_string(Users::make_secret());
	$UpdateSet[] = "torrent_pass = '$Passkey'";
	$EditSummary[] = 'passkey reset';
	$HeavyUpdates['torrent_pass'] = $Passkey;
	$TrackerUserUpdates['passkey'] = $Passkey;
	$Cache->delete_value('user_'.$Cur['torrent_pass']);
	//MUST come after the case for updating can_leech.

	$DB->query("
		INSERT INTO users_history_passkeys
			(UserID, OldPassKey, NewPassKey, ChangerIP, ChangeTime)
		VALUES
			('$UserID', '".$Cur['torrent_pass']."', '$Passkey', '0.0.0.0', '".sqltime()."')");
	Tracker::update_tracker('change_passkey', array('oldpasskey' => $Cur['torrent_pass'], 'newpasskey' => $Passkey));
}

if ($ResetAuthkey == 1 && check_perms('users_edit_reset_keys')) {
	$Authkey = db_string(Users::make_secret());
	$UpdateSet[] = "AuthKey = '$Authkey'";
	$EditSummary[] = 'authkey reset';
	$HeavyUpdates['AuthKey'] = $Authkey;
}

if ($SendHackedMail && check_perms('users_disable_any')) {
	$EditSummary[] = "hacked account email sent to $HackedEmail";
	Misc::send_email($HackedEmail, 'Your '.SITE_NAME.' account', 'Your '.SITE_NAME.' account appears to have been compromised. As a security measure, we have disabled your account. To resolve this, please visit us on IRC.

This is the information to connect to our server:
IRC Server: '.BOT_SERVER.'
Port: '.BOT_PORT.' ('.BOT_PORT_SSL.' for SSL)

Once you are connected to our server you will need to join our disabled users channel.
Type: /join '.BOT_DISABLED_CHAN.'

Please visit us soon so we can help you resolve this matter.', 'noreply');
}

if ($MergeStatsFrom && check_perms('users_edit_ratio')) {
	$DB->query("
		SELECT ID, Uploaded, Downloaded
		FROM users_main
		WHERE Username LIKE '$MergeStatsFrom'");
	if ($DB->has_results()) {
		list($MergeID, $MergeUploaded, $MergeDownloaded) = $DB->next_record();
		$DB->query("
			UPDATE users_main AS um
				JOIN users_info AS ui ON um.ID = ui.UserID
			SET
				um.Uploaded = 0,
				um.Downloaded = 0,
				ui.AdminComment = CONCAT('".sqltime().' - Stats (Uploaded: '.Format::get_size($MergeUploaded).', Downloaded: '.Format::get_size($MergeDownloaded).', Ratio: '.Format::get_ratio($MergeUploaded, $MergeDownloaded).') merged into '.site_url()."user.php?id=$UserID (".$Cur['Username'].') by '.$LoggedUser['Username']."\n\n', ui.AdminComment)
			WHERE ID = $MergeID");
		$UpdateSet[] = "Uploaded = Uploaded + '$MergeUploaded'";
		$UpdateSet[] = "Downloaded = Downloaded + '$MergeDownloaded'";
		$EditSummary[] = 'stats merged from '.site_url()."user.php?id=$MergeID ($MergeStatsFrom) (previous stats: Uploaded: ".Format::get_size($Cur['Uploaded']).', Downloaded: '.Format::get_size($Cur['Downloaded']).', Ratio: '.Format::get_ratio($Cur['Uploaded'], $Cur['Downloaded']).')';
		$Cache->delete_value("user_stats_$UserID");
		$Cache->delete_value("user_stats_$MergeID");
	}
}

if ($Pass && check_perms('users_edit_password')) {
	$UpdateSet[] = "PassHash = '".db_string(Users::make_crypt_hash($Pass))."'";
	$EditSummary[] = 'password reset';

	$Cache->delete_value("user_info_$UserID");
	$Cache->delete_value("user_info_heavy_$UserID");
	$Cache->delete_value("user_stats_$UserID");
	$Cache->delete_value("enabled_$UserID");

	$DB->query("
		SELECT SessionID
		FROM users_sessions
		WHERE UserID = '$UserID'");
	while (list($SessionID) = $DB->next_record()) {
		$Cache->delete_value("session_{$UserID}_$SessionID");
	}
	$Cache->delete_value("users_sessions_$UserID");

	$DB->query("
		DELETE FROM users_sessions
		WHERE UserID = '$UserID'");

}

if (empty($UpdateSet) && empty($EditSummary)) {
	if (!$Reason) {
		if (str_replace("\r", '', $Cur['AdminComment']) != str_replace("\r", '', $AdminComment) && check_perms('users_disable_any')) {
			$UpdateSet[] = "AdminComment = '$AdminComment'";
		} else {
			header("Location: user.php?id=$UserID");
			die();
		}
	} else {
		$EditSummary[] = 'notes added';
	}
}

if (count($TrackerUserUpdates) > 1) {
	Tracker::update_tracker('update_user', $TrackerUserUpdates);
}

if ($DeleteKeys) {
	$Cache->delete_value("user_info_$UserID");
	$Cache->delete_value("user_info_heavy_$UserID");
} else {
	$Cache->begin_transaction("user_info_$UserID");
	$Cache->update_row(false, $LightUpdates);
	$Cache->commit_transaction(0);

	$Cache->begin_transaction("user_info_heavy_$UserID");
	$Cache->update_row(false, $HeavyUpdates);
	$Cache->commit_transaction(0);
}

$Summary = '';
// Create edit summary
if ($EditSummary) {
	$Summary = implode(', ', $EditSummary) . ' by ' . $LoggedUser['Username'];
	$Summary = sqltime() . ' - ' . ucfirst($Summary);

	if ($Reason) {
		$Summary .= "\nReason: $Reason";
	}


	$Summary .= "\n\n$AdminComment";
} elseif (empty($UpdateSet) && empty($EditSummary) && $Cur['AdminComment'] == $_POST['AdminComment']) {
	$Summary = sqltime() . ' - Comment added by ' . $LoggedUser['Username'] . ': ' . "$Reason\n\n";

}

if (!empty($Summary)) {
	$UpdateSet[] = "AdminComment = '$Summary'";
} else {
	$UpdateSet[] = "AdminComment = '$AdminComment'";
}

// Update cache


// Build query

$SET = implode(', ', $UpdateSet);

$SQL = "
	UPDATE users_main AS m
		JOIN users_info AS i ON m.ID = i.UserID
	SET $SET
	WHERE m.ID = '$UserID'";

// Perform update
//die($SQL);
$DB->query($SQL);

if (isset($ClearStaffIDCache)) {
	$Cache->delete_value('staff_ids');
}

// redirect to user page
header("location: user.php?id=$UserID");

function translateUserStatus($Status) {
	switch ($Status) {
		case 0:
			return 'Unconfirmed';
		case 1:
			return 'Enabled';
		case 2:
			return 'Disabled';
		default:
			return $Status;
	}
}

function translateLeechStatus($Status) {
	switch ($Status) {
		case 0:
			return 'Disabled';
		case 1:
			return 'Enabled';
		default:
			return $Status;
	}
}
?>