123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <?php
- /**
- * @author Ironpilot
- * @copyright Copywrite (c) 2011, STAPLE CODE
- *
- * This file is part of the STAPLE Framework.
- *
- * The STAPLE Framework is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by the
- * Free Software Foundation, either version 3 of the License, or (at your option)
- * any later version.
- *
- * The STAPLE Framework is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
- * more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with the STAPLE Framework. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- class Staple_Form_Validate_Regex extends Staple_Form_Validator
- {
- /**
- * Constant for validating usernames. Usernames must be 6-50 characters and include only letters, numbers and underscores.
- * @var string
- */
- const USERNAME = '/^[a-zA-Z0-9_]{6,50}$/';
- /**
- * Constant for complex passwords. Requires minimum length a 8 characters, one lowercase letter, one uppercase letter, one number, a special character and no whitespace.
- * @var string
- */
- const PASSWORD = '/(?=^.{8,}$)(?=.*[a-z])(?=.*[A-Z])(?=.*[\W_])(?=^.*[^\s].*$).*$/';
-
- /**
- * A string regular expression
- * @var string
- */
- protected $regex;
-
- /**
- * Array of Matches
- * @var array
- */
- protected $matches;
- /**
- * Constructor sets the regex value to validate against and supports an optional user message.
- * @param string $regex
- * @param string $usermsg
- */
- function __construct($regex,$usermsg = NULL)
- {
- $this->setRegex($regex);
- parent::__construct($usermsg);
- }
-
- /**
- * Set the regex to validate against.
- * @param string $regex
- */
- public function setRegex($regex)
- {
- $this->regex = $regex;
- return $this;
- }
-
- /**
- * Returns the regex value
- * @return the $regex
- */
- public function getRegex()
- {
- return $this->regex;
- }
-
- /**
- * @return array
- */
- public function getMatches()
- {
- return $this->matches;
- }
- /**
- *
- * @param mixed $data
-
- * @return bool
-
- * @see Staple_Form_Validator::check()
- */
- public function check($data)
- {
- if(preg_match($this->regex, $data, $this->matches) >= 1)
- {
- return true;
- }
- else
- {
- $this->addError();
- return false;
- }
- }
-
- /**
- * (non-PHPdoc)
- * @see Staple_Form_Validator::clientJQuery()
- */
- public function clientJQuery($fieldType, Staple_Form_Element $field)
- {
- switch ($fieldType)
- {
- case 'Staple_Form_SelectElement':
- $fieldid = "#{$field->getId()}";
- $valstring = "#{$field->getId()} option:selected";
- break;
- case 'Staple_Form_RadioGroup':
- $fieldid = "input:radio[name={$field->getName()}]";
- $valstring = "input:radio[name={$field->getName()}]:checked";
- break;
- case 'Staple_Form_CheckboxElement':
- return '';
- break;
- default:
- $fieldid = "#{$field->getId()}";
- $valstring = $fieldid;
- }
-
- $script = "\t//Regex Validator for ".addslashes($field->getLabel())."\n";
- $script .= "\tif(!(".$this->getRegex().".test($('$valstring').val())))\n\t{\n";
- $script .= "\t\terrors.push('".addslashes($field->getLabel()).": \\n{$this->clientJSError()}\\n');\n";
- $script .= "\t\t$('$fieldid').addClass('form_error');\n";
- $script .= "\t}\n";
- $script .= "\telse {\n";
- $script .= "\t\t$('$fieldid').removeClass('form_error');\n";
- $script .= "\t}\n";
-
- return $script;
- }
- }
- ?>
|