You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

233 lines
7.7 KiB

<?php
namespace app\models;
use app\models\common\admin\log\CommonActionLog;
use Yii;
use yii\web\IdentityInterface;
/**
* This is the model class for table "{{%user}}".
*
* @property integer $id
* @property integer $type
* @property string $username
* @property string $password
* @property string $auth_key
* @property string $access_token
* @property integer $addtime
* @property integer $is_delete
* @property string $wechat_open_id
* @property string $wechat_union_id
* @property string $nickname
* @property string $avatar_url
* @property integer $store_id
* @property integer $is_distributor
* @property integer $parent_id
* @property integer $time
* @property string $total_price
* @property string $price
* @property integer $is_clerk
* @property integer $we7_uid
* @property integer $shop_id
* @property integer $level
* @property string $integral
* @property string $total_integral
* @property string $money
* @property string $contact_way
* @property string $comments
* @property string $binding
* @property string $wechat_platform_open_id
* @property integer $platform
* @property integer $blacklist
* @property integer $parent_user_id
*/
class User extends \yii\db\ActiveRecord implements IdentityInterface
{
public $order_money;
/**
* 账号类型:商城总管理员
*/
const USER_TYPE_ADMIN = 0;
/**
* 账号类型:微信账号
*/
const USER_TYPE_MEMBER = 1;
/**
* 账号类型:后台角色用户
*/
const USER_TYPE_ROLE = 2;
/**
* @inheritdoc
*/
public static function tableName()
{
return '{{%user}}';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['type', 'addtime', 'is_delete', 'store_id', 'is_distributor', 'parent_id', 'time', 'is_clerk', 'we7_uid', 'shop_id', 'level', 'integral', 'total_integral'], 'integer'],
[['username', 'password', 'auth_key', 'access_token', 'avatar_url'], 'required'],
[['avatar_url', 'binding'], 'string'],
[['total_price', 'price', 'money', 'order_money'], 'number'],
[['username', 'password', 'auth_key', 'access_token', 'wechat_open_id', 'wechat_union_id', 'nickname', 'contact_way', 'comments'], 'string', 'max' => 255],
[['platform'], 'integer',],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'type' => '用户类型:0=管理员,1=普通用户',
'username' => 'Username',
'password' => 'Password',
'auth_key' => 'Auth Key',
'access_token' => 'Access Token',
'addtime' => 'Addtime',
'is_delete' => 'Is Delete',
'wechat_open_id' => '微信openid',
'wechat_union_id' => '微信用户union id',
'nickname' => '昵称',
'avatar_url' => '头像url',
'store_id' => '商城id',
'is_distributor' => '是否是分销商 0--不是 1--是 2--申请中',
'parent_id' => '父级ID',
'time' => '成为分销商的时间',
'total_price' => '累计佣金',
'price' => '可提现佣金',
'is_clerk' => '是否是核销员 0--不是 1--是',
'we7_uid' => '微擎账户id',
'shop_id' => 'Shop ID',
'level' => '会员等级',
'integral' => '用户当前积分',
'total_integral' => '用户总积分',
'money' => '余额',
'contact_way' => '联系方式',
'comments' => '备注',
'binding' => '授权手机号',
'wechat_platform_open_id' => '微信公众号openid',
'platform' => '小程序平台 微信:wx,支付宝:my',
'blacklist' => '黑名单 0.否 | 1.是',
'parent_user_id' => '可能成为上级的ID'
];
}
/**
* Finds an identity by the given ID.
* @param string|int $id the ID to be looked for
* @return IdentityInterface the identity object that matches the given ID.
* Null should be returned if such an identity cannot be found
* or the identity is not in an active state (disabled, deleted, etc.)
*/
public static function findIdentity($id)
{
return static::findOne($id);
}
/**
* Finds an identity by the given token.
* @param mixed $token the token to be looked for
* @param mixed $type the type of the token. The value of this parameter depends on the implementation.
* For example, [[\yii\filters\auth\HttpBearerAuth]] will set this parameter to be `yii\filters\auth\HttpBearerAuth`.
* @return IdentityInterface the identity object that matches the given token.
* Null should be returned if such an identity cannot be found
* or the identity is not in an active state (disabled, deleted, etc.)
*/
public static function findIdentityByAccessToken($token, $type = null)
{
return static::findOne(['access_token' => $token]);
}
/**
* Returns an ID that can uniquely identify a user identity.
* @return string|int an ID that uniquely identifies a user identity.
*/
public function getId()
{
return $this->id;
}
/**
* Returns a key that can be used to check the validity of a given identity ID.
*
* The key should be unique for each individual user, and should be persistent
* so that it can be used to check the validity of the user identity.
*
* The space of such keys should be big enough to defeat potential identity attacks.
*
* This is required if [[User::enableAutoLogin]] is enabled.
* @return string a key that is used to check the validity of a given identity ID.
* @see validateAuthKey()
*/
public function getAuthKey()
{
return $this->auth_key;
}
/**
* Validates the given auth key.
*
* This is required if [[User::enableAutoLogin]] is enabled.
* @param string $authKey the given auth key
* @return bool whether the given auth key is valid.
* @see getAuthKey()
*/
public function validateAuthKey($authKey)
{
return $this->getAuthKey() === $authKey;
}
public function getUserCoupon()
{
return $this->hasMany(UserCoupon::className(), ['user_id' => 'id'])->orderBy('addtime DESC');
}
public function getGoodsDetail()
{
return $this->hasMany(IntegralOrderDetail::className(), ['user_id' => 'id'])->orderBy('addtime DESC');
}
public function getRoleUser()
{
return $this->hasMany(AuthRoleUser::className(), ['user_id' => 'id'])->with('role');
}
public function getCreator()
{
if (!Yii::$app->admin->isGuest) {
return $this->hasOne(Admin::className(), ['id' => 'parent_id']);
}
return $this->hasOne(User::className(), ['id' => 'parent_id']);
}
public function afterSave($insert, $changedAttributes)
{
$data = $insert ? json_encode($this->attributes) : json_encode($changedAttributes);
CommonActionLog::storeActionLog('', $insert, $this->is_delete, $data, $this->id);
UserLog::setLogList($insert, $this->attributes, $changedAttributes);
}
public function getParent()
{
return $this->hasOne(User::className(), ['id' => 'parent_id']);
}
public function getShop()
{
return $this->hasOne(Shop::className(), ['id' => 'shop_id']);
}
}