Ejemplo n.º 1
0
 /**
  * Logs in a user using the provided username and password.
  *
  * @return boolean whether the user is logged in successfully
  */
 public function login()
 {
     if ($this->validate()) {
         return Yii::$app->user->login($this->getUser(), $this->rememberMe ? 3600 * 24 * 30 : 0);
     } else {
         //$user = User::findOne(['username' => $this->username]);
         if (($user = User::findOne(['username' => $this->username])) !== null) {
             switch ($user->status) {
                 case User::STATUS_DELETED:
                     $this->addError('username', 'Your user is deactive.');
                     break;
                 case User::STATUS_WAITING:
                     $this->addError('username', 'Your user is not confirm.');
                     break;
                 case User::STATUS_BANNED:
                     $this->addError('username', 'Your user is banned.');
                     break;
                 default:
                     # code...
                     break;
             }
         }
         return false;
     }
 }
Ejemplo n.º 2
0
 public function __construct($config = [])
 {
     if (isset($config['moduleId'])) {
         $this->userModule = Yii::$app->getModule($config['moduleId']);
     }
     $this->user = UserModel::findOne(Yii::$app->user->id);
     $view = Yii::$app->getView();
     \mirage\user\assets\UserAsset::register($view);
 }
 /**
  * Sends an email with a link, for resetting the password.
  *
  * @return boolean whether the email was send
  */
 public function sendEmail()
 {
     /* @var $user User */
     $user = User::findOne(['status' => User::STATUS_ACTIVE, 'email' => $this->email]);
     if (!$user) {
         return false;
     }
     if (!User::isPasswordResetTokenValid($user->password_reset_token)) {
         $user->generatePasswordResetToken();
     }
     if (!$user->save()) {
         return false;
     }
     return Yii::$app->mailer->compose(['html' => 'passwordResetToken-html', 'text' => 'passwordResetToken-text'], ['user' => $user])->setFrom([\Yii::$app->params['supportEmail'] => \Yii::$app->name . ' robot'])->setTo($this->email)->setSubject('Password reset for ' . \Yii::$app->name)->send();
 }
Ejemplo n.º 4
0
 /**
  * Finds the User model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return User the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = User::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }