-
Notifications
You must be signed in to change notification settings - Fork 3
/
friendslist.php
executable file
·242 lines (228 loc) · 7.72 KB
/
friendslist.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
<?php
/*
MCCodes FREE
friendslist.php Rev 1.1.0
Copyright (C) 2005-2012 Dabomstew
This program 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.
This program 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 this program; if not, write to the Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
session_start();
require "global_func.php";
if ($_SESSION['loggedin'] == 0)
{
header("Location: login.php");
exit;
}
$userid = $_SESSION['userid'];
require "header.php";
$h = new headers;
$h->startheaders();
include "mysql.php";
global $c;
$is =
mysql_query(
"SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",
$c) or die(mysql_error());
$ir = mysql_fetch_array($is);
check_level();
$fm = money_formatter($ir['money']);
$cm = money_formatter($ir['crystals'], '');
$lv = date('F j, Y, g:i a', $ir['laston']);
$h->userdata($ir, $lv, $fm, $cm);
$h->menuarea();
if ($ir['donatordays'] == 0)
{
die("This feature is for donators only.");
}
print "<h3>Friends List</h3>";
switch ($_GET['action'])
{
case "add":
add_friend();
break;
case "remove":
remove_friend();
break;
case "ccomment":
change_comment();
break;
default:
friends_list();
break;
}
function friends_list()
{
global $ir, $c, $userid;
print
"<a href='friendslist.php?action=add'>> Add a Friend</a><br />
These are the people on your friends list. ";
$q_y =
mysql_query("SELECT * FROM friendslist WHERE fl_ADDED=$userid", $c);
print
mysql_num_rows($q_y)
. " people have added you to their list.<br />
Most liked: [";
$q2r =
mysql_query(
"SELECT u.username,count( * ) as cnt,fl.fl_ADDED FROM friendslist fl LEFT JOIN users u on fl.fl_ADDED=u.userid GROUP BY fl.fl_ADDED ORDER BY cnt DESC LIMIT 5",
$c) or die(mysql_error());
$r = 0;
while ($r2r = mysql_fetch_array($q2r))
{
$r++;
if ($r > 1)
{
print " | ";
}
print
"<a href='viewuser.php?u={$r2r['fl_ADDED']}'>{$r2r['username']}</a>";
}
print
"]<br />
<table width=90%><tr style='background:gray'> <th>ID</th> <th>Name</th> <th>Mail</th> <th>Send Cash</th> <th>Remove</th> <th>Comment</th> <th>Change Comment</th> <th>Online?</th></tr>";
$q =
mysql_query(
"SELECT fl.*,u.* FROM friendslist fl LEFT JOIN users u ON fl.fl_ADDED=u.userid WHERE fl.fl_ADDER=$userid ORDER BY u.username ASC",
$c);
while ($r = mysql_fetch_array($q))
{
if ($r['laston'] >= time() - 15 * 60)
{
$on = "<font color=green><b>Online</b></font>";
}
else
{
$on = "<font color=red><b>Offline</b></font>";
}
$d = "";
if ($r['donatordays'])
{
$r['username'] = "<font color=red>{$r['username']}</font>";
$d =
"<img src='donator.gif' alt='Donator: {$r['donatordays']} Days Left' title='Donator: {$r['donatordays']} Days Left' />";
}
if (!$r['fl_COMMENT'])
{
$r['fl_COMMENT'] = "N/A";
}
print
"<tr> <td>{$r['userid']}</td> <td><a href='viewuser.php?u={$r['userid']}'>{$r['username']}</a> $d</td> <td><a href='mailbox.php?action=compose&ID={$r['userid']}'>Mail</a></td> <td><a href='sendcash.php?ID={$r['userid']}'>Send Cash</a></td> <td><a href='friendslist.php?action=remove&f={$r['fl_ID']}'>Remove</a></td> <td>{$r['fl_COMMENT']}</td> <td><a href='friendslist.php?action=ccomment&f={$r['fl_ID']}'>Change</a></td> <td>$on</td></tr>";
}
}
function add_friend()
{
global $ir, $c, $userid;
$_POST['ID'] = abs((int) $_POST['ID']);
$_POST['comment'] =
mysql_real_escape_string(
nl2br(
htmlentities(stripslashes($_POST['comment']),
ENT_QUOTES, 'ISO-8859-1')), $c);
if ($_POST['ID'])
{
$qc =
mysql_query(
"SELECT * FROM friendslist WHERE fl_ADDER=$userid AND fl_ADDED={$_POST['ID']}",
$c);
$q =
mysql_query(
"SELECT * FROM users WHERE userid={$_POST['ID']}", $c);
if (mysql_num_rows($qc))
{
print "You cannot add the same person twice.";
}
else if ($userid == $_POST['ID'])
{
print
"You cannot be so lonely that you have to try and add yourself.";
}
else if (mysql_num_rows($q) == 0)
{
print "Oh no, you're trying to add a ghost.";
}
else
{
mysql_query(
"INSERT INTO friendslist VALUES(NULL, $userid, {$_POST['ID']}, '{$_POST['comment']}')",
$c) or die(mysql_error());
$r = mysql_fetch_array($q);
print
"{$r['username']} was added to your friends list.<br />
<a href='friendslist.php'>> Back</a>";
}
}
else
{
$_GET['ID'] =
(isset($_GET['ID']) && is_numeric($_GET['ID']))
? abs(intval($_GET['ID'])) : '';
print
"Adding a friend!<form action='friendslist.php?action=add' method='post'>
Friend's ID: <input type='text' name='ID' value='{$_GET['ID']}' /><br />
Comment (optional): <br />
<textarea name='comment' rows='7' cols='40'></textarea><br />
<input type='submit' value='Add Friend' /></form>";
}
}
function remove_friend()
{
global $ir, $c, $userid;
mysql_query(
"DELETE FROM friendslist WHERE fl_ID={$_GET['f']} AND fl_ADDER=$userid",
$c);
print
"Friends list entry removed!<br />
<a href='friendslist.php'>> Back</a>";
}
function change_comment()
{
global $ir, $c, $userid;
$_POST['f'] = abs((int) $_POST['f']);
$_POST['comment'] =
mysql_real_escape_string(
nl2br(
htmlentities(stripslashes($_POST['comment']),
ENT_QUOTES, 'ISO-8859-1')), $c);
if ($_POST['comment'])
{
mysql_query(
"UPDATE friendslist SET fl_COMMENT='{$_POST['comment']}' WHERE fl_ID={$_POST['f']} AND fl_ADDER=$userid",
$c);
print
"Comment for friend changed!<br />
<a href='friendslist.php'>> Back</a>";
}
else
{
$_GET['f'] = abs((int) $_GET['f']);
$q =
mysql_query(
"SELECT * FROM friendslist WHERE fl_ID={$_GET['f']} AND fl_ADDER=$userid",
$c);
if (mysql_num_rows($q))
{
$r = mysql_fetch_array($q);
$comment = str_replace('<br />', "\n", $r['fl_COMMENT']);
print
"Changing a comment.<form action='friendslist.php?action=ccomment' method='post'>
<input type='hidden' name='f' value='{$_GET['f']}' /><br />
Comment: <br />
<textarea rows='7' cols='40' name='comment'>$comment</textarea><br />
<input type='submit' value='Change Comment' /></form>";
}
else
{
print "Stop trying to edit comments that aren't yours.";
}
}
}
$h->endpage();