(a little test for later merges)
[phpbb.git] / phpBB / includes / acp / acp_ban.php
blob319837658438750b53bf3e8ee61fccdde33eaea8
1 <?php
2 /**
4 * @package acp
5 * @version $Id$
6 * @copyright (c) 2005 phpBB Group
7 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
9 */
11 /**
12 * @ignore
14 if (!defined('IN_PHPBB'))
16 exit;
19 /**
20 * @package acp
22 class acp_ban
24 var $u_action;
26 function main($id, $mode)
28 global $config, $db, $user, $auth, $template, $cache;
29 global $phpbb_root_path, $phpbb_admin_path, $phpEx, $table_prefix;
31 include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
33 $bansubmit = (isset($_POST['bansubmit'])) ? true : false;
34 $unbansubmit = (isset($_POST['unbansubmit'])) ? true : false;
35 $current_time = time();
37 $user->add_lang(array('acp/ban', 'acp/users'));
38 $this->tpl_name = 'acp_ban';
39 $form_key = 'acp_ban';
40 add_form_key($form_key);
42 if (($bansubmit || $unbansubmit) && !check_form_key($form_key))
44 trigger_error($user->lang['FORM_INVALID'] . adm_back_link($this->u_action), E_USER_WARNING);
47 // Ban submitted?
48 if ($bansubmit)
50 // Grab the list of entries
51 $ban = utf8_normalize_nfc(request_var('ban', '', true));
52 $ban_len = request_var('banlength', 0);
53 $ban_len_other = request_var('banlengthother', '');
54 $ban_exclude = request_var('banexclude', 0);
55 $ban_reason = utf8_normalize_nfc(request_var('banreason', '', true));
56 $ban_give_reason = utf8_normalize_nfc(request_var('bangivereason', '', true));
58 if ($ban)
60 user_ban($mode, $ban, $ban_len, $ban_len_other, $ban_exclude, $ban_reason, $ban_give_reason);
62 trigger_error($user->lang['BAN_UPDATE_SUCCESSFUL'] . adm_back_link($this->u_action));
65 else if ($unbansubmit)
67 $ban = request_var('unban', array(''));
69 if ($ban)
71 user_unban($mode, $ban);
73 trigger_error($user->lang['BAN_UPDATE_SUCCESSFUL'] . adm_back_link($this->u_action));
77 // Define language vars
78 $this->page_title = $user->lang[strtoupper($mode) . '_BAN'];
80 $l_ban_explain = $user->lang[strtoupper($mode) . '_BAN_EXPLAIN'];
81 $l_ban_exclude_explain = $user->lang[strtoupper($mode) . '_BAN_EXCLUDE_EXPLAIN'];
82 $l_unban_title = $user->lang[strtoupper($mode) . '_UNBAN'];
83 $l_unban_explain = $user->lang[strtoupper($mode) . '_UNBAN_EXPLAIN'];
84 $l_no_ban_cell = $user->lang[strtoupper($mode) . '_NO_BANNED'];
86 switch ($mode)
88 case 'user':
89 $l_ban_cell = $user->lang['USERNAME'];
90 break;
92 case 'ip':
93 $l_ban_cell = $user->lang['IP_HOSTNAME'];
94 break;
96 case 'email':
97 $l_ban_cell = $user->lang['EMAIL_ADDRESS'];
98 break;
101 $this->display_ban_options($mode);
103 $template->assign_vars(array(
104 'L_TITLE' => $this->page_title,
105 'L_EXPLAIN' => $l_ban_explain,
106 'L_UNBAN_TITLE' => $l_unban_title,
107 'L_UNBAN_EXPLAIN' => $l_unban_explain,
108 'L_BAN_CELL' => $l_ban_cell,
109 'L_BAN_EXCLUDE_EXPLAIN' => $l_ban_exclude_explain,
110 'L_NO_BAN_CELL' => $l_no_ban_cell,
112 'S_USERNAME_BAN' => ($mode == 'user') ? true : false,
114 'U_ACTION' => $this->u_action,
115 'U_FIND_USERNAME' => append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=searchuser&amp;form=acp_ban&amp;field=ban'),
120 * Display ban options
122 function display_ban_options($mode)
124 global $user, $db, $template;
126 // Ban length options
127 $ban_end_text = array(0 => $user->lang['PERMANENT'], 30 => $user->lang['30_MINS'], 60 => $user->lang['1_HOUR'], 360 => $user->lang['6_HOURS'], 1440 => $user->lang['1_DAY'], 10080 => $user->lang['7_DAYS'], 20160 => $user->lang['2_WEEKS'], 40320 => $user->lang['1_MONTH'], -1 => $user->lang['UNTIL'] . ' -&gt; ');
129 $ban_end_options = '';
130 foreach ($ban_end_text as $length => $text)
132 $ban_end_options .= '<option value="' . $length . '">' . $text . '</option>';
135 switch ($mode)
137 case 'user':
139 $field = 'username';
140 $l_ban_cell = $user->lang['USERNAME'];
142 $sql = 'SELECT b.*, u.user_id, u.username, u.username_clean
143 FROM ' . BANLIST_TABLE . ' b, ' . USERS_TABLE . ' u
144 WHERE (b.ban_end >= ' . time() . '
145 OR b.ban_end = 0)
146 AND u.user_id = b.ban_userid
147 ORDER BY u.username_clean ASC';
148 break;
150 case 'ip':
152 $field = 'ban_ip';
153 $l_ban_cell = $user->lang['IP_HOSTNAME'];
155 $sql = 'SELECT *
156 FROM ' . BANLIST_TABLE . '
157 WHERE (ban_end >= ' . time() . "
158 OR ban_end = 0)
159 AND ban_ip <> ''
160 ORDER BY ban_ip";
161 break;
163 case 'email':
165 $field = 'ban_email';
166 $l_ban_cell = $user->lang['EMAIL_ADDRESS'];
168 $sql = 'SELECT *
169 FROM ' . BANLIST_TABLE . '
170 WHERE (ban_end >= ' . time() . "
171 OR ban_end = 0)
172 AND ban_email <> ''
173 ORDER BY ban_email";
174 break;
176 $result = $db->sql_query($sql);
178 $banned_options = '';
179 $ban_length = $ban_reasons = $ban_give_reasons = array();
181 while ($row = $db->sql_fetchrow($result))
183 $banned_options .= '<option' . (($row['ban_exclude']) ? ' class="sep"' : '') . ' value="' . $row['ban_id'] . '">' . $row[$field] . '</option>';
185 $time_length = ($row['ban_end']) ? ($row['ban_end'] - $row['ban_start']) / 60 : 0;
187 if ($time_length == 0)
189 // Banned permanently
190 $ban_length[$row['ban_id']] = $user->lang['PERMANENT'];
192 else if (isset($ban_end_text[$time_length]))
194 // Banned for a given duration
195 $ban_length[$row['ban_id']] = sprintf($user->lang['BANNED_UNTIL_DURATION'], $ban_end_text[$time_length], $user->format_date($row['ban_end'], false, true));
197 else
199 // Banned until given date
200 $ban_length[$row['ban_id']] = sprintf($user->lang['BANNED_UNTIL_DATE'], $user->format_date($row['ban_end'], false, true));
203 $ban_reasons[$row['ban_id']] = $row['ban_reason'];
204 $ban_give_reasons[$row['ban_id']] = $row['ban_give_reason'];
206 $db->sql_freeresult($result);
208 if (sizeof($ban_length))
210 foreach ($ban_length as $ban_id => $length)
212 $template->assign_block_vars('ban_length', array(
213 'BAN_ID' => (int) $ban_id,
214 'LENGTH' => $length,
215 'A_LENGTH' => addslashes($length),
220 if (sizeof($ban_reasons))
222 foreach ($ban_reasons as $ban_id => $reason)
224 $template->assign_block_vars('ban_reason', array(
225 'BAN_ID' => $ban_id,
226 'REASON' => $reason,
227 'A_REASON' => addslashes(htmlspecialchars_decode($reason)),
232 if (sizeof($ban_give_reasons))
234 foreach ($ban_give_reasons as $ban_id => $reason)
236 $template->assign_block_vars('ban_give_reason', array(
237 'BAN_ID' => $ban_id,
238 'REASON' => $reason,
239 'A_REASON' => addslashes(htmlspecialchars_decode($reason)),
244 $template->assign_vars(array(
245 'S_BAN_END_OPTIONS' => $ban_end_options,
246 'S_BANNED_OPTIONS' => ($banned_options) ? true : false,
247 'BANNED_OPTIONS' => $banned_options)