|
|
<?php |
|
|
|
|
|
namespace Kanboard\Validator; |
|
|
|
|
|
use SimpleValidator\Validator; |
|
|
use SimpleValidator\Validators; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CommentValidator extends BaseValidator |
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function validateEmailCreation(array $values) |
|
|
{ |
|
|
$rules = array( |
|
|
new Validators\Required('task_id', t('This value is required')), |
|
|
new Validators\Required('user_id', t('This value is required')), |
|
|
new Validators\Required('subject', t('This field is required')), |
|
|
new Validators\Required('emails', t('This field is required')), |
|
|
); |
|
|
|
|
|
$v = new Validator($values, array_merge($rules, $this->commonValidationRules())); |
|
|
|
|
|
return array( |
|
|
$v->execute(), |
|
|
$v->getErrors() |
|
|
); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function validateCreation(array $values) |
|
|
{ |
|
|
$rules = array( |
|
|
new Validators\Required('task_id', t('This value is required')), |
|
|
); |
|
|
|
|
|
$v = new Validator($values, array_merge($rules, $this->commonValidationRules())); |
|
|
|
|
|
return array( |
|
|
$v->execute(), |
|
|
$v->getErrors() |
|
|
); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function validateModification(array $values) |
|
|
{ |
|
|
$rules = array( |
|
|
new Validators\Required('id', t('This value is required')), |
|
|
); |
|
|
|
|
|
$v = new Validator($values, array_merge($rules, $this->commonValidationRules())); |
|
|
|
|
|
return array( |
|
|
$v->execute(), |
|
|
$v->getErrors() |
|
|
); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private function commonValidationRules() |
|
|
{ |
|
|
return array( |
|
|
new Validators\Integer('id', t('This value must be an integer')), |
|
|
new Validators\Integer('task_id', t('This value must be an integer')), |
|
|
new Validators\Integer('user_id', t('This value must be an integer')), |
|
|
new Validators\MaxLength('reference', t('The maximum length is %d characters', 191), 191), |
|
|
new Validators\Required('comment', t('Comment is required')) |
|
|
); |
|
|
} |
|
|
} |
|
|
|