-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmodtask.php
292 lines (268 loc) · 15.6 KB
/
modtask.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
<?php
/*
// +--------------------------------------------------------------------------+
// | Project: NVTracker - NetVision BitTorrent Tracker |
// +--------------------------------------------------------------------------+
// | This file is part of NVTracker. NVTracker is based on BTSource, |
// | originally by RedBeard of TorrentBits, extensively modified by |
// | Gartenzwerg. |
// | |
// | NVTracker is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation; either version 2 of the License, or |
// | (at your option) any later version. |
// | |
// | NVTracker is distributed in the hope that it will be useful, |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
// | GNU General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with NVTracker; if not, write to the Free Software Foundation, |
// | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +--------------------------------------------------------------------------+
// | Obige Zeilen dürfen nicht entfernt werden! Do not remove above lines! |
// +--------------------------------------------------------------------------+
*/
require "include/bittorrent.php";
//dbconn(false);
userlogin();
loggedinorreturn();
function puke($text = "w00t"){
stderr("w00t", $text);
}
if(get_user_class() < UC_MODERATOR)
puke();
$action = $_POST["action"];
if($action == "edituser"){
$userid = $_POST["userid"];
$title = $_POST["title"];
$avatar = $_POST["avatar"];
$enabled = $_POST["enabled"];
$warned = ((isset($_POST["warned"])) ? $_POST["warned"] : "no");
$warnlength = 0 + $_POST["warnlength"];
$warnpm = $_POST["warnpm"];
$donor = $_POST["donor"];
$modcomment = $_POST["modcomment"];
$waittime = ((isset($_POST["wait"])) ? $_POST["wait"] : array());
$acceptrules = $_POST["acceptrules"];
$baduser = $_POST["baduser"];
if($baduser == "yes")
$allowupload = "no";
else
$allowupload = ($_POST["denyupload"] == "yes"?"no":"yes");
$class = 0 + $_POST["class"];
if(!is_valid_id($userid) || !is_valid_user_class($class))
stderr("Fehler", "Falsche User ID oder Klassen ID.");
// check target user class
/*$res = mysql_query("SELECT email, title, warned, enabled, username, class, tlimitall, tlimitseeds, tlimitleeches, allowupload, uploaded, downloaded FROM users WHERE id=$userid") or sqlerr(__FILE__, __LINE__);
$arr = mysql_fetch_assoc($res) or puke();*/
$qry = $GLOBALS['DB']->prepare("SELECT email, title, warned, enabled, username, class, tlimitall, tlimitseeds, tlimitleeches, allowupload, uploaded, downloaded FROM users WHERE id= :id");
$qry->bindParam(':id', $userid, PDO::PARAM_INT);
$qry->execute();
if($qry->rowCount() > 0)
$arr = $qry->Fetch(PDO::FETCH_ASSOC);
else
puke();
$curenabled = $arr["enabled"];
$curclass = $arr["class"];
$curwarned = $arr["warned"];
$curallowupload = $arr["allowupload"];
$curtitle = $arr["title"];
$curdownloaded = $arr["downloaded"];
$curuploaded = $arr["uploaded"];
$username = $arr["username"];
$email = $arr["email"];
// User may not edit someone with same or higher class than himself!
if(get_user_class() != UC_SYSOP && $curclass >= get_user_class())
puke();
if($warnlength && $warnpm == "")
stderr("Fehler", "Du musst einen Verwarnungsgrund angeben (z.B. \"Zu niedrige Ratio\" oder \"Ich mag Dich einfach nicht!\").");
if($enabled != $curenabled && $enabled == true && $_POST["disablereason"] == "")
stderr("Fehler", "Du musst einen Grund für die Deaktivierung angeben (z.B. \"Verwarnungsbedingungen nicht erfüllt\" oder \"Cheating\"). Der Benutzer erhält den Grund als E-Mail zugesandt.");
switch($_POST["limitmode"]){
case "auto":
default:
$maxtotal = 0;
$maxseeds = 0;
$maxleeches = 0;
break;
case "unlimited":
$maxtotal = -1;
$maxseeds = 0;
$maxleeches = 0;
break;
case "manual":
$maxtotal = intval($_POST["maxtotal"]);
$maxseeds = intval($_POST["maxseeds"]);
$maxleeches = intval($_POST["maxleeches"]);
if($maxseeds > $maxtotal)
$maxseeds = $maxtotal;
if($maxleeches > $maxtotal)
$maxleeches = $maxtotal;
// Allow leeches to be set to 0, but not total and seeds.
if($maxtotal <= 0 || $maxleeches < 0 || $maxseeds <= 0)
stderr("Fehler", "Die Torrentbegrenzung muss bei Seeds und Gesamt min. 1 sein, bei Leeches 0 oder höher.");
break;
}
if($modcomment != ""){
write_modcomment($userid, $CURUSER["id"], $modcomment);
}
if($maxtotal <> intval($arr["tlimitall"]) || $maxseeds <> intval($arr["tlimitseeds"]) || $maxleeches <> intval($arr["tlimitleeches"])){
$updateset[] = "tlimitall = " . $maxtotal;
$updateset[] = "tlimitseeds = " . $maxseeds;
$updateset[] = "tlimitleeches = " . $maxleeches;
write_modcomment($userid, $CURUSER["id"], "Torrentbegrenzung geändert: " . $maxleeches . " Leeches, " . $maxseeds . " Seeds, " . $maxtotal . " Gesamt");
}
if($curtitle != $title){
write_modcomment($userid, $CURUSER["id"], "Titel geändert auf '" . $title . "'.");
}
if($curclass != $class){
// Notify user
$what = (($class > $curclass) ? "befördert" : "degradiert");
$type = (($class > $curclass) ? "promotion" : "demotion");
//$msg = sqlesc(($class > $curclass?"[b]Herzlichen Glückwunsch![/b]\n\n":"") . "Du wurdest soeben von [b]" . $CURUSER["username"] . "[/b] zum '" . get_user_class_name($class) . "' $what.\n\nWenn etwas an dieser Aktion nicht in Ordnung sein sollte, melde Dich bitte bei dem angegebenen Teammitglied!");
$msg = (($class > $curclass) ? "[b]Herzlichen Glückwunsch![/b]\n\n" : "") . "Du wurdest soeben von [b]" . $CURUSER["username"] . "[/b] zum '" . get_user_class_name($class) . "' " . $what . ".\n\nWenn etwas an dieser Aktion nicht in Ordnung sein sollte, melde Dich bitte bei dem angegebenen Teammitglied!";
//$added = sqlesc(get_date_time());
sendPersonalMessage(0, $userid, "Du wurdest zum '" . get_user_class_name($class) . "' " . $what . "", $msg, PM_FOLDERID_SYSTEM, 0);
write_log($type, "Der Benutzer '<a href=\"userdetails.php?id=" . $userid . "\">" . $username . "</a>' wurde von " . $CURUSER["username"] . " zum " . get_user_class_name($class) . " " . $what . ".");
$updateset[] = "class = " . $class;
$what = ($class > $curclass ? "Beförderung" : "Degradierung");
write_modcomment($userid, $CURUSER["id"], "" . $what . " zum '" . get_user_class_name($class) . "'.");
// User has to re-accept rules if promoted to anything higher than UC_VIP
if($class > UC_VIP && $curclass < $class)
$updateset[] = "accept_rules = 'no'";
}
if($warned && $curwarned != $warned){
$updateset[] = "warned = '" . $warned . "'";
$updateset[] = "warneduntil = '0000-00-00 00:00:00'";
if($warned == 'no'){
$msg = "Deine Verwarnung wurde von " . $CURUSER["username"] . " zurückgenommen.\n\nFalls die Verwarnung nicht wegen Unrechtmäßigkeit zurückgenommen wurde, achte bitte in Zukunft darauf, die Tracker-Regeln ernstzunehmen.";
write_log("remwarn", "Die Verwarnung für Benutzer '<a href=\"userdetails.php?id=" . $userid . "\">" . $username . "</a>' wurde von " . $CURUSER["username"] . " zurückgenommen.");
write_modcomment($userid, $CURUSER["id"], "Die Verwarnung wurde zurückgenommen.");
sendPersonalMessage(0, $userid, "Deine Verwarnung wurde zurückgenommen", $msg, PM_FOLDERID_SYSTEM, 0);
}
}elseif($warnlength){
if($_POST["addwarnratio"] == "yes"){
$warnratio = "\nRuntergeladen: " . mksize($curdownloaded) . "\nHochgeladen: " . mksize($curuploaded) . "\nRatio: " . number_format($curuploaded / $curdownloaded, 3);
}else{
$warnratio = "";
}
if($warnlength == 255){
$msg = "Du wurdest von " . $CURUSER['username'] . " [url=rules.php#warning]verwarnt[/url]." . ($warnpm ? "\n\nGrund: $warnpm" : "");
write_modcomment($userid, $CURUSER["id"], "Verwarnung erteilt.\nGrund: " . $warnpm . $warnratio);
$updateset[] = "warneduntil = '0000-00-00 00:00:00'";
}else{
$warneduntil = get_date_time(time() + $warnlength * 604800);
$dur = $warnlength . " Woche" . ($warnlength > 1 ? "n" : "");
$msg = "Du wurdest für " . $dur . " von " . $CURUSER['username'] . " [url=rules.php#warning]verwarnt[/url]." . (($warnpm) ? "\n\nGrund: " . $warnpm : "");
write_modcomment($userid, $CURUSER["id"], "Verwarnt für " . $dur . ".\nGrund: " . $warnpm . $warnratio);
$updateset[] = "warneduntil = '" . $warneduntil . "'";
}
//$added = sqlesc(get_date_time());
write_log("addwarn", "Der Benutzer '<a href=\"userdetails.php?id=" . $userid . "\">" . $username . "</a>' wurde von " . $CURUSER["username"] . " verwarnt (" . $warnpm . ").");
sendPersonalMessage(0, $userid, "Du wurdest verwarnt", $msg . "\n\nFalls Du diese Verwarnung ungerechtfertigt findest, melde Dich bitte bei einem Teammitglied!", PM_FOLDERID_SYSTEM, 0);
$updateset[] = "warned = 'yes'";
}
if(is_array($waittime)){
foreach($waittime as $torrent => $ack){
$torrent = intval($torrent);
//$res = mysql_query("SELECT name FROM torrents WHERE id=$torrent");
$qry = $GLOBALS['DB']->prepare("SELECT name FROM torrents WHERE id= :id");
$qry->bindParam(':id', $torrent, PDO::PARAM_INT);
$qry->execute();
if($qry->rowCount() > 0){
$arr = $qry->Fetch(PDO::FETCH_ASSOC);
//if(mysql_num_rows($res)){
//$arr = mysql_fetch_assoc($res);
$torrent_name = $arr["name"];
$new_status = "";
if($ack == "yes"){
$msg = "Dein Antrag auf Aufhebung der Wartezeit für den Torrent '" . $torrent_name . "' wurde von " . $CURUSER['username'] . " angenommen. Du kannst nun beginnen, diesen Torrent zu nutzen.";
$new_status = "granted";
$log_type = "waitgrant";
$log_msg = "akzeptiert";
}elseif($ack == "no"){
$msg = "Dein Antrag auf Aufhebung der Wartezeit für den Torrent '" . $torrent_name . "' wurde von " . $CURUSER['username'] . " abgelehnt. Bitte beachte, dass eine erneute Antragstellung für diesen Torrent nicht möglich ist!\n\nEbenso solltest Du Dir noch einmal die Regeln bzw. das FAQ zum Thema Wartezeitaufhebung durchlesen, bevor Du eine weitere Aufhebung beantragst. Beachte, dass häufige, nicht regelkonforme Anträge zu Verwarnungen führen können!";
$new_status = "rejected";
$log_type = "waitreject";
$log_msg = "abgelehnt";
}
if($new_status){
$qry = $GLOBALS['DB']->prepare("UPDATE nowait SET `status`= :ns, grantor= :grantor WHERE user_id= :uid AND torrent_id= :tid AND `status`='pending'");
$qry->bindParam(':ns', $new_status, PDO::PARAM_STR);
$qry->bindParam(':grantor', $CURUSER["id"], PDO::PARAM_INT);
$qry->bindParam(':uid', $userid, PDO::PARAM_INT);
$qry->bindParam(':tid', $torrent, PDO::PARAM_INT);
$qry->execute();
if($qry->rowCount() > 0){
//mysql_query("UPDATE nowait SET `status`='$new_status',grantor=$CURUSER[id] WHERE user_id=$userid AND torrent_id=$torrent AND `status`='pending'");
//if(mysql_affected_rows()){
write_log($log_type, "Antrag auf Wartezeitaufhebung von '<a href=\"userdetails.php?id=" . $userid . "\">" . $username . "</a>' für Torrent '<a href=\"details.php?id=" . $torrent . "\">" . $torrent_name . "</a>' wurde von " . $CURUSER["username"] . " " . $log_msg . ".");
sendPersonalMessage(0, $userid, "Dein Antrag auf Wartezeitaufhebung wurde " . $log_msg, $msg, PM_FOLDERID_SYSTEM, 0);
write_modcomment($userid, $CURUSER["id"], "Wartezeitaufhebung für Torrent '" . $torrent_name . " '" . $log_msg . ".");
}
}
}
}
}
if($allowupload != $curallowupload){
$updateset[] = "allowupload = '" . $allowupload . "'";
write_modcomment($userid, $CURUSER["id"], "Torrentupload " . ($allowupload == "yes"?"erlaubt":"gesperrt"));
}
if($enabled != $curenabled){
if($enabled == 'yes'){
write_modcomment($userid, $CURUSER["id"], "Account aktiviert. Grund:\n" . ($_POST["disablereason"] != ""?$_POST["disablereason"]:""));
write_log("accenabled", "Benutzeraccount '<a href=\"userdetails.php?id=" . $userid . "\">" . $username . "</a>' wurde von " . $CURUSER["username"] . " aktiviert.");
}else{
write_modcomment($userid, $CURUSER["id"], "Account deaktiviert. Grund:\n" . $_POST["disablereason"]);
write_log("accdisabled", "Benutzeraccount '<a href=\"userdetails.php?id=" . $userid . "\">" . $username . "</a>' wurde von " . $CURUSER["username"] . " deaktiviert (Grund: " . $_POST["disablereason"] . ").");
$mailbody = "Dein Account auf " . $GLOBALS["SITENAME"] . " wurde von einem Moderator deaktiviert.\n\n Du kannst dich ab sofort nicht mehr einloggen.\n Grund für diesen Schritt:\n\n " . $_POST["disablereason"] . " \n\nBitte sehe in Zukunft davon ab, Dir einen neuen Account zu erstellen. Dieser wird umgehend und ohne weitere Warnung deaktiviert werden.\n\n Bei Fragen besuche uns im IRC.";
mail($email, "Account " . $username . " auf " . $GLOBALS["SITENAME"] . " wurde deaktiviert", $mailbody);
}
}
$bu_int = (($baduser == "yes") ? 1 : 0);
$qry = $GLOBALS['DB']->prepare("SELECT baduser,chash FROM accounts WHERE userid= :id");
$qry->bindParam(':id', $userid, PDO::PARAM_INT);
$qry->execute();
if(!$qry->rowCount()){
//$acctdata = mysql_fetch_assoc(mysql_query("SELECT baduser,chash FROM accounts WHERE userid=$userid"));
//if(!is_array($acctdata)){
$hash = md5(mksecret());
$qry = $GLOBALS['DB']->prepare("INSERT INTO `accounts` (`userid`,`chash`,`lastaccess`,`username`,`email`,`baduser`) VALUES (:uid, :hash, NOW(), :una, :email, :bu)");
$qry->bindParam(':uid', $userid, PDO::PARAM_INT);
$qry->bindParam(':hash', $hash, PDO::PARAM_STR);
$qry->bindParam(':una', $username, PDO::PARAM_STR);
$qry->bindParam(':email', $email, PDO::PARAM_STR);
$qry->bindParam(':bu', $bu_int, PDO::PARAM_INT);
$qry->execute();
//mysql_query("INSERT INTO `accounts` (`userid`,`chash`,`lastaccess`,`username`,`email`,`baduser`) VALUES (" . $row["id"] . "," . sqlesc($hash) . ", NOW(), " . sqlesc($username) . ", " . sqlesc($email) . ", " . ($baduser == "yes"?1:0) . ")");
}else{
$acctdata = $qry->Fetch(PDO::FETCH_ASSOC);
$oldbaduser = ($acctdata["baduser"] == 1 ? "yes" : "no");
if($oldbaduser != $baduser){
$qry = $GLOBALS['DB']->prepare("UPDATE accounts SET baduser= :bu WHERE userid= :uid OR chash= :chash");
$qry->bindParam(':bu', $bu_int, PDO::PARAM_INT);
$qry->bindParam(':uid', $userid, PDO::PARAM_INT);
$qry->bindParam(':chash', $acctdata["chash"], PDO::PARAM_STR);
$qry->execute();
//mysql_query("UPDATE accounts SET baduser=" . ($baduser == "yes"?1:0) . " WHERE userid=$userid OR chash=" . sqlesc($acctdata["chash"]));
write_modcomment($userid, $CURUSER["id"], "BAD-Flag " . ($baduser == "yes"?"gesetzt":"entfernt"));
}
}
$updateset[] = "enabled = '" . $enabled . "'";
$updateset[] = "donor = '" . $donor . "'";
$updateset[] = "avatar = '" . $avatar . "'";
$updateset[] = "title = '" . $title . "'";
$updateset[] = "accept_rules = '" . $acceptrules . "'";
$sql = "UPDATE users SET " . implode(", ", $updateset) . " WHERE id= :uid";
//mysql_query("UPDATE users SET " . implode(", ", $updateset) . " WHERE id=$userid") or sqlerr(__FILE__, __LINE__);
$qry = $GLOBALS['DB']->prepare($sql);
$qry->bindParam(':uid', $userid, PDO::PARAM_INT);
$qry->execute();
$returnto = $_POST["returnto"];
header("Location: " . $GLOBALS["BASEURL"] . "/" . $returnto);
die;
}
puke();
?>