���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/alphpwcp/public_html/us/alphachat/modules/lhchat/blockedusers.php
���ѧ٧ѧ�
<?php erLhcoreClassChatEventDispatcher::getInstance()->dispatch('chat.blockedusers', array()); $tpl = erLhcoreClassTemplate::getInstance( 'lhchat/blockedusers.tpl.php'); if (is_numeric($Params['user_parameters_unordered']['remove_block'])) { try { if (!$currentUser->validateCSFRToken($Params['user_parameters_unordered']['csfr'])) { die('Invalid CSRF Token'); exit; } $block = erLhcoreClassModelChatBlockedUser::fetch($Params['user_parameters_unordered']['remove_block']); if ($block instanceof erLhcoreClassModelChatBlockedUser){ $block->removeThis(); } } catch (Exception $e) { // Do nothing } } if (isset($_POST['AddBlock'])) { $definition = array( 'IPToBlock' => new ezcInputFormDefinitionElement( ezcInputFormDefinitionElement::OPTIONAL, 'string' ) ); if (!isset($_POST['csfr_token']) || !$currentUser->validateCSFRToken($_POST['csfr_token'])) { erLhcoreClassModule::redirect('chat/blockedusers'); exit; } $form = new ezcInputForm( INPUT_POST, $definition ); $Errors = array(); $ignorable_ip = erLhcoreClassModelChatConfig::fetch('unban_ip_range')->current_value; if (!($form->hasValidData( 'IPToBlock' ) && $form->IPToBlock != '')) { $Errors[] = erTranslationClassLhTranslation::getInstance()->getTranslation('chat/blockedusers','Please enter an IP to block'); } if ($form->hasValidData( 'IPToBlock' ) && $form->IPToBlock != '' && $ignorable_ip != '' && erLhcoreClassIPDetect::isIgnored($form->IPToBlock,explode(',',$ignorable_ip))) { $Errors[] = erTranslationClassLhTranslation::getInstance()->getTranslation('chat/blockedusers','This IP can not be blocked!'); } if (empty($Errors)) { $ipBlock = new erLhcoreClassModelChatBlockedUser(); $ipBlock->ip = $form->IPToBlock; $ipBlock->user_id = erLhcoreClassUser::instance()->getUserID(); $ipBlock->datets = time(); $ipBlock->saveThis(); $tpl->set('block_saved',true); } else { $tpl->set('errors',$Errors); } } if (isset($_POST['AddBlockCountryButton'])) { $definition = array( 'AddBlockCountry' => new ezcInputFormDefinitionElement( ezcInputFormDefinitionElement::OPTIONAL, 'string' ) ); if (!isset($_POST['csfr_token']) || !$currentUser->validateCSFRToken($_POST['csfr_token'])) { erLhcoreClassModule::redirect('chat/blockedusers'); exit; } $form = new ezcInputForm( INPUT_POST, $definition ); $Errors = array(); if ( $form->hasValidData( 'AddBlockCountry' ) && $form->AddBlockCountry != '' ) { $ipBlock = new erLhcoreClassModelChatBlockedUser(); $ipBlock->ip = '127.0.0.1'; $ipBlock->nick = $form->AddBlockCountry; $ipBlock->user_id = erLhcoreClassUser::instance()->getUserID(); $ipBlock->datets = time(); $ipBlock->btype = erLhcoreClassModelChatBlockedUser::BLOCK_COUNTRY; if (isset($_POST['selector-AddBlockCountryDep']) && is_numeric($_POST['selector-AddBlockCountryDep'])) { $ipBlock->dep_id = $_POST['selector-AddBlockCountryDep']; } $ipBlock->saveThis(); } } if (isset($_POST['AddBlockEmail'])) { $definition = array( 'IPToBlock' => new ezcInputFormDefinitionElement( ezcInputFormDefinitionElement::OPTIONAL, 'string' ) ); if (!isset($_POST['csfr_token']) || !$currentUser->validateCSFRToken($_POST['csfr_token'])) { erLhcoreClassModule::redirect('chat/blockedusers'); exit; } $form = new ezcInputForm( INPUT_POST, $definition ); $Errors = array(); if ( $form->hasValidData( 'IPToBlock' ) && $form->IPToBlock != '' ) { $ipBlock = new erLhcoreClassModelChatBlockedUser(); $ipBlock->ip = '127.0.0.1'; $ipBlock->nick = $form->IPToBlock; $ipBlock->user_id = erLhcoreClassUser::instance()->getUserID(); $ipBlock->datets = time(); $ipBlock->btype = erLhcoreClassModelChatBlockedUser::BLOCK_EMAIL; $ipBlock->saveThis(); $tpl->set('block_saved',true); } else { $tpl->set('errors',array(erTranslationClassLhTranslation::getInstance()->getTranslation('chat/blockedusers','Please enter an IP to block'))); } } if (isset($_GET['doTest'])) { $chat = erLhcoreClassModelChat::fetch($_GET['chat_id']); if (is_object($chat)) { $tpl->set('is_blocked',erLhcoreClassModelChatBlockedUser::isBlocked(array('return_block' => true, 'online_user_id' => $chat->online_user_id, 'country_code' => $chat->country_code, 'ip' => $chat->ip, 'dep_id' => $chat->dep_id, 'nick' => $chat->nick, 'email' => $chat->email))); } } if (isset($_GET['doSearch'])) { $filterParams = erLhcoreClassSearchHandler::getParams(array('module' => 'chat','module_file' => 'block_search','format_filter' => true, 'use_override' => true, 'uparams' => $Params['user_parameters_unordered'])); $filterParams['is_search'] = true; } else { $filterParams = erLhcoreClassSearchHandler::getParams(array('module' => 'chat','module_file' => 'block_search','format_filter' => true, 'uparams' => $Params['user_parameters_unordered'])); $filterParams['is_search'] = false; } $append = erLhcoreClassSearchHandler::getURLAppendFromInput($filterParams['input_form']); if (isset($_GET['id']) && is_numeric($_GET['id'])){ $filterParams['filter']['filter']['id'] = (int)$_GET['id']; } erLhcoreClassChatEventDispatcher::getInstance()->dispatch('chat.blockedusers_filter',array('filter' => & $filterParams, 'uparams' => $Params['user_parameters_unordered'])); $pages = new lhPaginator(); $pages->serverURL = erLhcoreClassDesign::baseurl('chat/blockedusers').$append; $pages->items_total = erLhcoreClassModelChatBlockedUser::getCount($filterParams['filter']); $pages->setItemsPerPage(20); $pages->paginate(); $items = array(); if ($pages->items_total > 0) { $items = erLhcoreClassModelChatBlockedUser::getList(array_merge_recursive($filterParams['filter'],array('offset' => $pages->low, 'limit' => $pages->items_per_page))); } $tpl->set('items',$items); $tpl->set('pages',$pages); $filterParams['input_form']->form_action = erLhcoreClassDesign::baseurl('chat/blockedusers'); $tpl->set('input',$filterParams['input_form']); $tpl->set('inputAppend',$append); if ($currentUser->hasAccessTo('lhsystem','auditlog')) { $tpl->set('enabled_log',true); } $Result['content'] = $tpl->fetch(); $Result['path'] = array( array('url' => erLhcoreClassDesign::baseurl('system/configuration'),'title' => erTranslationClassLhTranslation::getInstance()->getTranslation('department/departments','System configuration')), array('title' => erTranslationClassLhTranslation::getInstance()->getTranslation('chat/blockedusers','Blocked users'))); erLhcoreClassChatEventDispatcher::getInstance()->dispatch('chat.blockedusres_path',array('result' => & $Result)); ?>
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0.02 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�