1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- namespace yii\validators;
- use Yii;
- use yii\base\InvalidConfigException;
- use yii\helpers\Html;
- use yii\helpers\Json;
- use yii\web\JsExpression;
- class RegularExpressionValidator extends Validator
- {
-
- public $pattern;
-
- public $not = false;
-
- public function init()
- {
- parent::init();
- if ($this->pattern === null) {
- throw new InvalidConfigException('The "pattern" property must be set.');
- }
- if ($this->message === null) {
- $this->message = Yii::t('yii', '{attribute} is invalid.');
- }
- }
-
- protected function validateValue($value)
- {
- $valid = !is_array($value) &&
- (!$this->not && preg_match($this->pattern, $value)
- || $this->not && !preg_match($this->pattern, $value));
- return $valid ? null : [$this->message, []];
- }
-
- public function clientValidateAttribute($model, $attribute, $view)
- {
- ValidationAsset::register($view);
- $options = $this->getClientOptions($model, $attribute);
- return 'yii.validation.regularExpression(value, messages, ' . Json::htmlEncode($options) . ');';
- }
-
- public function getClientOptions($model, $attribute)
- {
- $pattern = Html::escapeJsRegularExpression($this->pattern);
- $options = [
- 'pattern' => new JsExpression($pattern),
- 'not' => $this->not,
- 'message' => $this->formatMessage($this->message, [
- 'attribute' => $model->getAttributeLabel($attribute),
- ]),
- ];
- if ($this->skipOnEmpty) {
- $options['skipOnEmpty'] = 1;
- }
- return $options;
- }
- }
|