Last active
December 26, 2020 18:03
-
-
Save Kcko/88fe4f0cb871dd7f838a to your computer and use it in GitHub Desktop.
Nette antispam control
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Nette\Forms\Controls\TextInput, | |
Nette\Forms\Form, | |
Nette\Utils\Html; | |
/** | |
* AntispamControl | |
* add basic antispam feature to Nette forms. | |
* | |
* <code> | |
* // Register extension | |
* AntispamControl::register(); | |
* | |
* // Add antispam to form | |
* $form->addAntispam(); | |
* </code> | |
* | |
* @version 0.4 | |
* @author Michal Mikoláš <[email protected]> | |
* @license CC BY <http://creativecommons.org/licenses/by/3.0/cz/> | |
*/ | |
class AntispamControl extends TextInput | |
{ | |
/** @var int minimum delay [sec] to send form */ | |
public static $minDelay = 5; | |
/** | |
* Register Antispam to Nette Forms | |
* @return void | |
*/ | |
public static function register() | |
{ | |
Form::extensionMethod('addAntispam', function(Form $form, $name = 'spam', $label = 'Toto pole vymažte', $msg = 'Byl detekován pokus o spam.'){ | |
// "All filled" protection | |
$form[$name] = new AntispamControl($label, NULL, NULL, $msg); | |
// "Send delay" protection | |
$form->addHidden('form_created', strtr(time(), '0123456789', 'jihgfedcba')) | |
->addRule( | |
function($item){ | |
if (AntispamControl::$minDelay <= 0) return TRUE; // turn off "Send delay protection" | |
$value = (int)strtr($item->value, 'jihgfedcba', '0123456789'); | |
return $value <= (time() - AntispamControl::$minDelay); | |
}, | |
$msg | |
); | |
return $form; | |
}); | |
} | |
/** | |
* @param string|Html | |
* @param int | |
* @param int | |
* @param string | |
*/ | |
public function __construct($label = '', $cols = NULL, $maxLength = NULL, $msg = '') | |
{ | |
parent::__construct($label, $cols, $maxLength); | |
$this->setDefaultValue('http://'); | |
$this->addRule(Form::BLANK, $msg); | |
} | |
/** | |
* @return TextInput | |
*/ | |
public function getControl() | |
{ | |
$control = parent::getControl(); | |
$control = $this->addAntispamScript($control); | |
return $control; | |
} | |
/** | |
* @param Html | |
* @return Html | |
*/ | |
protected function addAntispamScript(Html $control) | |
{ | |
$control = Html::el('')->add($control); | |
$control->add( Html::el('script', array('type' => 'text/javascript'))->setHtml(" | |
// Clear input value | |
var input = document.getElementById('" . $control[0]->id . "'); | |
input.value = ''; | |
// Hide input and label | |
if (input.parentNode.parentNode.nodeName == 'TR') { | |
// DefaultFormRenderer | |
input.parentNode.parentNode.style.display = 'none'; | |
} else { | |
// Manual render | |
input.style.display = 'none'; | |
var labels = input.parentNode.getElementsByTagName('label'); | |
for (var i = 0; i < labels.length; i++) { // find and hide label | |
if (labels[i].getAttribute('for') == '" . $control[0]->id . "') { | |
labels[i].style.display = 'none'; | |
} | |
} | |
} | |
") | |
); | |
return $control; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment