resetPassword() public method

Resets password.
public resetPassword ( ) : boolean
return boolean if password was reset.
Esempio n. 1
0
 public function actionResetPassword($token)
 {
     try {
         $model = new ResetPasswordForm($token);
     } catch (InvalidParamException $e) {
         throw new BadRequestHttpException($e->getMessage());
     }
     if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
         Yii::$app->getSession()->setFlash('success', 'New password was saved.');
         return $this->goHome();
     }
     return $this->render('resetPassword', ['model' => $model]);
 }
Esempio n. 2
0
 public function actionResetPassword($token)
 {
     try {
         $model = new ResetPasswordForm($token);
     } catch (InvalidParamException $e) {
         throw new BadRequestHttpException($e->getMessage());
     }
     if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
         Yii::$app->getSession()->setFlash('success', 'Your password has been reset successfully.');
         return $this->redirect(array('/auth/login/'));
     }
     return $this->render('resetPassword', ['model' => $model]);
 }
Esempio n. 3
0
 public function testResetCorrectToken()
 {
     $form = new ResetPasswordForm($this->user[0]['password_reset_token']);
     expect('password should be resetted', $form->resetPassword())->true();
 }
Esempio n. 4
0
 public function actionResetPassword($token)
 {
     try {
         $model = new ResetPasswordForm($token);
     } catch (InvalidParamException $e) {
         Yii::$app->getSession()->setFlash('danger', ['type' => 'danger', 'duration' => 5000, 'icon' => 'glyphicon glyphicon-exclamation-sign', 'message' => 'Parámetro inválido', 'title' => 'Reestablecer contraseña', 'positonY' => 'top', 'positonX' => 'center']);
         return $this->goHome();
         //throw new BadRequestHttpException($e->getMessage()); al mostrar el error lo hace en el layout main en vez de landing
     }
     if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
         Yii::$app->getSession()->setFlash('success', ['type' => 'success', 'duration' => 5000, 'icon' => 'glyphicon glyphicon-user', 'message' => 'La contraseña se ha guardado con éxito.', 'title' => 'Reestablecer contraseña', 'positonY' => 'top', 'positonX' => 'center']);
         return $this->goHome();
     }
     $user = User::findByPasswordResetToken($token);
     if (!$user) {
         throw new InvalidParamException('Wrong password reset token.');
     }
     return $this->renderAjax('resetPassword', ['model' => $model, 'user' => $user]);
 }
 /**
  * Resets password.
  *
  * @param string $token
  * @return mixed
  */
 public function actionResetPassword($token)
 {
     $model = new ResetPasswordForm(['token' => $token]);
     if (!$model->validate(['token'])) {
         Yii::$app->session->addFlash('error', Yii::t('authorization', 'Wrong password reset token provided. {0}', [Html::a(Yii::t('authorization', 'Resend?'), ['site/request-password-reset'])]));
         return $this->goHome();
     }
     if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
         Yii::$app->session->addFlash('success', Yii::t('frontend', 'New password was saved. You can login now.'));
         return $this->redirect(['login']);
     }
     return $this->render('resetPassword', ['model' => $model]);
 }
 public function testResetCorrectToken()
 {
     $user = $this->tester->grabFixture('user', 0);
     $form = new ResetPasswordForm($user['password_reset_token']);
     expect_that($form->resetPassword());
 }
 public function actionResetPassword()
 {
     $model = new ResetPasswordForm();
     if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
         Yii::$app->getSession()->setFlash('success', '密码修改成功');
         return $this->goHome();
     }
     return $this->render('resetPassword', ['model' => $model]);
 }
Esempio n. 8
0
 /**
  * Resets password.
  *
  * @param string $token
  * @return mixed
  * @throws BadRequestHttpException
  */
 public function actionResetPassword($token)
 {
     try {
         $model = new ResetPasswordForm($token);
     } catch (InvalidParamException $e) {
         throw new BadRequestHttpException($e->getMessage());
     }
     $this->layout = 'empty_layout';
     if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
         Yii::$app->session->setFlash('success', 'Новый пароль сохранен.');
         return $this->goHome();
     }
     return $this->render('resetPassword', ['model' => $model]);
 }
Esempio n. 9
0
 public function actionResetPassword($token)
 {
     $this->title = '重置密码' . ' - ' . Yii::$app->name;
     $this->description = '';
     try {
         $model = new ResetPasswordForm($token);
     } catch (InvalidParamException $e) {
         throw new NotFoundHttpException($e->getMessage());
     }
     if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
         Yii::$app->getSession()->setFlash('success', '重置密码成功。');
         return $this->goHome();
     }
     return $this->render('resetPassword', ['model' => $model]);
 }
Esempio n. 10
0
 public function actionResetPassword($key)
 {
     try {
         $model = new ResetPasswordForm($key);
     } catch (InvalidParamException $e) {
         throw new BadRequestHttpException($e->getMessage());
     }
     if ($model->load(Yii::$app->request->post())) {
         if ($model->validate() && $model->resetPassword()) {
             Yii::$app->getSession()->setFlash('warning', 'Пароль изменен.');
             return $this->redirect(['/main/login']);
         }
     }
     return $this->render('resetPassword', ['model' => $model]);
 }
Esempio n. 11
0
 public function actionResetPassword($token)
 {
     try {
         $model = new ResetPasswordForm($token);
     } catch (InvalidParamException $e) {
         throw new BadRequestHttpException($e->getMessage());
     }
     if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
         Yii::$app->getSession()->setFlash('success', 'Пароль успешно изменён.');
         return $this->redirect('/site/login');
     }
     return $this->render('resetPassword', ['model' => $model]);
 }
Esempio n. 12
0
 /**
  * Resets password.
  *
  * @param string $token
  * @return mixed
  * @throws BadRequestHttpException
  */
 public function actionResetPassword($token)
 {
     try {
         $model = new ResetPasswordForm($token);
     } catch (InvalidParamException $e) {
         throw new BadRequestHttpException($e->getMessage());
     }
     if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
         Alert::add(Yii::t('msg', 'New password was saved. Now you can log in.'));
         return $this->goHome();
     }
     return $this->render('resetPassword', ['model' => $model]);
 }