getChangedData(); //如果有修改密码 if (isset($changed['real_status'])) { if ($changed['real_status']) { $task_rs = \app\common\model\TaskLog::tofinish($row->id,6); } else { } } }); self::beforeUpdate(function ($row) { $changed = $row->getChangedData(); //检验 超推上级UID ,intro_uid if (isset($row['intro_uid'])) { if ($row['intro_uid']) { if($row['invite_uid']){ throw new Exception('超推网上级UID 与 直推上级UID 不能共存'); } $intro_info = Db::name('user')->where('id',$row['intro_uid'])->find(); if(empty($intro_info)){ throw new Exception('不存在的 超推网上级UID用户'); } if($intro_info['group_id'] == 1){ throw new Exception('超推网上级UID用户 不能是普通用户'); } } } //检验二级超推 if($row['group_id'] == 2){ if(!$row['agent_id']){ throw new Exception('二级超推必须填写 上级一级代理UID'); } $agent_info = Db::name('user')->where('group_id',3)->where('id',$row['agent_id'])->find(); if(empty($agent_info)){ throw new Exception('不存在的 上级一级代理UID用户'); } }else{ $row['agent_id'] = ''; } //检验 直推上级UID ,invite_uid if (isset($row['invite_uid'])) { if ($row['invite_uid']) { if($row['intro_uid']){ throw new Exception('超推网上级UID 与 直推上级UID 不能共存'); } $invite_info = Db::name('user')->where('id',$row['invite_uid'])->find(); if(empty($invite_info)){ throw new Exception('不存在的 直推上级UID用户'); } } } //如果有修改密码 /*if (isset($changed['password'])) { if ($changed['password']) { $salt = \fast\Random::alnum(); $row->password = \app\common\library\Auth::instance()->getEncryptPassword($changed['password'], $salt); $row->salt = $salt; } else { unset($row->password); } }*/ //手机去重 /*if (isset($changed['mobile'])) { if($changed['mobile']){ $exists = db('user')->where('mobile', $changed['mobile'])->where('id', '<>', $row->id)->find(); if ($exists) { abort(500,'区号手机号已经被使用'); } }else { unset($row->mobile); } }*/ //手机去重 /*if (isset($changed['simplemobile'])) { if($changed['simplemobile']){ }else { unset($row->simplemobile); } }*/ }); /*self::beforeInsert(function ($row){ if (isset($row['password'])) { if ($row['password']) { $salt = \fast\Random::alnum(); $row->password = \app\common\library\Auth::instance()->getEncryptPassword($row['password'], $salt); $row->salt = $salt; } else { unset($row->password); } } if($row['mobile']){ $exists = db('user')->where('mobile', $row['mobile'])->find(); if ($exists) { abort(500,'手机号已经被使用'); } }else{ abort(500,'手机号不能为空'); } //判断用户名,手机号重复 }); self::afterInsert(function ($row){ $username = 'u' . (10000 + $row['id']); db('user')->where('id',$row['id'])->update(['username'=>$username]); $data = [ 'user_id' => $row['id'], ]; //注册钱包 db('user_wallet')->insertGetId($data); //注册用户活跃 db('user_active')->insertGetId($data); //注册用户权限 db('user_power')->insertGetId($data); });*/ } public function getGenderList() { return ['-1' => __('Gender -1'),'1' => __('Gender 1'), '0' => __('Gender 0')]; } public function getIdcardStatusList() { return ['-1' => __('Idcard_status -1'), '0' => __('Idcard_status 0'), '1' => __('Idcard_status 1'), '2' => __('Idcard_status 2')]; } public function getRealStatusList() { return ['-1' => __('Real_status -1'), '0' => __('Real_status 0'), '1' => __('Real_status 1'), '2' => __('Real_status 2')]; } public function getStatusList() { return ['1' => __('Status 1'), '0' => __('Status 0'), '-1' => __('Status -1')]; } public function getHideIsFinishinfoList() { return ['1' => __('Hide_is_finishinfo 1'), '0' => __('Hide_is_finishinfo 0')]; } public function getIsActiveList() { return ['1' => __('Is_active 1'), '0' => __('Is_active 0')]; } public function getOpenMatchVideoList() { return ['1' => __('Open_match_video 1'), '0' => __('Open_match_video 0')]; } public function getOpenMatchAudioList() { return ['1' => __('Open_match_audio 1'), '0' => __('Open_match_audio 0')]; } public function getJinyantypeList() { return ['1' => __('Jinyantype 1'), '2' => __('Jinyantype 2'), '3' => __('Jinyantype 3')]; } public function getIsShouchongList() { return ['0' => __('Is_shouchong 0'), '1' => __('Is_shouchong 1')]; } public function getYaoqingtimeTextAttr($value, $data) { $value = $value ? $value : (isset($data['yaoqingtime']) ? $data['yaoqingtime'] : ''); return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value; } public function getGenderTextAttr($value, $data) { $value = $value ? $value : (isset($data['gender']) ? $data['gender'] : ''); $list = $this->getGenderList(); return isset($list[$value]) ? $list[$value] : ''; } public function getIdcardStatusTextAttr($value, $data) { $value = $value ? $value : (isset($data['idcard_status']) ? $data['idcard_status'] : ''); $list = $this->getIdcardStatusList(); return isset($list[$value]) ? $list[$value] : ''; } public function getRealStatusTextAttr($value, $data) { $value = $value ? $value : (isset($data['real_status']) ? $data['real_status'] : ''); $list = $this->getRealStatusList(); return isset($list[$value]) ? $list[$value] : ''; } public function getLogintimeTextAttr($value, $data) { $value = $value ? $value : (isset($data['logintime']) ? $data['logintime'] : ''); return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value; } public function getJointimeTextAttr($value, $data) { $value = $value ? $value : (isset($data['jointime']) ? $data['jointime'] : ''); return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value; } public function getStatusTextAttr($value, $data) { $value = $value ? $value : (isset($data['status']) ? $data['status'] : ''); $list = $this->getStatusList(); return isset($list[$value]) ? $list[$value] : ''; } public function getHideIsFinishinfoTextAttr($value, $data) { $value = $value ? $value : (isset($data['hide_is_finishinfo']) ? $data['hide_is_finishinfo'] : ''); $list = $this->getHideIsFinishinfoList(); return isset($list[$value]) ? $list[$value] : ''; } public function getIsActiveTextAttr($value, $data) { $value = $value ? $value : (isset($data['is_active']) ? $data['is_active'] : ''); $list = $this->getIsActiveList(); return isset($list[$value]) ? $list[$value] : ''; } public function getOpenMatchVideoTextAttr($value, $data) { $value = $value ? $value : (isset($data['open_match_video']) ? $data['open_match_video'] : ''); $list = $this->getOpenMatchVideoList(); return isset($list[$value]) ? $list[$value] : ''; } public function getOpenMatchAudioTextAttr($value, $data) { $value = $value ? $value : (isset($data['open_match_audio']) ? $data['open_match_audio'] : ''); $list = $this->getOpenMatchAudioList(); return isset($list[$value]) ? $list[$value] : ''; } public function getJinyantimeTextAttr($value, $data) { $value = $value ? $value : (isset($data['jinyantime']) ? $data['jinyantime'] : ''); return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value; } public function getJinyantypeTextAttr($value, $data) { $value = $value ? $value : (isset($data['jinyantype']) ? $data['jinyantype'] : ''); $list = $this->getJinyantypeList(); return isset($list[$value]) ? $list[$value] : ''; } public function getIsShouchongTextAttr($value, $data) { $value = $value ? $value : (isset($data['is_shouchong']) ? $data['is_shouchong'] : ''); $list = $this->getIsShouchongList(); return isset($list[$value]) ? $list[$value] : ''; } protected function setYaoqingtimeAttr($value) { return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value); } protected function setLogintimeAttr($value) { return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value); } protected function setJointimeAttr($value) { return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value); } protected function setJinyantimeAttr($value) { return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value); } public function usergroup() { return $this->belongsTo('UserGroup', 'group_id', 'id', [], 'LEFT')->setEagerlyType(0); } public function userwallet() { return $this->belongsTo('Userwallet', 'id', 'user_id', [], 'LEFT')->setEagerlyType(0); } }