summaryrefslogtreecommitdiff
path: root/app/php/controls/PasswordChange.php
blob: 1c05c642492b9f3145ede257d3eaa265637b639e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php

Prado::using('Application.components.TemplateControl');

Prado::using('Application.user.DbUser');

class PasswordChange extends TemplateControl {

    public function getUserToChange() {
        return $this->getControlState('user');
    }

    public function setUserToChange(DbUser $user) {
        if ($user->IsGuest && !$this->Page->IsCallBack) {
            throw new TInvalidDataValueException(
                'Password change impossible for guest user'
            );
        }
        $this->setControlState('user', $user);
    }

    public function checkPassword($sender, $param) {
        $param->IsValid = DbUser::verifyPassword(
            $this->Password->Text, $this->UserToChange->getPassword()
        );
    }

    public function changePassword($sender, $param) {
        $this->SuccessMessage->Visible = FALSE;
        if ($this->Page->IsValid) {
            $this->UserToChange->changePassword(
                $this->NewPassword->Text
            );
            $this->SuccessMessage->Visible = TRUE;
        }
    }

}

?>