check_trackback!='Y') $argsConfig->check_trackback = 'N'; if($argsConfig->limits!='Y') $argsConfig->limits = 'N'; // Create and insert the module Controller object $oModuleController = &getController('module'); $moduleConfigOutput = $oModuleController->insertModuleConfig('spamfilter',$argsConfig); if(!$moduleConfigOutput->toBool()) return $moduleConfigOutput; $returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispSpamfilterAdminConfigBlock'); $this->setRedirectUrl($returnUrl); } function procSpamfilterAdminInsertDeniedIP() { //스팸IP 추가 $ipaddress_list = Context::get('ipaddress_list'); $oSpamfilterController = &getController('spamfilter'); if($ipaddress_list) { $output = $oSpamfilterController->insertIP($ipaddress_list); if(!$output->toBool() && !$output->get('fail_list')) return $output; } if($output->get('fail_list')) $message_fail = ''.sprintf(Context::getLang('msg_faillist'),$output->get('fail_list')).''; $this->setMessage(Context::getLang('success_registed').$message_fail); $returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispSpamfilterAdminDeniedIPList'); $this->setRedirectUrl($returnUrl); } function procSpamfilterAdminInsertDeniedWord() { //스팸 키워드 추가 $word_list = Context::get('word_list'); if($word_list) { $output = $this->insertWord($word_list); if(!$output->toBool() && !$output->get('fail_list')) return $output; } if($output->get('fail_list')) $message_fail = ''.sprintf(Context::getLang('msg_faillist'),$output->get('fail_list')).''; $this->setMessage(Context::getLang('success_registed').$message_fail); $returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispSpamfilterAdminDeniedWordList'); $this->setRedirectUrl($returnUrl); } /** * @brief Delete the banned IP */ function procSpamfilterAdminDeleteDeniedIP() { $ipAddressList = Context::get('ipaddress'); if(is_array($ipAddressList)) { foreach($ipAddressList AS $key=>$ipaddress) { $this->deleteIP($ipaddress); } } $this->setMessage(Context::getLang('success_deleted')); $returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispSpamfilterAdminDeniedIPList'); return $this->setRedirectUrl($returnUrl); } /** * @brief Delete the prohibited Word */ function procSpamfilterAdminDeleteDeniedWord() { $word = Context::get('word'); //$word = base64_decode(Context::get('word')); $output = $this->deleteWord($word); $returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispSpamfilterAdminDeniedWordList','active','word'); return $this->setRedirectUrl($returnUrl, $output); } /** * @brief Delete IP * Remove the IP address which was previously registered as a spammers */ function deleteIP($ipaddress) { if(!$ipaddress) return; $args->ipaddress = $ipaddress; return executeQuery('spamfilter.deleteDeniedIP', $args); } /** * @brief Register the spam word * The post, which contains the newly registered spam word, should be considered as a spam */ function insertWord($word_list) { if(!preg_match("/^(.{2,40}\s*)*$/",$word_list)) return new Object(-1, 'msg_invalid'); $word_list = str_replace("\r","",$word_list); $word_list = explode("\n",$word_list); $fail_word = ''; foreach($word_list as $word) { if(trim($word)) $args->word = $word; $output = executeQuery('spamfilter.insertDeniedWord', $args); if(!$output->toBool()) $fail_word .= $word.'
'; } $output->add('fail_list',$fail_word); return $output; } /** * @brief Remove the spam word * Remove the word which was previously registered as a spam word */ function deleteWord($word) { if(!$word) return; $args->word = $word; return executeQuery('spamfilter.deleteDeniedWord', $args); } } /* End of file spamfilter.admin.controller.php */ /* Location: ./modules/spamfilter/spamfilter.admin.controller.php */