Last active
August 7, 2018 20:00
-
-
Save evercode1/98869eb5001eb8daa3b1 to your computer and use it in GitHub Desktop.
User Model Modification chap 4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace common\models; | |
use Yii; | |
use yii\base\NotSupportedException; | |
use yii\behaviors\TimestampBehavior; | |
use yii\db\ActiveRecord; | |
use yii\db\Expression; | |
use yii\web\IdentityInterface; | |
use yii\helpers\Security; | |
/** | |
* User model | |
* | |
* @property integer $id | |
* @property string $username | |
* @property string $password_hash | |
* @property string $password_reset_token | |
* @property string $email | |
* @property string $auth_key | |
* @property integer $role_id | |
* @property integer $status_id | |
* @proprty integer $user_type_id | |
* @property integer $created_at | |
* @property integer $updated_at | |
* @property string $password write-only password | |
*/ | |
class User extends ActiveRecord implements IdentityInterface | |
{ | |
const STATUS_ACTIVE = 10; | |
public static function tableName() | |
{ | |
return 'user'; | |
} | |
/** | |
* behaviors | |
*/ | |
public function behaviors() | |
{ | |
return [ | |
'timestamp' => [ | |
'class' => 'yii\behaviors\TimestampBehavior', | |
'attributes' => [ | |
ActiveRecord::EVENT_BEFORE_INSERT => ['created_at', 'updated_at'], | |
ActiveRecord::EVENT_BEFORE_UPDATE => ['updated_at'], | |
], | |
'value' => new Expression('NOW()'), | |
], | |
]; | |
} | |
/** | |
* validation rules | |
*/ | |
public function rules() | |
{ | |
return [ | |
['status_id', 'default', 'value' => self::STATUS_ACTIVE], | |
['role_id', 'default', 'value' => 10], | |
['user_type_id', 'default', 'value' => 10], | |
['username', 'filter', 'filter' => 'trim'], | |
['username', 'required'], | |
['username', 'unique'], | |
['username', 'string', 'min' => 2, 'max' => 255], | |
['email', 'filter', 'filter' => 'trim'], | |
['email', 'required'], | |
['email', 'email'], | |
['email', 'unique'], | |
]; | |
} | |
/* Your model attribute labels */ | |
public function attributeLabels() | |
{ | |
return [ | |
/* Your other attribute labels */ | |
]; | |
} | |
/** | |
* @findIdentity | |
*/ | |
public static function findIdentity($id) | |
{ | |
return static::findOne(['id' => $id, 'status_id' => self::STATUS_ACTIVE]); | |
} | |
/** | |
* @inheritdoc | |
*/ | |
public static function findIdentityByAccessToken($token, $type = null) | |
{ | |
throw new NotSupportedException('"findIdentityByAccessToken" is not implemented.'); | |
} | |
/** | |
* Finds user by username | |
* broken into 2 lines to avoid wordwrapping * @param string $username | |
* @return static|null | |
*/ | |
public static function findByUsername($username) | |
{ | |
return static::findOne(['username' => $username, 'status_id' => self::STATUS_ACTIVE]); | |
} | |
/** | |
* Finds user by password reset token | |
* | |
* @param string $token password reset token | |
* @return static|null | |
*/ | |
public static function findByPasswordResetToken($token) | |
{ | |
if (!static::isPasswordResetTokenValid($token)) { | |
return null; | |
} | |
return static::findOne([ | |
'password_reset_token' => $token, | |
'status_id' => self::STATUS_ACTIVE, | |
]); | |
} | |
/** | |
* Finds out if password reset token is valid | |
* | |
* @param string $token password reset token | |
* @return boolean | |
*/ | |
public static function isPasswordResetTokenValid($token) | |
{ | |
if (empty($token)) { | |
return false; | |
} | |
$expire = Yii::$app->params['user.passwordResetTokenExpire']; | |
$parts = explode('_', $token); | |
$timestamp = (int) end($parts); | |
return $timestamp + $expire >= time(); | |
} | |
/** | |
* @getId | |
*/ | |
public function getId() | |
{ | |
return $this->getPrimaryKey(); | |
} | |
/** | |
* @getAuthKey | |
*/ | |
public function getAuthKey() | |
{ | |
return $this->auth_key; | |
} | |
/** | |
* @validateAuthKey | |
*/ | |
public function validateAuthKey($authKey) | |
{ | |
return $this->getAuthKey() === $authKey; | |
} | |
/** | |
* Validates password | |
* | |
* @param string $password password to validate | |
* @return boolean if password provided is valid for current user | |
*/ | |
public function validatePassword($password) | |
{ | |
return Yii::$app->security->validatePassword($password, $this->password_hash); | |
} | |
/** | |
* Generates password hash from password and sets it to the model | |
* | |
* @param string $password | |
*/ | |
public function setPassword($password) | |
{ | |
$this->password_hash = Yii::$app->security->generatePasswordHash($password); | |
} | |
/** | |
* Generates "remember me" authentication key | |
*/ | |
public function generateAuthKey() | |
{ | |
$this->auth_key = Yii::$app->security->generateRandomString(); | |
} | |
/** | |
* Generates new password reset token | |
* broken into 2 lines to avoid wordwrapping | |
*/ | |
public function generatePasswordResetToken() | |
{ | |
$this->password_reset_token = Yii::$app->security->generateRandomString() . '_' . time(); | |
} | |
/** | |
* Removes password reset token | |
*/ | |
public function removePasswordResetToken() | |
{ | |
$this->password_reset_token = null; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment