<?php

namespace app\admin\model;

use think\Model;


class User extends Model
{

    

    

    // 表名
    protected $name = 'user';
    
    // 自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';

    // 定义时间戳字段名
    protected $createTime = 'createtime';
    protected $updateTime = 'updatetime';
    protected $deleteTime = false;

    // 追加属性
    protected $append = [
        'real_status_text',
        'gender_text',
        'idcard_status_text',
        'prevtime_text',
        'logintime_text',
        'jointime_text',
        'status_text',
        'open_match_video_text',
        'open_match_audio_text',
        'open_match_typing_text',
        'free_video_text',
        'free_audio_text',
        'free_typing_text',
        'is_kefu_text',
        'frozentime_text',
        'is_recommend_text',
        'is_agent_text',
    ];

    protected static function init()
    {
        self::beforeUpdate(function ($row) {
            $changed = $row->getChangedData();
            //如果有修改密码
            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,'手机号已经被使用');
                    }
                }
            }
        });
        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['username']){
                $exists = db('user')->where('username', $row['username'])->find();
                if ($exists) {
                    abort(500,'用户名已经被使用');
                }
            }else{
                abort(500,'用户名不能为空');
            }*/

            if($row['mobile']){
                $exists = db('user')->where('mobile', $row['mobile'])->find();
                if ($exists) {
                    abort(500,'手机号已经被使用');
                }
            }else{
                abort(500,'手机号不能为空');
            }
            //判断用户名,手机号重复
        });
        self::afterInsert(function ($row){
            $data = [
                'user_id' => $row['id'],
            ];
            db('user_wallet')->insertGetId($data);

            $username = 'u' . (10000 + $row['id']);
            db('user')->where('id',$row['id'])->update(['username'=>$username]);
        });
    }
    
    public function getRealStatusList()
    {
        return ['-1' => __('Real_status -1'), '0' => __('Real_status 0'), '1' => __('Real_status 1'), '2' => __('Real_status 2')];
    }

    public function getGenderList()
    {
        return ['1' => __('Gender 1'), '0' => __('Gender 0'), '-1' => __('Gender -1')];
    }

    public function getIdcardStatusList()
    {
        return ['-1' => __('Idcard_status -1'), '0' => __('Idcard_status 0'), '1' => __('Idcard_status 1'), '2' => __('Idcard_status 2')];
    }

    public function getStatusList()
    {
        return ['1' => __('Status 1'), '0' => __('Status 0'), '-1' => __('Status -1'), '2' => __('Status 2')];
    }

    public function getIsKefuList()
    {
        return ['1' => __('是'), '0' => __('否')];
    }

    public function getIsRecommendList()
    {
        return ['1' => __('是'), '0' => __('否')];
    }

    public function getIsAgentList()
    {
        return ['1' => __('是'), '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 getOpenMatchTypingList()
    {
        return ['1' => __('Open_match_typing 1'), '0' => __('Open_match_typing 0')];
    }

    public function getFreeVideoList()
    {
        return ['1' => __('Free_video 1'), '0' => __('Free_video 0')];
    }

    public function getFreeAudioList()
    {
        return ['1' => __('Free_audio 1'), '0' => __('Free_audio 0')];
    }

    public function getFreeTypingList()
    {
        return ['1' => __('Free_typing 1'), '0' => __('Free_typing 0')];
    }


    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 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 getPrevtimeTextAttr($value, $data)
    {
        $value = $value ? $value : (isset($data['prevtime']) ? $data['prevtime'] : '');
        return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $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 getIsKefuTextAttr($value, $data)
    {
        $value = $value ? $value : (isset($data['is_kefu']) ? $data['is_kefu'] : '');
        $list = $this->getStatusList();
        return isset($list[$value]) ? $list[$value] : '';
    }

    public function getIsRecommendTextAttr($value, $data)
    {
        $value = $value ? $value : (isset($data['is_recommend']) ? $data['is_recommend'] : '');
        $list = $this->getStatusList();
        return isset($list[$value]) ? $list[$value] : '';
    }

    public function getIsAgentTextAttr($value, $data)
    {
        $value = $value ? $value : (isset($data['is_agent']) ? $data['is_agent'] : '');
        $list = $this->getStatusList();
        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 getOpenMatchTypingTextAttr($value, $data)
    {
        $value = $value ? $value : (isset($data['open_match_typing']) ? $data['open_match_typing'] : '');
        $list = $this->getOpenMatchTypingList();
        return isset($list[$value]) ? $list[$value] : '';
    }


    public function getFreeVideoTextAttr($value, $data)
    {
        $value = $value ? $value : (isset($data['free_video']) ? $data['free_video'] : '');
        $list = $this->getFreeVideoList();
        return isset($list[$value]) ? $list[$value] : '';
    }


    public function getFreeAudioTextAttr($value, $data)
    {
        $value = $value ? $value : (isset($data['free_audio']) ? $data['free_audio'] : '');
        $list = $this->getFreeAudioList();
        return isset($list[$value]) ? $list[$value] : '';
    }


    public function getFreeTypingTextAttr($value, $data)
    {
        $value = $value ? $value : (isset($data['free_typing']) ? $data['free_typing'] : '');
        $list = $this->getFreeTypingList();
        return isset($list[$value]) ? $list[$value] : '';
    }

    public function getFrozentimeTextAttr($value, $data)
    {
        $value = $value ? $value : (isset($data['frozentime']) ? $data['frozentime'] : '');
        return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;
    }

    protected function setPrevtimeAttr($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 setFrozentimeAttr($value)
    {
        return $value === '' ? 0 : ($value && !is_numeric($value) ? strtotime($value) : $value);
    }

    public function gonghui()
    {
        return $this->belongsTo('Gonghui', 'gh_id', 'id', [], 'LEFT')->setEagerlyType(0);
    }

    public function userwallet()
    {
        return $this->hasOne('Userwallet', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
    }

    public function wallet()
    {
        return $this->belongsTo('Userwallet', 'id', 'user_id', [], 'LEFT')->setEagerlyType(0);
    }
}