forked from mlangill/biotorrents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reputation.php
437 lines (369 loc) · 13.3 KB
/
reputation.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
<?php
require_once("include/bittorrent.php");
require_once "include/user_functions.php";
dbconn(false);
loggedinorreturn();
define( 'TIMENOW', time() ) ;
// mod or not?
$is_mod = ( $CURUSER['class'] >= UC_MODERATOR ) ? TRUE : FALSE;
//$CURUSER['class'] = 2;
//$rep_maxperday = 10;
//$rep_repeat = 20;
$closewindow = TRUE;
require_once "cache/rep_settings_cache.php";
//print_r($GVARS);
if( ! $GVARS['rep_is_online'] )
{
exit( 'Reputation system offline, sorry!' );
}
///////////////////////////////////////////////
// Need only deal with one input value
///////////////////////////////////////////////
if( isset( $_POST ) || isset( $_GET ) )
{
$input = array_merge( $_GET, $_POST );
//print_r($input);
//die;
}
//$input['reputation'] = 'pos';
//$input['reason'] = 'la di da di di la';
///////////////////////////////////////////////
// Just added to Reputation?
///////////////////////////////////////////////
if( isset( $input['done'] ) )
{
rep_output( 'Reputation Added!' );
}
///////////////////////////////////////////////
// Nope, so do something different, like check stuff
///////////////////////////////////////////////
$check = isset( $input['pid'] ) ? is_valid_id( $input['pid'] ) : FALSE;
if( ! $check )
{
rep_output( 'Incorrect Access' );
}
///////////////////////////////////////////////
// check the post actually exists!
///////////////////////////////////////////////
$forum = mysql_query( "SELECT posts.topicid, posts.userid, forums.minclassread,
users.username, users.reputation
FROM posts
LEFT JOIN topics ON topicid = topics.id
LEFT JOIN forums ON topics.forumid = forums.id
LEFT JOIN users ON posts.userid = users.id
WHERE posts.id ={$input['pid']}" );
// does it or don't it?
if( ! mysql_num_rows( $forum ) )
{
rep_output( 'Post Does Not Exist - Incorrect Access' );
}
///////////////////////////////////////////////
// ok, lets proceed
///////////////////////////////////////////////
$res = mysql_fetch_assoc( $forum ) or sqlerr(__LINE__,__FILE__);
if( $CURUSER['class'] < $res['minclassread'] ) // check permissions! Dun want sneaky pests lookin!
{
rep_output( 'Wrong Permissions' );
}
///////////////////////////////////////////////
// Does the user have memory loss? Have they already rep'd?
///////////////////////////////////////////////
$repeat = mysql_query( "SELECT postid FROM reputation WHERE postid ={$input['pid']}
AND whoadded={$CURUSER['id']}" );
//$repres = mysql_fetch_assoc( $forum ) or sqlerr(__LINE__,__FILE__);
if( mysql_num_rows( $repeat) > 0 ) // blOOdy eedjit check!
{
rep_output( 'You have already added Rep to this entry!' ); // Is insane!
}
///////////////////////////////////////////////
// Is a mod or gone over the limit?
///////////////////////////////////////////////
if( ! $is_mod )
{
if( $GVARS['rep_maxperday'] >= $GVARS['rep_repeat'] )
{
$klimit = intval($GVARS['rep_maxperday'] + 1);
}
else
{
$klimit = intval($GVARS['rep_repeat'] + 1);
}
///////////////////////////////////////////////
// Some trivial flood checking
///////////////////////////////////////////////
$flood = mysql_query( "SELECT dateadd, userid FROM reputation
WHERE whoadded = {$CURUSER['id']}
ORDER BY dateadd DESC
LIMIT 0 , $klimit" );
if( mysql_num_rows( $flood ) )
{
$i = 0;
while( $check = mysql_fetch_assoc( $flood ) )
{
if( ( $i < $GVARS['rep_repeat'] ) && ( $check['userid'] == $CURUSER['id'] ) )//$res['userid'] ) )
{
rep_output( 'You cannot rep your own stuffs!' );
}
if( ( ( $i + 1 ) == $GVARS['rep_maxperday'] ) && ( ( $check['dateadd'] + 86400 ) > TIMENOW ) )
{
rep_output( 'The game is up, you rep spammer!' );
}
$i++;
}
}
}
///////////////////////////////////////////////
// Passed flood checkin, what to do now?
///////////////////////////////////////////////
// Note: if you use another forum type, you may already have this GLOBAL available
// So you can save a query here, else...
$r = mysql_query("SELECT COUNT(*) FROM posts WHERE userid = {$CURUSER['id']}") or sqlerr();
$a = mysql_fetch_row($r) or sqlerr();
$CURUSER['posts'] = $a[0];
///////////////////////////////////////////////
// What's the reason for bothering me?
///////////////////////////////////////////////
$reason = '';
if( isset( $input['reason'] ) && !empty( $input['reason'] ) )
{
$reason = trim($input['reason']);
$temp = stripslashes( $input['reason'] );
if( ( strlen(trim($temp)) < 2 ) || ( $reason == "" ) )
{
rep_output( 'Reason is too short!' );
}
if( strlen( preg_replace("/&#([0-9]+);/", "-", stripslashes( $input['reason'] ) ) ) > 250 )
{
rep_output( 'Reputation reason too long!' );
}
}
//$input['do'] = 'addrep';
//$input['reputation'] = 1;
///////////////////////////////////////////////
// Are we adding a rep or what?
///////////////////////////////////////////////
if( isset( $input['do'] ) && $input['do'] == 'addrep' )
{
if( $res['userid'] == $CURUSER['id'] ) // sneaky bastiges!
{
rep_output( 'You cannot rep your own post!' );
}
$score = fetch_reppower( $CURUSER, $input['reputation'] );
$res['reputation'] += $score;
@mysql_query( "UPDATE users set reputation=".intval($res['reputation']). " WHERE id=" .$res['userid'] );
$save = array( 'reputation' => $score,
'whoadded' => $CURUSER['id'],
'reason' => sqlesc($reason),
'dateadd' => TIMENOW,
'postid' => (int)$input['pid'],
'userid' => $res['userid']
);
//print( join( ',', $save) );
//print( join(',', array_keys($save)));
@mysql_query( "INSERT INTO reputation (".join(',', array_keys($save)).") VALUES (".join( ',', $save).")" );
header( "Location: $BASEURL/reputation.php?pid={$input['pid']}&done=1" );
} // Move along, nothing to see here!
else
{
if( $res['userid'] == $CURUSER['id'] ) // same as him!
{
// check for fish!
$query = mysql_query( "select r.*, leftby.id as leftby_id, leftby.username as leftby_name
from reputation r
left join users leftby on leftby.id=r.whoadded
where postid={$input['pid']}
order by dateadd DESC" );
$reasonbits = '';
if( false !== mysql_num_rows($query) )
{
$total = 0;
while( $postrep = mysql_fetch_assoc($query) )
{
$total += $postrep['reputation'];
if( $postrep['reputation'] > 0 )
{
$posneg = 'pos';
}
elseif( $postrep['reputation'] < 0 )
{
$posneg = 'neg';
}
else
{
$posneg = 'balance';
}
if( $GVARS['g_rep_seeown'] )
{
$postrep['reason'] = $postrep['reason']." <span class='desc'>Leftby <a href=\"$BASEURL/userdetails.php?id={$postrep['leftby_id']}\" target='_blank'>{$postrep['leftby_name']}</a></span>";
}
$reasonbits .= "<tr>
<td class='row2' width='1%'><img src='./pic/rep/reputation_$posneg.gif' border='0' alt='' /></td>
<td class='row2'>{$postrep['reason']}</td>
</tr>";
}
///////////////////////////////////////////////
// The negativity...oh such negativity
///////////////////////////////////////////////
if( $total == 0 ){ $rep = 'Even'; }
elseif( $total > 0 && $total <= 5 ){ $rep = 'Somewhat Positive'; }
elseif( $total > 5 && $total <= 15 ){ $rep = 'Positive'; }
elseif( $total > 15 && $total <= 25 ){ $rep = 'Very Positive'; }
elseif( $total > 25 ){ $rep = 'Extremely Positive'; }
elseif( $total < 0 && $total >= -5 ){ $rep = 'Somewhat Negative'; }
elseif( $total < -5 && $total >= -15 ){ $rep = 'Negative'; }
elseif( $total < -15 && $total >= -25){ $rep = 'Very Negative'; }
elseif( $total < -25 ){ $rep = 'Extremely Negative'; }
}
else
{
$rep = 'Even'; //Ok, dunno what to do, so just make it quits!
}
///////////////////////////////////////////////
// Compile some HTML for the 'own post'/ 'user view' reputation
// Feel free to do ya own html/css here
///////////////////////////////////////////////
$rep_info = sprintf("Your reputation on <a href='$BASEURL/forums.php?action=viewtopic&topicid=%d&page=p%d#%d' target='_blank'>this post</a> is %s.", $res['topicid'], $input['pid'], $input['pid'], $rep );
$rep_points = sprintf("You have %d Reputation point(s).", $CURUSER['reputation'] );
$html = "<tr><td class='darkrow1'>{$rep_info}</td></tr>
<tr>
<td class='row2'>
<div class='tablepad'>";
if ( $reasonbits )
{
$html .= "<fieldset class='fieldset'>
<legend>Reputation Comments</legend>
<table class='ipbtable' cellpadding='0'>
$reasonbits
</table>
</fieldset><br />";
}
$html .= "<div class='formsubtitle' align='center'><strong>{$rep_points}</strong></div>
</div>
</td>
</tr>";
}
else
{
///////////////////////////////////////////////
// HTML/CSS for 'add reputaion'
// Feel free to alter HTML/CSS here
///////////////////////////////////////////////
$rep_text = sprintf("What do you think of %s's post?", $res['username']);
$negativerep = ( $is_mod || $GVARS['g_rep_negative'] ) ? TRUE : FALSE;
$closewindow = FALSE;
$html = "<tr><td class='darkrow1'>Add to reputation: <b>{$res['username']}</b></td></tr>
<tr>
<td class='row2'>
<form action='reputation.php' method='post'>
<div class='tablepad'>
<fieldset>
<legend>$rep_text</legend>
<table class='f_row' cellspacing='0'>
<tr>
<td>
<div><label for='rb_reputation_pos'>
<input type='radio' name='reputation' value='pos' id='rb_reputation_pos' checked='checked' class='radiobutton' style='margin:0px;' /> I Approve</label></div>";
if ( $negativerep )
{
$html .= "<div><label for='rb_reputation_neg'><input type='radio' name='reputation' value='neg' id='rb_reputation_neg' class='radiobutton' style='margin:0px;' /> I Disapprove</label></div>";
}
$html .= "</td>
</tr>
<tr>
<td>
Your comments on this post:<br />
<input type='text' size='40' maxlength='250' name='reason' style='margin:0px;' />
</td>
</tr>
</table>
</fieldset>
</div>
<div align='center' style='margin-top:3px;'>
<input type='hidden' name='act' value='reputation' />
<input type='hidden' name='do' value='addrep' />
<input type='hidden' name='pid' value='{$input['pid']}' />
<input type='submit' value='Add To Reputation' class='button' accesskey='s' />
<input type='button' value='Close Window' class='button' accesskey='c' onclick='self.close()' />
</div>
</form>
</td>
</tr>";
}
rep_output( "", $html ); // send to spewer-outer function
} // END
///////////////////////////////////////////////
// Reputation output function
// $msg -> string
// $html -> string
///////////////////////////////////////////////
function rep_output($msg="", $html="")
{
global $closewindow;
if( $msg && empty($html) )
{
$html = "<tr><td class='row2'>$msg</td></tr>";
}
$html = "<body style='background-color: lightblue;'><div class='borderwrap'>
<div class='maintitle'>Reputation System</div>
<table class='main' cellspacing='1'>
$html";
if ( $closewindow )
{
$html .= "<tr><td class='darkrow1' align='center'><a href='javascript:self.close();'><b>Close Rep</b></a></td></tr>";
}
$html .= "</table></div></body>";
print $html;
exit();
}
///////////////////////////////////////////////
// Fetch Reputation function
// $user -> array all about the user
// $rep -> string what kind of rep this user has
///////////////////////////////////////////////
function fetch_reppower($user=array(),$rep='pos')
{
global $GVARS, $is_mod;
// is the user allowed to do negative reps?
if( ! $GVARS['g_rep_negative'] )
{
$rep = 'pos';
}
if( ! $GVARS['g_rep_use'] ) // allowed to rep at all?
{
$rep = 0;
}
elseif( $is_mod && $GVARS['rep_adminpower'] ) // is a mod and has loadsa power?
{ //work out positive or negative admin power
$reppower = ( $rep != 'pos' ) ? intval($GVARS['rep_adminpower'] * -1) : intval($GVARS['rep_adminpower']);
}
elseif( ( $user['posts'] < $GVARS['rep_minpost'] ) || ( $user['reputation'] < $GVARS['rep_minrep'] ) )
{ // not an admin, then work out postal based power
$reppower = 0;
}
else
{ // ok failed all tests, so ratio is 1:1 but not negative, unless allowed
$reppower = 1;
if( $GVARS['rep_pcpower'] )
{ // percentage power
$reppower += intval($user['posts'] / $GVARS['rep_pcpower']);
}
if( $GVARS['rep_kppower'] )
{ // rep as based upon a constant of kppower global
$reppower += intval($user['reputation'] / $GVARS['rep_kppower']);
}
if( $GVARS['rep_rdpower'] )
{ // time based power
$reppower += intval((TIMENOW - strtotime( $user['added'] )) / 86400 / $GVARS['rep_rdpower']);
}
if( $rep != 'pos' )
{
// Negative rep is worth half that of positive, but must be atleast 1, else it gets messy
$reppower = intval($reppower / 2);
$reppower = ( $reppower < 1 ) ? 1 : $reppower;
$reppower *= -1;
}
}
return $reppower;
}
// erm, FIN
?>