forked from MightyGorgon/icy_phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
card.php
438 lines (391 loc) · 16.8 KB
/
card.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
<?php
/**
*
* @package Icy Phoenix
* @version $Id$
* @copyright (c) 2008 Icy Phoenix
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
*
* @Extra credits for this file
* Niels Chr. Rød ([email protected]) - (http://mods.db9.dk)
*
*/
define('IN_ICYPHOENIX', true);
if (!defined('IP_ROOT_PATH')) define('IP_ROOT_PATH', './');
if (!defined('PHP_EXT')) define('PHP_EXT', substr(strrchr(__FILE__, '.'), 1));
include(IP_ROOT_PATH . 'common.' . PHP_EXT);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();
// End session management
if ($user->data['user_id'] == ANONYMOUS)
{
message_die(GENERAL_MESSAGE, $lang['NOT_LOGGED_IN_ERROR']);
}
// Find what we are to do
$mode = (isset($_POST['report_x'])) ? 'report' :
((isset($_POST['report_reset_x'])) ? 'report_reset' :
((isset($_POST['ban_x'])) ? 'ban' :
((isset($_POST['unban_x'])) ? 'unban' :
((isset($_POST['warn_x'])) ? 'warn' :
((isset($_POST['block_x'])) ? 'block' :
((isset($_GET['mode'])) ? $_GET['mode'] : ''
)
)
)
)
)
);
if (empty($mode))
{
message_die(GENERAL_ERROR, "No action specified", "", __LINE__, __FILE__, 'mode="' . $mode . '"');
}
$forum_id = request_var(POST_FORUM_URL, 0);
$topic_id = request_var(POST_TOPIC_URL, 0);
$post_id = request_var(POST_POST_URL, 0);
$post_id = empty($post_id) ? request_var('post_id', 0) : $post_id;
if (!empty($post_id) && (empty($forum_id) || empty($topic_id)))
{
$post_data = get_forum_topic_id_post($post_id);
if (empty($forum_id) && !empty($post_data['forum_id']))
{
$forum_id = $post_data['forum_id'];
}
if (empty($topic_id) && !empty($post_data['topic_id']))
{
$topic_id = $post_data['topic_id'];
}
}
$user_id = request_var(POST_USERS_URL, 0);
$user_id = ($user_id < 2) ? ANONYMOUS : $user_id;
$forum_id_append = (!empty($forum_id) ? (POST_FORUM_URL . '=' . $forum_id . '&') : '');
$topic_id_append = (!empty($topic_id) ? (POST_TOPIC_URL . '=' . $topic_id . '&') : '');
$post_id_append = (!empty($post_id) ? (POST_POST_URL . '=' . $post_id) : '');
// check that we have all what is needed to know
if (empty($post_id) && ($user_id == ANONYMOUS))
{
message_die(GENERAL_ERROR, "No user/post specified", "", __LINE__, __FILE__, 'post_id="' . $post_id . '", user_id="' . $user_id . '"');
}
// Start auth check
$is_auth = array();
$is_auth = auth(AUTH_ALL, $forum_id, $user->data);
if (!empty($post_id))
{
$sql = 'SELECT DISTINCT forum_id, poster_id, post_bluecard FROM ' . POSTS_TABLE . ' WHERE post_id = "' . (int) $post_id . '"';
$result = $db->sql_query($sql);
$result = $db->sql_fetchrow($result);
$blue_card = $result['post_bluecard'];
// post mode
$forum_id = $result['forum_id'];
$poster_id = (int) $result['poster_id'];
}
elseif ($user_id)
{
/*
user mode
forum_id will control which permission, when no post_id is given, and a user_id is given instead
disable the forum_id line will give no default access when no post_id is given
install extra permission mod, in order to enable this feature
*/
//$forum_id = PAGE_CARD;
$poster_id = (int) $user_id;
}
$no_error = true;
$already_banned = false;
if ($mode == 'report_reset')
{
if (!$is_auth['auth_mod'])
{
message_die(GENERAL_ERROR, $lang['Not_Authorized']);
}
$sql = "SELECT p.post_subject, f.forum_name FROM " . POSTS_TABLE . " p, " . FORUMS_TABLE . " f WHERE p.post_id = '" . $post_id . "' AND p.forum_id = f.forum_id";
$result = $db->sql_query($sql);
$subject = $db->sql_fetchrow($result);
$post_subject = $subject['post_subject'];
$forum_name = $subject['forum_name'];
$sql = 'UPDATE ' . POSTS_TABLE . ' SET post_bluecard = "0" WHERE post_id = "' . $post_id . '"';
$result = $db->sql_query($sql);
message_die(GENERAL_MESSAGE, $lang['Post_reset'].'<br /><br />'.
sprintf($lang['Click_return_viewtopic'], '<a href="' . append_sid(CMS_PAGE_VIEWTOPIC . '?' . $forum_id_append . $topic_id_append . POST_POST_URL . '=' . $post_id . '#p' . $post_id). '">', '</a>'));
}
elseif ($mode == 'report')
{
if (!$is_auth['auth_bluecard'])
{
message_die(GENERAL_ERROR, $lang['Not_Authorized']);
}
$sql = 'SELECT f.forum_name, p.topic_id FROM ' . POSTS_TABLE . ' p, ' . FORUMS_TABLE . ' f WHERE p.post_id = "' . $post_id . '" AND p.forum_id = f.forum_id';
$result = $db->sql_query($sql);
$post_details = $db->sql_fetchrow($result);
$forum_name = $post_details['forum_name'];
$topic_id = $post_details['topic_id'];
$sql = 'SELECT p.post_subject FROM ' . POSTS_TABLE . ' p, ' . TOPICS_TABLE . ' t WHERE t.topic_id = "' . $topic_id . '" AND p.post_id = t.topic_first_post_id';
$result = $db->sql_query($sql);
$post_details = $db->sql_fetchrow($result);
$post_subject = $post_details['post_subject'];
$sql = 'SELECT p.topic_id FROM ' . POSTS_TABLE . ' p WHERE p.post_subject = "(' . $post_id . ')' . $db->sql_escape($post_subject) . '"';
$result = $db->sql_query($sql);
$post_details = $db->sql_fetchrow($result);
$already_reported = ($blue_card) ? $post_details['topic_id'] : '';
$blue_card++;
$sql = 'UPDATE ' . POSTS_TABLE . ' SET post_bluecard = "' . $blue_card . '" WHERE post_id = "' . $post_id . '"';
$result = $db->sql_query($sql);
// Obtain list of moderators of this forum
$sql = "SELECT u.user_id, u.username, u.user_email, u.user_lang
FROM " . AUTH_ACCESS_TABLE . " aa, " . USER_GROUP_TABLE . " ug, " . GROUPS_TABLE . " g, " . USERS_TABLE . " u
WHERE aa.forum_id = $forum_id
AND aa.auth_mod = " . TRUE . "
AND ug.group_id = aa.group_id
AND g.group_id = aa.group_id
AND u.user_id = ug.user_id";
$result = $db->sql_query($sql);
$total_mods = $db->sql_numrows($result);
$mods_rowset = $db->sql_fetchrowset($result);
$db->sql_freeresult($result);
// Obtain list of moderators of this forum
$sql = "SELECT u.user_id, u.username, u.user_email, u.user_lang
FROM " . USERS_TABLE . " u
WHERE u.user_level = '" . ADMIN . "'
OR u.user_level = '" . JUNIOR_ADMIN . "'";
$result = $db->sql_query($sql);
$total_admins = $db->sql_numrows($result);
$admins_rowset = $db->sql_fetchrowset($result);
$db->sql_freeresult($result);
$temp_recipients = array_merge($mods_rowset, $admins_rowset);
$report_recipients = array();
$report_recipients_ids = array();
$total_recipients = 0;
foreach ($temp_recipients as $recipient)
{
if (!isset($report_recipients_ids[$recipient['user_id']]))
{
$report_recipients[] = $recipient;
$report_recipients_ids[$recipient['user_id']] = $recipient['user_id'];
$total_recipients++;
}
}
if (empty($total_recipients))
{
message_die(GENERAL_MESSAGE, $lang['No_moderators'] . '<br /><br />');
}
(($config['report_forum']) ? sprintf($lang['Send_message'], '<a href="' . append_sid(CMS_PAGE_POSTING . '?mode=' . (($already_reported) ? 'reply&' . POST_TOPIC_URL . '=' . $already_reported : 'newtopic&' . POST_FORUM_URL . '=' . $config['report_forum']) . '&postreport=' . $post_id) . '">', '</a>') : '') . sprintf($lang['Click_return_viewtopic'], '<a href="' . append_sid(CMS_PAGE_VIEWTOPIC . '?' . $forum_id_append . $topic_id_append . POST_POST_URL . '=' . $post_id . '#p' . $post_id) . '">', '</a>');
$i = 0;
if (($blue_card >= $config['bluecard_limit_2'] && (!(($blue_card - $config['bluecard_limit_2']) % $config['bluecard_limit']))) || ($blue_card == $config['bluecard_limit_2']))
{
include(IP_ROOT_PATH . 'includes/emailer.' . PHP_EXT);
$server_url = create_server_url();
$viewtopic_server_url = $server_url . CMS_PAGE_VIEWTOPIC;
while ($i < $total_recipients)
{
$emailer = new emailer();
$emailer->headers('X-AntiAbuse: Board servername - ' . trim($config['server_name']));
$emailer->headers('X-AntiAbuse: User_id - ' . $user->data['user_id']);
$emailer->headers('X-AntiAbuse: Username - ' . $user->data['username']);
$emailer->headers('X-AntiAbuse: User IP - ' . $user_ip);
$emailer->use_template('repport_post', (file_exists(IP_ROOT_PATH . 'language/lang_' . $report_recipients[$i]['user_lang'] . '/email/html/repport_post.tpl')) ? $report_recipients[$i]['user_lang'] : 'english');
$emailer->to($report_recipients[$i]['user_email']);
//$emailer->set_subject($subject);
$emailer->assign_vars(array(
'POST_URL' => $viewtopic_server_url . '?' . $forum_id_append . $topic_id_append . POST_POST_URL . '=' . $post_id . '#p' . $post_id,
'POST_SUBJECT' => $post_subject,
'FORUM_NAME' => $forum_name,
'USER' => '"' . $user->data['username'] . '"',
'NUMBER_OF_REPPORTS' => $blue_card,
'SITENAME' => $config['sitename'],
'BOARD_EMAIL' => $config['board_email']
)
);
$emailer->send();
$emailer->reset();
$i++;
}
}
message_die(GENERAL_MESSAGE, (($total_mods) ? sprintf($lang['Post_reported'], $total_mods) : $lang['Post_reported_1']) . '<br /><br />' . (($config['report_forum']) ? sprintf($lang['Send_message'], '<a href="' . append_sid('posting.' . PHP_EXT . '?mode=' . (($already_reported) ? 'reply&' . POST_TOPIC_URL . '=' . $already_reported : 'newtopic&' . POST_FORUM_URL . '=' . $config['report_forum']) . '&postreport=' . $post_id) . '">', '</a>') : '') . sprintf($lang['Click_return_viewtopic'], '<a href="' . append_sid(CMS_PAGE_VIEWTOPIC . '?' . $forum_id_append . $topic_id_append . POST_POST_URL . '=' . $post_id . '#p' . $post_id). '">', '</a>'));
}
elseif ($mode == 'unban')
{
if (($user->data['user_level'] != ADMIN) && !$is_auth['auth_greencard'])
{
message_die(GENERAL_ERROR, $lang['Not_Authorized']);
}
// remove the user from ban list
$sql = 'DELETE FROM ' . BANLIST_TABLE . ' WHERE ban_userid = "' . $poster_id . '"';
$result = $db->sql_query($sql);
// update the user table with new status
$sql = 'UPDATE ' . USERS_TABLE . ' SET user_warnings = "0", user_active = "1" WHERE user_id = "' . $poster_id . '"';
$result = $db->sql_query($sql);
$message = $lang['Ban_update_green'] . '<br /><br />' . sprintf($lang['Send_PM_user'], '<a href="' . append_sid(CMS_PAGE_PRIVMSG . '?mode=post&' . POST_USERS_URL . '=' . $poster_id) . '">', '</a>');
$e_temp = 'ban_reactivated';
//$e_subj = $lang['Ban_reactivate'];
}
elseif ($mode == 'ban')
{
$founder_id = (defined('FOUNDER_ID') ? FOUNDER_ID : get_founder_id());
if ((($user->data['user_level'] != ADMIN) && !$is_auth['auth_ban']) || ($poster_id == $founder_id))
{
message_die(GENERAL_ERROR, $lang['Not_Authorized']);
}
// Get user basic data
$sql = 'SELECT user_active, user_level FROM ' . USERS_TABLE . ' WHERE user_id="' . $poster_id . '"';
$result = $db->sql_query($sql);
$the_user = $db->sql_fetchrow($result);
if (($the_user['user_level'] == ADMIN) || ($the_user['user_level'] == JUNIOR_ADMIN))
{
message_die(GENERAL_ERROR, $lang['Ban_no_admin']);
}
// insert the user in the ban list
$sql = 'SELECT ban_userid FROM ' . BANLIST_TABLE . ' WHERE ban_userid = "' . $poster_id . '"';
$result = $db->sql_query($sql);
if ((!$db->sql_fetchrowset($result)) && ($poster_id != ANONYMOUS))
{
// insert the user in the ban list
$ban_insert_array = array(
'ban_userid' => $poster_id,
'ban_by_userid' => $user->data['user_id'],
'ban_start' => time()
);
$sql = "INSERT INTO " . BANLIST_TABLE . " " . $db->sql_build_insert_update($ban_insert_array, true);
$result = $db->sql_query($sql);
// update the user table with new status
$sql = 'UPDATE ' . USERS_TABLE . ' SET user_warnings = "' . $config['max_user_bancard'] . '", user_active = "0" WHERE user_id="' . $poster_id . '"';
$result = $db->sql_query($sql);
// Better kill all the sessions!
$sql = 'DELETE FROM ' . SESSIONS_TABLE . ' WHERE session_user_id="' . $poster_id . '"';
$result = $db->sql_query($sql);
$message = $lang['Ban_update_red'];
$e_temp = 'ban_block';
//$e_subj = $lang['Card_banned'];
// Delete notifications for user
if (!class_exists('class_notifications'))
{
include(IP_ROOT_PATH . 'includes/class_notifications.' . PHP_EXT);
$class_notifications = new class_notifications();
}
$class_notifications->delete_user_notifications($poster_id);
}
else
{
$sql = 'UPDATE ' . USERS_TABLE . ' SET user_warnings = "' . $config['max_user_bancard'] . '", user_active = "0" WHERE user_id="' . $poster_id . '"';
$result = $db->sql_query($sql);
$no_error = false;
$already_banned = true;
}
}
elseif ($mode == 'warn')
{
$founder_id = (defined('FOUNDER_ID') ? FOUNDER_ID : get_founder_id());
if ((($user->data['user_level'] != ADMIN) && !$is_auth['auth_ban']) || ($poster_id == $founder_id))
{
message_die(GENERAL_ERROR, $lang['Not_Authorized']);
}
// Get user basic data
$sql = 'SELECT user_active, user_warnings, user_level FROM ' . USERS_TABLE . ' WHERE user_id="' . $poster_id . '"';
$result = $db->sql_query($sql);
$the_user = $db->sql_fetchrow($result);
if (($the_user['user_level'] == ADMIN) || ($the_user['user_level'] == JUNIOR_ADMIN))
{
message_die(GENERAL_ERROR, $lang['Ban_no_admin']);
}
//update the warning counter
$sql = 'UPDATE ' . USERS_TABLE . ' SET user_warnings = user_warnings + 1 WHERE user_id = "' . $poster_id . '"';
$result = $db->sql_query($sql);
// check if the user are to be banned, if so do it ...
if (($the_user['user_warnings'] + 1) >= $config['max_user_bancard'])
{
$sql = 'SELECT ban_userid FROM ' . BANLIST_TABLE . ' WHERE ban_userid = "' . $poster_id . '"';
$result = $db->sql_query($sql);
if ((!$db->sql_fetchrowset($result)) && ($poster_id != ANONYMOUS))
{
// insert the user in the ban list
$ban_insert_array = array(
'ban_userid' => $poster_id,
'ban_by_userid' => $user->data['user_id'],
'ban_start' => time()
);
$sql = "INSERT INTO " . BANLIST_TABLE . " " . $db->sql_build_insert_update($ban_insert_array, true);
$result = $db->sql_query($sql);
$sql = "UPDATE " . USERS_TABLE . " SET user_warnings = " . $config['max_user_bancard'] . " WHERE user_id = " . $poster_id;
$result = $db->sql_query($sql);
// update the user table with new status
$sql = 'UPDATE ' . SESSIONS_TABLE . ' SET session_logged_in = "0" WHERE session_user_id = "' . $poster_id . '"';
$result = $db->sql_query($sql);
$message = $lang['Ban_update_red'];
$e_temp = 'ban_block';
// $e_subj = $lang['Ban_blocked'];
}
else
{
$no_error = false;
$already_banned = true;
}
}
else
{
// the user shall not be baned this time, update the counter
$message = sprintf($lang['Ban_update_yellow'], ($the_user['user_warnings'] + 1), $config['max_user_bancard']) . '<br /><br />' . sprintf($lang['Send_PM_user'], '<a href="' . append_sid(CMS_PAGE_PRIVMSG . '?mode=post&u=' . $poster_id) . '">', '</a>');
$e_temp = 'ban_warning';
// $e_subj = $lang['Ban_warning'];
}
}
else
{
$no_error = false;
}
if ($no_error)
{
$sql = 'SELECT username, user_warnings, user_email, user_lang FROM ' . USERS_TABLE . ' WHERE user_id = "' . $poster_id . '"';
$result = $db->sql_query($sql);
$warning_data = $db->sql_fetchrow($result);
if (!empty($warning_data['user_email']))
{
$server_url = create_server_url();
$viewtopic_server_url = $server_url . CMS_PAGE_VIEWTOPIC;
$from_email = ($user->data['user_email'] && $user->data['user_allow_viewemail']) ? $user->data['user_email'] : $config['board_email'];
include_once(IP_ROOT_PATH . 'includes/emailer.' . PHP_EXT);
$emailer = new emailer();
$emailer->headers('X-AntiAbuse: Board servername - ' . trim($config['server_name']));
$emailer->headers('X-AntiAbuse: User_id - ' . $user->data['user_id']);
$emailer->headers('X-AntiAbuse: Username - ' . $user->data['username']);
$emailer->headers('X-AntiAbuse: User IP - ' . $user_ip);
$emailer->use_template($e_temp, $warning_data['user_lang']);
$emailer->to($warning_data['user_email']);
$emailer->from($from_email);
$emailer->replyto($from_email);
//$emailer->set_subject($e_subj);
$email_sig = create_signature($config['board_email_sig']);
$emailer->assign_vars(array(
'SITENAME' => $config['sitename'],
'WARNINGS' => $warning_data['user_warnings'],
'TOTAL_WARN' => $config['max_user_bancard'],
'POST_URL' => $viewtopic_server_url . '?' . $forum_id_append . $topic_id_append . POST_POST_URL . '=' . $post_id . '#p' . $post_id,
'EMAIL_SIG' => $email_sig,
'WARNER' => $user->data['username'],
'BLOCK_TIME' => $block_time,
'WARNED_POSTER' => $warning_data['username']
)
);
$emailer->send();
$emailer->reset();
}
else
{
$message .= '<br /><br />' . $lang['user_no_email'];
}
}
elseif ($already_banned)
{
$message = $lang['user_already_banned'];
}
else
{
$message = 'Error in card.' . PHP_EXT;
}
$cache->destroy_datafiles(array('_ranks'), MAIN_CACHE_FOLDER, 'data', false);
$db->clear_cache('ban_', USERS_CACHE_FOLDER);
$message .= (!empty($post_id) && ($post_id > 0)) ? ('<br /><br />' . sprintf($lang['Click_return_viewtopic'], '<a href="' . append_sid(CMS_PAGE_VIEWTOPIC . '?' . $forum_id_append . $topic_id_append . POST_POST_URL . '=' . $post_id . '#p' . $post_id) . '">', '</a>')) : ('<br /><br />' . sprintf($lang['Click_return_profile'], '<a href="' . append_sid(CMS_PAGE_PROFILE . '?mode=viewprofile&' . POST_USERS_URL . '=' . $poster_id). '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid(CMS_PAGE_FORUM). '">', '</a>'));
message_die(GENERAL_MESSAGE, $message);
?>