* @license GNU General Public License, version 2 (GPL-2.0) * * For full copyright and license information, please see * the docs/CREDITS.txt file. * */ /** * @ignore */ use phpbb\ban\exception\type_not_found_exception; use phpbb\ban\manager; use phpbb\language\language; if (!defined('IN_PHPBB')) { exit; } class acp_ban { var $u_action; function main($id, $mode) { global $language, $template, $request, $phpbb_dispatcher, $phpbb_container; global $phpbb_root_path, $phpEx; /** @var manager $ban_manager */ $ban_manager = $phpbb_container->get('ban.manager'); if (!function_exists('user_ban')) { include($phpbb_root_path . 'includes/functions_user.' . $phpEx); } $bansubmit = $request->is_set_post('bansubmit'); $unbansubmit = $request->is_set_post('unbansubmit'); /** @var language $language */ $language->add_lang(['acp/ban', 'acp/users']); $this->tpl_name = 'acp_ban'; $form_key = 'acp_ban'; add_form_key($form_key); if (($bansubmit || $unbansubmit) && !check_form_key($form_key)) { trigger_error($language->lang('FORM_INVALID') . adm_back_link($this->u_action), E_USER_WARNING); } // Ban submitted? if ($bansubmit) { // Grab the list of entries $ban = $request->variable('ban', '', true); $ban_length = $request->variable('banlength', 0); $ban_length_other = $request->variable('banlengthother', ''); $ban_reason = $request->variable('banreason', '', true); $ban_give_reason = $request->variable('bangivereason', '', true); if ($ban) { $abort_ban = false; /** * Use this event to modify the ban details before the ban is performed * * @event core.acp_ban_before * @var string mode One of the following: user, ip, email * @var string ban Either string or array with usernames, ips or email addresses * @var int ban_length Ban length in minutes * @var string ban_length_other Ban length as a date (YYYY-MM-DD) * @var string ban_reason Ban reason displayed to moderators * @var string ban_give_reason Ban reason displayed to the banned user * @var mixed abort_ban Either false, or an error message that is displayed to the user. * If a string is given the bans are not issued. * @since 3.1.0-RC5 */ $vars = array( 'mode', 'ban', 'ban_length', 'ban_length_other', 'ban_reason', 'ban_give_reason', 'abort_ban', ); extract($phpbb_dispatcher->trigger_event('core.acp_ban_before', compact($vars))); if ($abort_ban) { trigger_error($abort_ban . adm_back_link($this->u_action)); } $ban_start = new \DateTime(); $ban_start->setTimestamp(time()); $ban_end = $ban_manager->get_ban_end($ban_start, $ban_length, $ban_length_other); $ban = explode("\n", $ban); try { $ban_manager->ban($mode, $ban, $ban_start, $ban_end, $ban_reason, $ban_give_reason); } catch (\phpbb\exception\exception_interface $exception) { trigger_error($language->lang_array($exception->getMessage(), $exception->get_parameters()), E_USER_WARNING); } /** * Use this event to perform actions after the ban has been performed * * @event core.acp_ban_after * @var string mode One of the following: user, ip, email * @var string ban Either string or array with usernames, ips or email addresses * @var int ban_length Ban length in minutes * @var string ban_length_other Ban length as a date (YYYY-MM-DD) * @var string ban_reason Ban reason displayed to moderators * @var string ban_give_reason Ban reason displayed to the banned user * @since 3.1.0-RC5 */ $vars = array( 'mode', 'ban', 'ban_length', 'ban_length_other', 'ban_reason', 'ban_give_reason', ); extract($phpbb_dispatcher->trigger_event('core.acp_ban_after', compact($vars))); trigger_error($language->lang('BAN_UPDATE_SUCCESSFUL') . adm_back_link($this->u_action)); } } else if ($unbansubmit) { $ban = $request->variable('unban', ['']); if ($ban) { $ban_manager->unban($mode, $ban); trigger_error($language->lang('BAN_UPDATE_SUCCESSFUL') . adm_back_link($this->u_action)); } } // Define language vars $this->page_title = $language->lang(strtoupper($mode) . '_BAN'); $l_ban_explain = $language->lang(strtoupper($mode) . '_BAN_EXPLAIN'); $l_unban_title = $language->lang(strtoupper($mode) . '_UNBAN'); $l_unban_explain = $language->lang(strtoupper($mode) . '_UNBAN_EXPLAIN'); $l_no_ban_cell = $language->lang(strtoupper($mode) . '_NO_BANNED'); switch ($mode) { case 'user': $l_ban_cell = $language->lang('USERNAME'); break; case 'ip': $l_ban_cell = $language->lang('IP_HOSTNAME'); break; case 'email': $l_ban_cell = $language->lang('EMAIL_ADDRESS'); break; default: throw new type_not_found_exception(); } display_ban_end_options(); display_ban_options($mode); $template->assign_vars(array( 'L_TITLE' => $this->page_title, 'L_EXPLAIN' => $l_ban_explain, 'L_UNBAN_TITLE' => $l_unban_title, 'L_UNBAN_EXPLAIN' => $l_unban_explain, 'L_BAN_CELL' => $l_ban_cell, 'L_NO_BAN_CELL' => $l_no_ban_cell, 'S_USERNAME_BAN' => $mode == 'user' ? true : false, 'U_ACTION' => $this->u_action, 'U_FIND_USERNAME' => append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=searchuser&form=acp_ban&field=ban'), )); } }