| | <?php |
| |
|
| | namespace Kanboard\Validator; |
| |
|
| | use SimpleValidator\Validator; |
| | use SimpleValidator\Validators; |
| | use Kanboard\Model\UserModel; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | class UserValidator extends BaseValidator |
| | { |
| | |
| | |
| | |
| | |
| | |
| | |
| | protected function commonValidationRules() |
| | { |
| | return array( |
| | new Validators\MaxLength('role', t('The maximum length is %d characters', 25), 25), |
| | new Validators\MaxLength('username', t('The maximum length is %d characters', 191), 191), |
| | new Validators\Unique('username', t('This username is already taken'), $this->db->getConnection(), UserModel::TABLE, 'id'), |
| | new Validators\Email('email', t('Email address invalid')), |
| | new Validators\Integer('is_ldap_user', t('This value must be an integer')), |
| | new Validators\MaxLength('theme', t('The maximum length is %d characters', 50), 50), |
| | ); |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | public function validateCreation(array $values) |
| | { |
| | $rules = array( |
| | new Validators\Required('username', t('The username is required')), |
| | ); |
| |
|
| | if (isset($values['is_ldap_user']) && $values['is_ldap_user'] == 1) { |
| | $v = new Validator($values, array_merge($rules, $this->commonValidationRules())); |
| | } else { |
| | $v = new Validator($values, array_merge($rules, $this->commonValidationRules(), $this->commonPasswordValidationRules())); |
| | } |
| |
|
| | return array( |
| | $v->execute(), |
| | $v->getErrors() |
| | ); |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | public function validateModification(array $values) |
| | { |
| | $rules = array( |
| | new Validators\Required('id', t('The user id is required')), |
| | new Validators\Required('username', t('The username is required')), |
| | ); |
| |
|
| | $v = new Validator($values, array_merge($rules, $this->commonValidationRules())); |
| |
|
| | return array( |
| | $v->execute(), |
| | $v->getErrors() |
| | ); |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | public function validateApiModification(array $values) |
| | { |
| | $rules = array( |
| | new Validators\Required('id', t('The user id is required')), |
| | ); |
| |
|
| | $v = new Validator($values, array_merge($rules, $this->commonValidationRules())); |
| |
|
| | return array( |
| | $v->execute(), |
| | $v->getErrors() |
| | ); |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | public function validatePasswordModification(array $values) |
| | { |
| | $rules = array( |
| | new Validators\Required('id', t('The user id is required')), |
| | new Validators\Required('current_password', t('The current password is required')), |
| | ); |
| |
|
| | $v = new Validator($values, array_merge($rules, $this->commonPasswordValidationRules())); |
| |
|
| | if ($v->execute()) { |
| | if (! $this->userSession->isAdmin() && $values['id'] != $this->userSession->getId()) { |
| | return array(false, array('current_password' => array('Invalid User ID'))); |
| | } |
| |
|
| | if ($this->authenticationManager->passwordAuthentication($this->userSession->getUsername(), $values['current_password'], false)) { |
| | return array(true, array()); |
| | } else { |
| | return array(false, array('current_password' => array(t('Wrong password')))); |
| | } |
| | } |
| |
|
| | return array(false, $v->getErrors()); |
| | } |
| | } |
| |
|