1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace ByTIC\Hello\Modules\AbstractModule\Forms\Users; |
4
|
|
|
|
5
|
|
|
/** |
6
|
|
|
* Trait ChangePasswordFormTrait |
7
|
|
|
* @package ByTIC\Hello\Modules\AbstractModule\Forms\Users |
8
|
|
|
* |
9
|
|
|
* @method getModel |
10
|
|
|
*/ |
11
|
|
|
trait ChangePasswordFormTrait |
12
|
|
|
{ |
13
|
|
|
public function init() |
14
|
|
|
{ |
15
|
|
|
parent::init(); |
16
|
|
|
$this->removeClass('form-horizontal'); |
|
|
|
|
17
|
|
|
$this->addClass('user-recover'); |
|
|
|
|
18
|
|
|
|
19
|
|
|
$this->initPasswordOld(); |
20
|
|
|
$this->initPasswordNew(); |
21
|
|
|
$this->initPasswordRepeat(); |
22
|
|
|
|
23
|
|
|
$this->addButton('save', translator()->trans('submit')); |
|
|
|
|
24
|
|
|
} |
25
|
|
|
|
26
|
|
|
protected function initPasswordOld() |
27
|
|
|
{ |
28
|
|
|
$this->addPassword('password_old', translator()->trans('password_old'), true); |
|
|
|
|
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
protected function initPasswordNew() |
32
|
|
|
{ |
33
|
|
|
$this->addPassword('password_new', translator()->trans('password_new'), true); |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
protected function initPasswordRepeat() |
37
|
|
|
{ |
38
|
|
|
$this->addPassword('password_repeat', translator()->trans('password_repeat'), true); |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
public function processValidation() |
42
|
|
|
{ |
43
|
|
|
parent::processValidation(); |
44
|
|
|
|
45
|
|
|
$this->processValidationPasswordOld(); |
46
|
|
|
$this->processValidationPasswordNew(); |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
public function processValidationPasswordOld() |
50
|
|
|
{ |
51
|
|
|
$passwordOld = $this->getElement('password_old'); |
|
|
|
|
52
|
|
|
if ($passwordOld->isError()) { |
53
|
|
|
return; |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
$hashCheck = $this->getModel()->checkSaltedPassword($passwordOld->getValue()); |
57
|
|
|
if ($hashCheck) { |
58
|
|
|
$passwordOld->addError($this->getModelMessage('password_old.bad')); |
|
|
|
|
59
|
|
|
} |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
public function processValidationPasswordNew() |
63
|
|
|
{ |
64
|
|
|
$password = $this->getElement('password_new'); |
65
|
|
|
$password_repeat = $this->getElement('password_repeat'); |
66
|
|
|
if (!$password->isError() && !$password_repeat->isError()) { |
67
|
|
|
if ($password->getValue() == $password_repeat->getValue()) { |
68
|
|
|
$this->changePassword = true; |
|
|
|
|
69
|
|
|
} else { |
70
|
|
|
$password->addError($this->getModelMessage('password.match')); |
71
|
|
|
} |
72
|
|
|
} |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
public function process() |
76
|
|
|
{ |
77
|
|
|
$this->getModel()->new_password = $this->getElement('password_new')->getValue(); |
78
|
|
|
$this->getModel()->hashPassword(); |
79
|
|
|
$this->getModel()->update(); |
80
|
|
|
|
81
|
|
|
return true; |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
protected function getDataFromModel() |
85
|
|
|
{ |
86
|
|
|
parent::getDataFromModel(); |
87
|
|
|
$this->_addModelFormMessage('no-password_old', 'password_old.empty') |
|
|
|
|
88
|
|
|
->_addModelFormMessage('no-password_new', 'password_new.empty') |
89
|
|
|
->_addModelFormMessage('no-password_repeat', 'password_repeat.empty'); |
90
|
|
|
} |
91
|
|
|
} |
92
|
|
|
|