mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
66 lines
1.5 KiB
PHP
66 lines
1.5 KiB
PHP
<?php
|
|
namespace api\models;
|
|
|
|
use common\models\Account;
|
|
use yii\base\InvalidParamException;
|
|
use yii\base\Model;
|
|
use Yii;
|
|
|
|
/**
|
|
* Password reset form
|
|
*/
|
|
class ResetPasswordForm extends Model
|
|
{
|
|
public $password;
|
|
|
|
/**
|
|
* @var \common\models\Account
|
|
*/
|
|
private $_user;
|
|
|
|
|
|
/**
|
|
* Creates a form model given a token.
|
|
*
|
|
* @param string $token
|
|
* @param array $config name-value pairs that will be used to initialize the object properties
|
|
* @throws \yii\base\InvalidParamException if token is empty or not valid
|
|
*/
|
|
public function __construct($token, $config = [])
|
|
{
|
|
if (empty($token) || !is_string($token)) {
|
|
throw new InvalidParamException('Password reset token cannot be blank.');
|
|
}
|
|
$this->_user = Account::findByPasswordResetToken($token);
|
|
if (!$this->_user) {
|
|
throw new InvalidParamException('Wrong password reset token.');
|
|
}
|
|
parent::__construct($config);
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
['password', 'required'],
|
|
['password', 'string', 'min' => 6],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Resets password.
|
|
*
|
|
* @return boolean if password was reset.
|
|
*/
|
|
public function resetPassword()
|
|
{
|
|
$user = $this->_user;
|
|
$user->setPassword($this->password);
|
|
$user->removePasswordResetToken();
|
|
|
|
return $user->save(false);
|
|
}
|
|
}
|