"Too many words, maximum '%max%' are allowed but '%count%' were counted", self::TOO_LESS => "Too few words, minimum '%min%' are expected but '%count%' were counted", self::NOT_FOUND => 'File is not readable or does not exist', ]; /** @var array Error message template variables */ protected $messageVariables = [ 'min' => ['options' => 'min'], 'max' => ['options' => 'max'], 'count' => 'count', ]; /** * Word count * * @var int */ protected $count; /** * Options for this validator * * @var array */ protected $options = [ 'min' => null, // Minimum word count, if null there is no minimum word count 'max' => null, // Maximum word count, if null there is no maximum word count ]; /** * Sets validator options * * Min limits the word count, when used with max=null it is the maximum word count * It also accepts an array with the keys 'min' and 'max' * * If $options is an integer, it will be used as maximum word count * As Array is accepts the following keys: * 'min': Minimum word count * 'max': Maximum word count * * @param int|array|Traversable $options Options for the adapter */ public function __construct($options = null) { if (1 < func_num_args()) { $args = func_get_args(); $options = [ 'min' => array_shift($args), 'max' => array_shift($args), ]; } if (is_string($options) || is_numeric($options)) { $options = ['max' => $options]; } parent::__construct($options); } /** * Returns the minimum word count * * @return int */ public function getMin() { return $this->options['min']; } /** * Sets the minimum word count * * @param int|array $min The minimum word count * @return $this Provides a fluent interface * @throws Exception\InvalidArgumentException When min is greater than max. */ public function setMin($min) { if (is_array($min) && isset($min['min'])) { $min = $min['min']; } if (! is_numeric($min)) { throw new Exception\InvalidArgumentException('Invalid options to validator provided'); } $min = (int) $min; if (($this->getMax() !== null) && ($min > $this->getMax())) { throw new Exception\InvalidArgumentException( "The minimum must be less than or equal to the maximum word count, but $min > {$this->getMax()}" ); } $this->options['min'] = $min; return $this; } /** * Returns the maximum word count * * @return int */ public function getMax() { return $this->options['max']; } /** * Sets the maximum file count * * @param int|array $max The maximum word count * @return $this Provides a fluent interface * @throws Exception\InvalidArgumentException When max is smaller than min. */ public function setMax($max) { if (is_array($max) && isset($max['max'])) { $max = $max['max']; } if (! is_numeric($max)) { throw new Exception\InvalidArgumentException('Invalid options to validator provided'); } $max = (int) $max; if (($this->getMin() !== null) && ($max < $this->getMin())) { throw new Exception\InvalidArgumentException( "The maximum must be greater than or equal to the minimum word count, but $max < {$this->getMin()}" ); } $this->options['max'] = $max; return $this; } /** * Returns true if and only if the counted words are at least min and * not bigger than max (when max is not null). * * @param string|array $value Filename to check for word count * @param array $file File data from \Laminas\File\Transfer\Transfer (optional) * @return bool */ public function isValid($value, $file = null) { $fileInfo = $this->getFileInfo($value, $file); $this->setValue($fileInfo['filename']); // Is file readable ? if (empty($fileInfo['file']) || false === is_readable($fileInfo['file'])) { $this->error(self::NOT_FOUND); return false; } $content = file_get_contents($fileInfo['file']); $this->count = str_word_count($content); if (($this->getMax() !== null) && ($this->count > $this->getMax())) { $this->error(self::TOO_MUCH); return false; } if (($this->getMin() !== null) && ($this->count < $this->getMin())) { $this->error(self::TOO_LESS); return false; } return true; } }