<?php

namespace app\api\controller;

use app\common\controller\Api;
use app\common\library\Ems;
use app\common\library\Sms;
use fast\Random;
use think\Config;
use think\Validate;

use app\common\library\Token;
use think\Db;
use app\common\model\UserDeviceInfo;
use onlogin\onlogin;

use addons\epay\library\Service;
use addons\epay\library\Wechat;

use TencentCloud\Common\Credential;
use TencentCloud\Common\Profile\ClientProfile;
use TencentCloud\Common\Profile\HttpProfile;
use TencentCloud\Common\Exception\TencentCloudSDKException;
use TencentCloud\Faceid\V20180301\FaceidClient;
use TencentCloud\Faceid\V20180301\Models\IdCardVerificationRequest;
use TencentCloud\Iai\V20200303\IaiClient;
use TencentCloud\Iai\V20200303\Models\CompareFaceRequest;

/**
 * 会员接口,登录,注册,修改资料等
 */
class User extends Api
{
    protected $noNeedLogin = ['login', 'mobilelogin','wechatlogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'onlogin','getUserOpenid_gzh','jssdkBuildConfig', 'mobileregister', 'mobilecheck', 'wechatregiter', 'onregister', 'ioslogin', 'iosregiter'];
    protected $noNeedRight = '*';

    public function _initialize()
    {
        parent::_initialize();

        if (!Config::get('fastadmin.usercenter')) {
            $this->error(__('User center already closed'));
        }
        $this->taskModel = new \app\common\model\Task();
        $this->tasklogModel = new \app\common\model\TaskLog();
    }

    /**
     * 会员中心
     */
    public function index()
    {
        $this->success('', ['welcome' => $this->auth->nickname]);
    }
    /**
     * 获取美颜授权
     *
     */
    public function getmeiyan()
    {
        $code = Db::name('Config')->where(['name'=>'meiyan'])->value('value');
        $rs['code'] = $code;
        $this->success('请求成功',$code);
    }
    /**
     * 会员登录
     *
     * @ApiMethod (POST)
     * @param string $account  账号
     * @param string $password 密码
     */
    public function login()
    {
        $account = input('account');
        $password = input('password');
        if (!$account || !$password) {
            $this->error(__('Invalid parameters'));
        }
        $ret = $this->auth->login($account, $password);
        if ($ret) {
            $data = $this->userInfo('return');
            $this->success(__('Logged in successful'), $data);
        } else {
            $this->error($this->auth->getError());
        }
    }

    //非首次注册男性用户每次打开app,系统自动推送女性(公会)打招呼消息3人次。
    private function firstopen_send($oneuser){
        //找出公会的人
        $map = [
            'gh_id'  => ['gt',0],
            'gender'  => 0,
        ];
        $ghuser = Db::name('user')->where($map)->orderRaw('rand()')->limit(3)->column('id');
        //dump($ghuser);

        //随机取出一句话
        $oneword = Db::name('plantask_accost')->orderRaw('rand()')->limit(3)->column('title');
        //dump($oneword);

        $tenim = new \app\common\library\Tenim;

        for($i = 0;$i < 3;$i++){
            $ghuser_one  = isset($ghuser[$i])  ? $ghuser[$i]  : $ghuser[array_rand($ghuser)];
            $oneword_one = isset($oneword[$i]) ? $oneword[$i] : $oneword[array_rand($oneword)];
            $tenim->sendMessageToUser($ghuser_one,$oneuser,$oneword_one);
        }
    }

    /**
     * 手机验证码登录
     *
     * @ApiMethod (POST)
     * @param string $mobile  手机号
     * @param string $captcha 验证码
     */
    public function mobilelogin()
    {

        $mobile = input('mobile');
        $captcha = input('captcha');

        if (!$mobile || !$captcha) {
            $this->error(__('Invalid parameters'));
        }
        if (!Validate::regex($mobile, "^1\d{10}$")) {
            $this->error(__('Mobile is incorrect'));
        }
        if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
            $this->error(__('Captcha is incorrect'));
        }
        $user = \app\common\model\User::getByMobile($mobile);
        if ($user) {
            if ($user->status == -1) {
                $this->error('账户已注销');
            }
            if (!in_array($user->status,[1,2])) {
                $this->error(__('Account is locked'));
            }
            if ($user->frozentime > time()) {
                $this->error('您的账号已被封禁至' . date('Y-m-d H:i'));
            }
            //如果已经有账号则直接登录
            $ret = $this->auth->direct($user->id);

            //非首次注册男性用户每次打开app,系统自动推送女性(公会)打招呼消息3人次
            /*if($user->gender == 1 && $user->gh_id == 0){
                $this->firstopen_send($user->id);
            }*/
        } else {
//            $this->success('选择性别', ['code' => 5]);

            $extend = [
                'register_from' => input('register_from',''),
                'gender' => -1
            ];
            $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, $extend);
            //亿米
            /*if(input('register_from','') == 'xiaomi'){
                $this->yimi_advert();
            }*/
        }
        if ($ret) {
            Sms::flush($mobile, 'mobilelogin');
            $data = $this->userInfo('return');
            $this->success(__('Logged in successful'), $data);
        } else {
            $this->error($this->auth->getError());
        }
    }

    /**
     * 手机验证码验证
     *
     * @ApiMethod (POST)
     * @param string $mobile  手机号
     * @param string $captcha 验证码
     */
    public function mobilecheck()
    {
        $mobile = input('mobile');
        $captcha = input('captcha');

        if (!$mobile || !$captcha) {
            $this->error(__('Invalid parameters'));
        }
        if (!Validate::regex($mobile, "^1\d{10}$")) {
            $this->error(__('Mobile is incorrect'));
        }
        if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
            $this->error(__('Captcha is incorrect'));
        }

        $this->success('验证通过');
    }

    /**
     * 手机验证码注册
     *
     * @ApiMethod (POST)
     * @param string $mobile  手机号
     * @param string $captcha 验证码
     * @param string $gender  性别:1=男,0=女
     */
    public function mobileregister()
    {
        $mobile = input('mobile');
        $captcha = input('captcha');
        $gender = input('gender', -1, 'intval'); //性别:1=男,0=女

        if (!$mobile || !$captcha) {
            $this->error(__('Invalid parameters'));
        }
        if (!Validate::regex($mobile, "^1\d{10}$")) {
            $this->error(__('Mobile is incorrect'));
        }
        if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
            $this->error(__('Captcha is incorrect'));
        }
        if (!in_array($gender, [1, 0])) {
            $this->error('性别错误');
        }
        $user = \app\common\model\User::getByMobile($mobile);
        if ($user) {
            $this->error('账号已经存在,请直接登录');

            if ($user->status == -1) {
                $this->error('账户已注销');
            }
            if (!in_array($user->status,[1,2])) {
                $this->error(__('Account is locked'));
            }
            //如果已经有账号则直接登录
            $ret = $this->auth->direct($user->id);

            //非首次注册男性用户每次打开app,系统自动推送女性(公会)打招呼消息3人次
            /*if($user->gender == 1 && $user->gh_id == 0){
                $this->firstopen_send($user->id);
            }*/
        } else {
            $extend = [
                'register_from' => input('register_from',''),
                'gender' => $gender
            ];
            $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, $extend);
            //亿米
            /*if(input('register_from','') == 'xiaomi'){
                $this->yimi_advert();
            }*/
        }
        if ($ret) {
            Sms::flush($mobile, 'mobilelogin');
            $data = $this->userInfo('return');
            $this->success(__('Logged in successful'), $data);
        } else {
            $this->error($this->auth->getError());
        }
    }

    /**
     * 注册会员
     *
     * @ApiMethod (POST)
     * @param string $username 用户名
     * @param string $password 密码
     * @param string $email    邮箱
     * @param string $mobile   手机号
     * @param string $code     验证码
     */
    /*public function register()
    {
        $username = $this->request->post('username');
        $password = $this->request->post('password');
        $email = $this->request->post('email');
        $mobile = $this->request->post('mobile');
        $code = $this->request->post('code');
        if (!$username || !$password) {
            $this->error(__('Invalid parameters'));
        }
        if ($email && !Validate::is($email, "email")) {
            $this->error(__('Email is incorrect'));
        }
        if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
            $this->error(__('Mobile is incorrect'));
        }
        $ret = Sms::check($mobile, $code, 'register');
        if (!$ret) {
            $this->error(__('Captcha is incorrect'));
        }
        $ret = $this->auth->register($username, $password, $email, $mobile, []);
        if ($ret) {
            $data = $this->userInfo('return');
            $this->success(__('Sign up successful'), $data);
        } else {
            $this->error($this->auth->getError());
        }
    }*/

    //微信登录
    public function wechatlogin(){
//        $nickname = input('nickname','');
//        $avatar = input('avatar','');
//        $gender = input('gender',1);
        $wechat_openid = input('wechat_openid','');

        if (!$wechat_openid) {
            $this->error(__('Invalid parameters'));
        }
//        if($gender != 1){
//            $gender = 0;
//        }

        $user = \app\common\model\User::getByOpenid($wechat_openid);
        if ($user) {
            if (!in_array($user->status,[1,2])) {
                $this->error(__('Account is locked'));
            }
            if ($user->frozentime > time()) {
                $this->error('您的账号已被封禁至' . date('Y-m-d H:i'));
            }
            //如果已经有账号则直接登录
            $ret = $this->auth->direct($user->id);

            //非首次注册男性用户每次打开app,系统自动推送女性(公会)打招呼消息3人次
            /*if($user->gender == 1 && $user->gh_id == 0){
                $this->firstopen_send($user->id);
            }*/
        } else {
//            $this->success('选择性别', ['code' => 5]);

//            if (!$nickname || !$avatar) {
//                $this->error(__('Invalid parameters'));
//            }

            $reg_data = [
//                'nickname'=>$nickname,
//                'avatar'=>$avatar,
//                'gender'=>$gender,
                'register_from' => input('register_from',''),
                'gender' => -1
            ];
            $ret = $this->auth->openid_register($wechat_openid,$reg_data);
            //亿米
            /*if(input('register_from','') == 'xiaomi'){
                $this->yimi_advert();
            }*/
        }
        if ($ret) {
            $data = $this->userInfo('return');
            $this->success(__('Logged in successful'), $data);
        } else {
            $this->error($this->auth->getError());
        }
    }

    //微信注册
    public function wechatregiter(){
//        $nickname = input('nickname','');
//        $avatar = input('avatar','');
//        $gender = input('gender',1);
        $wechat_openid = input('wechat_openid','');
        $gender = input('gender', -1, 'intval'); //性别:1=男,0=女

        if (!$wechat_openid) {
            $this->error(__('Invalid parameters'));
        }
        if (!in_array($gender, [1, 0])) {
            $this->error('性别错误');
        }

        $user = \app\common\model\User::getByOpenid($wechat_openid);
        if ($user) {
            $this->error('账号已经存在,请直接登录');

            if (!in_array($user->status,[1,2])) {
                $this->error(__('Account is locked'));
            }
            //如果已经有账号则直接登录
            $ret = $this->auth->direct($user->id);

            //非首次注册男性用户每次打开app,系统自动推送女性(公会)打招呼消息3人次
            /*if($user->gender == 1 && $user->gh_id == 0){
                $this->firstopen_send($user->id);
            }*/
        } else {
//            if (!$nickname || !$avatar) {
//                $this->error(__('Invalid parameters'));
//            }

            $reg_data = [
//                'nickname'=>$nickname,
//                'avatar'=>$avatar,
                'gender'=>$gender,
                'register_from' => input('register_from',''),
            ];
            $ret = $this->auth->openid_register($wechat_openid,$reg_data);
            //亿米
            /*if(input('register_from','') == 'xiaomi'){
                $this->yimi_advert();
            }*/
        }
        if ($ret) {
            $data = $this->userInfo('return');
            $this->success(__('Logged in successful'), $data);
        } else {
            $this->error($this->auth->getError());
        }
    }

    /**
     * 运营商一键登录
     */
    public function onLogin()
    {
        $accessToken = input('accessToken');// 运营商预取号获取到的token
        $token = input('tokenT');// 易盾返回的token
        if (!$accessToken || !$token) {
            $this->error("参数获取失败!");
        }

        $params = array(
            // 运营商预取号获取到的token
            "accessToken" => $accessToken,
            // 易盾返回的token
            "token"       => $token
        );

        // 获取密钥配置
        $configInfo = config("onLogin");
        $onlogin = new onlogin($configInfo["secretid"], $configInfo["secretkey"], $configInfo["businessid"]);

        $onret = $onlogin->check($params);

//        $ret = [];
//        $ret["code"] = 200;
//        $ret["msg"] = "ok";
//        $ret["data"] = [
//            "phone" => "17574504021",
//            "resultCode" => 0
//        ];

        if ($onret["code"] == 200) {
            $mobile = $onret["data"]["phone"];
            if (empty($mobile)) {
                // 取号失败,建议进行二次验证,例如短信验证码
                $this->error("取号登录失败,请用验证码方式登录!");
            } else {
                // 取号成功, 执行登录等流程
                // 用户登录逻辑 === 开始

                $user = \app\common\model\User::getByMobile($mobile);
                if ($user) {
                    if (!in_array($user->status,[1,2])) {
                        $this->error(__('Account is locked'));
                    }
                    if ($user->frozentime > time()) {
                        $this->error('您的账号已被封禁至' . date('Y-m-d H:i'));
                    }
                    //如果已经有账号则直接登录
                    $ret = $this->auth->direct($user->id);
                    $is_register = 0;

                    //非首次注册男性用户每次打开app,系统自动推送女性(公会)打招呼消息3人次
                    /*if($user->gender == 1 && $user->gh_id == 0){
                        $this->firstopen_send($user->id);
                    }*/
                } else {
//                    $this->success('选择性别', ['code' => 5]);

                    $extend = [
                        'register_from' => input('register_from',''),
                        'gender' => -1
                    ];
                    $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, $extend);
                    $is_register = 1;
                    //亿米
//                    if(input('register_from','') == 'xiaomi'){
//                        $this->yimi_advert();
//                    }
                }

                //结果
                /*$rs['userinfo'] = $this->auth->getUserinfo();
                $rs['is_register'] = $is_register;*/
                if ($ret) {
                    $this->success(__('Logged in successful'), $this->auth->getUserinfo());
                } else {
                    $this->error($this->auth->getError());
                }
                // 用户登录逻辑 === 结束
            }
        } else {
            $this->error("登录失败,请用验证码方式登录!");
        }
    }

    /**
     * 运营商一键登录注册
     */
    public function onregister()
    {
        $accessToken = input('accessToken');// 运营商预取号获取到的token
        $token = input('tokenT');// 易盾返回的token
        $gender = input('gender', -1, 'intval'); //性别:1=男,0=女

        if (!$accessToken || !$token) {
            $this->error("参数获取失败!");
        }
        if (!in_array($gender, [1, 0])) {
            $this->error('性别错误');
        }

        $params = array(
            // 运营商预取号获取到的token
            "accessToken" => $accessToken,
            // 易盾返回的token
            "token"       => $token
        );

        // 获取密钥配置
        $configInfo = config("onLogin");
        $onlogin = new onlogin($configInfo["secretid"], $configInfo["secretkey"], $configInfo["businessid"]);

        $onret = $onlogin->check($params);

//        $ret = [];
//        $ret["code"] = 200;
//        $ret["msg"] = "ok";
//        $ret["data"] = [
//            "phone" => "17574504021",
//            "resultCode" => 0
//        ];

        if ($onret["code"] == 200) {
            $mobile = $onret["data"]["phone"];
            if (empty($mobile)) {
                // 取号失败,建议进行二次验证,例如短信验证码
                $this->error("取号登录失败,请用验证码方式登录!");
            } else {
                // 取号成功, 执行登录等流程
                // 用户登录逻辑 === 开始

                $user = \app\common\model\User::getByMobile($mobile);
                if ($user) {
                    $this->error('账号已经存在,请直接登录');

                    if (!in_array($user->status,[1,2])) {
                        $this->error(__('Account is locked'));
                    }
                    //如果已经有账号则直接登录
                    $ret = $this->auth->direct($user->id);
                    $is_register = 0;

                    //非首次注册男性用户每次打开app,系统自动推送女性(公会)打招呼消息3人次
                    /*if($user->gender == 1 && $user->gh_id == 0){
                        $this->firstopen_send($user->id);
                    }*/
                } else {
                    $extend = [
                        'register_from' => input('register_from',''),
                        'gender' => $gender
                    ];
                    $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, $extend);
                    $is_register = 1;
                    //亿米
//                    if(input('register_from','') == 'xiaomi'){
//                        $this->yimi_advert();
//                    }
                }

                //结果
                /*$rs['userinfo'] = $this->auth->getUserinfo();
                $rs['is_register'] = $is_register;*/
                if ($ret) {
                    $this->success(__('Logged in successful'), $this->auth->getUserinfo());
                } else {
                    $this->error($this->auth->getError());
                }
                // 用户登录逻辑 === 结束
            }
        } else {
            $this->error("登录失败,请用验证码方式登录!");
        }
    }

    //用户详细资料
    public function userInfo($type = 1){
        $info = $this->auth->getUserinfo();
        if($type == 'return'){
            return $info;
        }
        $this->success(__('success'),$info);
    }

    //用户邀请信息
    public function userintroinfo(){
        $intro_num = Db::name('user')->where('intro_uid',$this->auth->id)->count();
        $money_sum = Db::name('user_money_log')->where(['user_id'=>$this->auth->id,'log_type'=>63])->sum('change_value');

        $user_list = Db::name('user')->field('id,avatar,nickname,createtime')->where('intro_uid',$this->auth->id)->autopage()->select();

        $rs = [
            'intro_num' => $intro_num,
            'money_sum' => $money_sum,
            'user_list' => $user_list,
        ];

        $this->success('success',$rs);
    }

    public function testhaibao(){
        $haibao = $this->haibao($this->auth->id,['introcode'=>$this->auth->introcode]);
//        dump($haibao);
        $this->success('success', $haibao);
    }

    //海报
    public function haibao($player_id,$data){

        //下载页二维码,没必要保留
        $params = [
            'text' => config('site.domain_name').'?code=' . $data['introcode'],
            'size' => 90,
            'logo' => false,
            'label' => false,
            'padding' => 0,
        ];
        $qrCode = \addons\qrcode\library\Service::qrcode($params);
        $qrcode_path = 'uploads/hbplayer/'.date('Ymd');
        mk_dir($qrcode_path);
        $download_qrcode = $qrcode_path.'/download'.$player_id.'.png';
        $qrCode->writeFile($download_qrcode);

        //海报
        $haibao = $this->createhaibao($download_qrcode,$player_id,$data);

        return $haibao;
    }

    /*public function createhaibao($download_qrcode,$player_id,$sub_data){

        //背景图
        $background = $sub_data['background'] ? $sub_data['background'] : config('site.domain_name').'/assets/img/haibao.png';
        //海报图片路径
        $new_path = 'uploads/hbplayer/'.date("Ymd").'/';
        mk_dir($new_path);
        $wap_file_name  = $new_path .'wap_player_'. $player_id . '.png';

        //二维码
        $download_qrcode= config('site.domain_name').'/'.$download_qrcode;


        //合成wap图片
        $image = new \addons\poster\library\Image2();
        $imgurl = $image->createPosterImage($background,$download_qrcode,$sub_data['introcode'],$wap_file_name);

        return '/'.$wap_file_name;
    }*/

    public function createhaibao($download_qrcode,$player_id,$sub_data){
        //二维码
        $download_qrcode= config('site.domain_name').'/'.$download_qrcode;

        $data = [
            [
                "left" => "15px",
                "top" => "296px",
                "type" => "img",
                "width" => "58px",
                "height" => "58px",
                "src" => one_domain_image($this->auth->avatar)//"https://metavision.oss-cn-hongkong.aliyuncs.com/uploads/20220615/f00cb545deb4c4e7296f444239d83e84.jpg"
            ],
            [
                "left" => "81px",
                "top" => "300px",
                "type" => "nickname",
                "width" => "80px",
                "height" => "24px",
                "size" => "12px",
                "color" => "#000",
                "content" => $this->auth->nickname
            ],
            [
                "left" => "81px",
                "top" => "327px",
                "type" => "nickname",
                "width" => "80px",
                "height" => "24px",
                "size" => "12px",
                "color" => "#000",
                "content" => $this->auth->introcode
            ],
            [
                "left" => "227px",
                "top" => "283px",
                "type" => "img",
                "width" => "80px",
                "height" => "80px",
//                "src" => httpurllocal($inviteimage)//"https://metavision.oss-cn-hongkong.aliyuncs.com/uploads/20220615/f00cb545deb4c4e7296f444239d83e84.jpg"
                "src" => $download_qrcode//"https://metavision.oss-cn-hongkong.aliyuncs.com/uploads/20220615/f00cb545deb4c4e7296f444239d83e84.jpg"
            ]
        ];

        $data = json_encode($data, 320);

        $poster = [
            'id' => 1,
            'title' => '测试2',
            'waittext' => '您的专属海报正在拼命生成中,请等待片刻...',
            'bg_image' => $sub_data['background'] ? cdnurl($sub_data['background']) : '/assets/img/inviteposter.png',
            'data' => $data,
            'status' => 'normal',
            'weigh' => 0,
            'createtime' => 1653993709,
            'updatetime' => 1653994259,
        ];

        $image = new \addons\poster\library\Image();
        $imgurl = $image->createPosterImage($poster, $this->auth->getUser());

        if (!$imgurl) {
            $this->error('生成海报出错');
        }
//        $imgurl = $_SERVER["REQUEST_SCHEME"]."://".$_SERVER["HTTP_HOST"] . '/' . $imgurl;
        return '/' . $imgurl;
    }


    //申请真人认证
    public function apply_real_confirm(){
        $avatar = input('avatar', '', 'trim,strip_tags,htmlspecialchars');
        if(!$avatar){
            $this->error('请上传真人头像');
        }

        Db::startTrans();

        $data = [
            'avatar' => $avatar,
            'real_status' => 1,
        ];
        $rs = Db::name('user')->where('id',$this->auth->id)->update($data);
        if($rs === false){
            Db::rollback();
            $this->error('认证失败');
        }
        //tag任务赠送金币
        //完成本人基本资料 +15金币《所有资料完善,包括真人认证和实名认证》
        $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,5);
        if($task_rs === false){
            Db::rollback();
            $this->error('完成任务赠送奖励失败');
        }
        //完成真人头像 +5金币
        $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,7);
        if($task_rs === false){
            Db::rollback();
            $this->error('完成任务赠送奖励失败');
        }
        //邀请人拿奖励,男性3元
        $intro_money = $this->auth->gender == 1 ? config('site.intro_man_money') : config('site.intro_woman_money');
        if($this->auth->idcard_status == 1 && !empty($this->auth->intro_uid) && $intro_money > 0){
            $task_rs = model('wallet')->lockChangeAccountRemain($this->auth->intro_uid,$this->auth->id,'money',$intro_money,63,$remark='邀请人拿奖励');
            if($task_rs['status'] === false){
                Db::rollback();
                $this->error($task_rs['msg']);
            }
        }
        //系统消息
        $msg_id = \app\common\model\Message::addMessage($this->auth->id,'真人认证','真人认证已经审核通过');

        Db::commit();
        $this->success();
    }

    //实名认证信息
    public function idcard_confirm_info(){
        $check = Db::name('user_idconfirm')->where('user_id',$this->auth->id)->order('id desc')->find();
        if (!$check) {
            $check = (object)[];
        }

        $this->success('success',$check);
    }



    /**
     * 退出登录
     * @ApiMethod (POST)
     */
    public function logout()
    {
        if (!$this->request->isPost()) {
            $this->error(__('Invalid parameters'));
        }
        //退出im
        $tenIm = new Tenim();
        $tenIm->loginoutim($this->auth->id);

        //修改用户活跃0
        Db::name('user')->where('id',$this->auth->id)->update(['is_active' => 0]);

        $this->auth->logout();
        $this->success(__('Logout successful'));
    }

    /**
     * 修改会员个人信息
     *
     * @ApiMethod (POST)
     * @param string $avatar   头像地址
     * @param string $username 用户名
     * @param string $nickname 昵称
     * @param string $bio      个人简介
     */
    public function profile()
    {
        $field_array = ['nickname','introcode',/*'gender',*/'birthday','height','weight','bio','audio_bio','avatar','photo_images','education_id','hobby_ids','job_id','marital_id','tag_ids','wages_id','hometown_cityid','hide_is_finishinfo','wechat_account','character_id','constellation_id','stature_id','is_appointment', 'greet_voice', 'greet_chat', 'is_cohabit', 'live_id', 'is_house', 'car_id', 'chest_id', 'waist'];

        $data = [];
        foreach($field_array as $key => $field){

            if(!input('?'.$field)){
                continue;
            }

            $newone = input($field);

            if($field == 'avatar'){
               // if ($this->auth->real_status == 1) {
                    //$this->error('您已经真人认证不能修改头像~');
                   // die;
               // }
                $newone = input('avatar', '', 'trim,strip_tags,htmlspecialchars');
            }
            if($field == 'photo_images'){
                $newone = input('photo_images', '', 'trim,strip_tags,htmlspecialchars');
            }

            $data[$field] = $newone;
        }

        if(isset($data['birthday'])){
            $data['birthday'] = strtotime($data['birthday']);
        }
        if(isset($data['avatar'])){
            //$data['real_status'] = -1;  //或许应该改成0。性别不能改所以不需要
        }
        if(isset($data['hobby_ids'])){
            $data['hobby_ids'] = implode(',',explode(',',$data['hobby_ids']));
        }
        if(isset($data['tag_ids'])){
            $data['tag_ids'] = implode(',',explode(',',$data['tag_ids']));
        }
        if(isset($data['introcode'])){
            if ($this->auth->intro_uid != 0) {
                $this->error('邀请人不可修改~');
            }

            $intro_user = Db::name('user')->field('id, intro_uid')->where('introcode', $data['introcode'])->find();
            if(!$intro_user){
                $this->error('不存在的邀请人');
            }
            if ($intro_user['id'] == $this->auth->id) {
                $this->error('不能填写自己邀请码');
            }
            if ($intro_user['intro_uid'] == $this->auth->id) {
                $this->error('不能填写下级邀请码');
            }
            unset($data['introcode']);//别人的邀请码,不能改了自己的
            $data['intro_uid'] = $intro_user['id'];
            $data['invite_time'] = time();
        }
        //dump($data);
        if(empty($data)){
            $this->error('没有任何改变');
        }



        Db::startTrans();
        $userData = Db::name('user')->field('avatar,gender,status')->where('id',$this->auth->id)->find();
        if (isset($data['avatar']) && !empty($data['avatar']) && $userData['status'] == 2) {//隐藏
            $boyAvatar = config('avatar_boy');
            $girlAvatar = config('avatar_girl');
            if ($userData['gender'] == 1 && $data['avatar'] != $boyAvatar) {
                $data['status'] = 1;//更新为正常
            } elseif ($userData['gender'] == 0 && $data['avatar'] != $girlAvatar) {
                $data['status'] = 1;//更新为正常
            }
        }
        $update_rs = Db::name('user')->where('id',$this->auth->id)->update($data);
        if($update_rs === false){
            Db::rollback();
            $this->error('修改资料失败');
        }

        //tag任务赠送金币
        //上传头像加5金币
        if(isset($data['avatar'])){
            $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,19);
            if($task_rs === false){
                Db::rollback();
                $this->error('完成任务赠送奖励失败');
            }
        }
        //上传生日 +5金币
        if (isset($data['birthday'])) {
            //完成设置生日  +5金币
            $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,1);
            if($task_rs === false){
                Db::rollback();
                $this->error('完成任务赠送奖励失败');
            }
        }
        //上传个性签名 5金币
        if(isset($data['audio_bio'])){
            $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,2);
            if($task_rs === false){
                Db::rollback();
                $this->error('完成任务赠送奖励失败');
            }
        }
        //上传本人语音介绍 10金币
        if(isset($data['audio_bio'])){
            $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,21);
            if($task_rs === false){
                Db::rollback();
                $this->error('完成任务赠送奖励失败');
            }
        }
        //上传本人五张照片 10金币
        if(isset($data['photo_images'])){
            $photo_images_num = count(explode(',',$data['photo_images'])) + count(explode(',',$this->auth->photo_images));
            if ($photo_images_num >= 5) {
                $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id, 5);
                if ($task_rs === false) {
                    Db::rollback();
                    $this->error('完成任务赠送奖励失败');
                }
            }
        }
       /*if (isset($data['intro_uid'])) { //邀请人获得金币
           $intro_gold = config('site.intro_gold');
           if ($intro_gold > 0) {
               $wallet_rs = model('wallet')->lockChangeAccountRemain($data['intro_uid'],$this->auth->id,'gold',$intro_gold,64,'邀请注册奖励','user', $this->auth->id);
               if($wallet_rs['status'] === false){
                   Db::rollback();
                   $this->error($wallet_rs['msg']);
               }
           }
       }*/

        Db::commit();

        /*//开启事务
        Db::startTrans();
        //所有基本资料完成
        $user_info = Db::name('user')->where('id',$this->auth->id)->find();
        if($user_info['hometown_cityid'] && $user_info['job_id'] && $user_info['education_id'] && $user_info['wages_id'] && $user_info['character_id'] && $user_info['stature_id'] && $user_info['weight'] && $user_info['height'] && $user_info['marital_id']){
            $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,6);
            if($task_rs === false){
                Db::rollback();
                $this->error('完成任务赠送奖励失败');
            }
        }
        //兴趣爱好
        if($user_info['hobby_ids']){
            $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,7);
            if($task_rs === false){
                Db::rollback();
                $this->error('完成任务赠送奖励失败');
            }
        }
        //个人标签
        if($user_info['tag_ids']){
            $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,8);
            if($task_rs === false){
                Db::rollback();
                $this->error('完成任务赠送奖励失败');
            }
        }

        Db::commit();*/
        $this->success();
    }

    public function set_status_switch(){

    }

    /*
     * 修改用户的坐标
     * */
    public function change_longlat(){
        $longitude = input_post('longitude');
        $latitude  = input_post('latitude');
        $cityname  = input_post('cityname');
        if(empty($longitude) || empty($latitude) || empty($cityname)){
            $this->error();
        }

        $data = [
            'longitude' => $longitude,
            'latitude'  => $latitude,
            'cityname'  => $cityname,
        ];
        Db::name('user')->where('id',$this->auth->id)->update($data);
        $this->success();
    }

    /**
     * 修改邮箱
     *
     * @ApiMethod (POST)
     * @param string $email   邮箱
     * @param string $captcha 验证码
     */
    /*public function changeemail()
    {
        $user = $this->auth->getUser();
        $email = $this->request->post('email');
        $captcha = $this->request->post('captcha');
        if (!$email || !$captcha) {
            $this->error(__('Invalid parameters'));
        }
        if (!Validate::is($email, "email")) {
            $this->error(__('Email is incorrect'));
        }
        if (\app\common\model\User::where('email', $email)->where('id', '<>', $user->id)->find()) {
            $this->error(__('Email already exists'));
        }
        $result = Ems::check($email, $captcha, 'changeemail');
        if (!$result) {
            $this->error(__('Captcha is incorrect'));
        }
        $verification = $user->verification;
        $verification->email = 1;
        $user->verification = $verification;
        $user->email = $email;
        $user->save();

        Ems::flush($email, 'changeemail');
        $this->success();
    }*/

    /**
     * 修改手机号
     *
     * @ApiMethod (POST)
     * @param string $mobile   手机号
     * @param string $captcha 验证码
     */
    public function changemobile()
    {
        $user = $this->auth->getUser();
        $oldcaptcha = $this->request->request('oldcaptcha');
        $mobile = $this->request->request('mobile');
        $captcha = $this->request->request('captcha');
        if (!$oldcaptcha || !$mobile || !$captcha) {
            $this->error(__('Invalid parameters'));
        }
        if (!Validate::regex($mobile, "^1\d{10}$")) {
            $this->error(__('Mobile is incorrect'));
        }
        if($user->mobile == $mobile){
            $this->error('新手机号不能与旧手机号相同');
        }
        if (\app\common\model\User::where('mobile', $mobile)->find()) {
            $this->error(__('Mobile already exist'));
        }
        $result = Sms::check($user->mobile, $oldcaptcha, 'changemobile');
        if (!$result) {
            $this->error(__('Captcha is incorrect'));
        }
        $result = Sms::check($mobile, $captcha, 'changemobile');
        if (!$result) {
            $this->error(__('Captcha is incorrect'));
        }
        $verification = $user->verification;
        $verification->mobile = 1;
        $user->verification = $verification;
        $user->mobile = $mobile;
        $user->save();

        Sms::flush($user->mobile, 'changemobile');
        Sms::flush($mobile, 'changemobile');
        $this->success();
    }
    /**
     * 微信注册来的,绑定手机号
     *
     * @ApiMethod (POST)
     * @param string $mobile   手机号
     * @param string $captcha 验证码
     */
    public function bindmobile()
    {
        $user = $this->auth->getUser();
        $mobile = $this->request->request('mobile');
        $captcha = $this->request->request('captcha');

        if(!empty($this->auth->mobile)){
            $this->error('已经绑定了手机号');
        }
        if (!$mobile || !$captcha) {
            $this->error(__('Invalid parameters'));
        }
        if (!Validate::regex($mobile, "^1\d{10}$")) {
            $this->error(__('Mobile is incorrect'));
        }
        if (\app\common\model\User::where('mobile', $mobile)->find()) {
            $this->error('该手机号已被其他用户绑定');
        }
        $result = Sms::check($mobile, $captcha, 'changemobile');
        if (!$result) {
            $this->error(__('Captcha is incorrect'));
        }
        $verification = $user->verification;
        $verification->mobile = 1;
        $user->verification = $verification;
        $user->mobile = $mobile;
        $user->save();

        Sms::flush($mobile, 'changemobile');

        //手机号奖励
        $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,18);
        if($task_rs === false){
            Db::rollback();
            return false;
        }
        $this->success('success',$this->userInfo('return'));
    }

    /**
     * 手机号注册来的,绑定微信
     *
     * @ApiMethod (POST)
     * @param string wechat_openid   微信openid
     */
    public function bindopenid()
    {
        $user = $this->auth->getUser();
        $wechat_openid = $this->request->request('wechat_openid');

        if(!empty($this->auth->wechat_openid)){
            $this->error('已经绑定了微信号');
        }
        if (!$wechat_openid) {
            $this->error(__('Invalid parameters'));
        }

        if (\app\common\model\User::where('wechat_openid', $wechat_openid)->find()) {
            $this->error('该微信号已被其他用户绑定');
        }

        $user->wechat_openid = $wechat_openid;
        $user->save();

        $this->success('success',$this->userInfo('return'));
    }

    /**
     * 第三方登录
     *
     * @ApiMethod (POST)
     * @param string $platform 平台名称
     * @param string $code     Code码
     */
    /*public function third()
    {
        $url = url('user/index');
//        $platform = $this->request->post("platform");
        $platform = 'wechat';
        $code = $this->request->post("code");
        $config = get_addon_config('third');
        if (!$config || !isset($config[$platform])) {
            $this->error(__('Invalid parameters'));
        }
        $app = new \addons\third\library\Application($config);
        //通过code换access_token和绑定会员
        $result = $app->{$platform}->getUserInfo(['code' => $code]);
        if ($result) {
            $loginret = \addons\third\library\Service::connect($platform, $result);
            if ($loginret) {
                $data = [
                    'userinfo'  => $this->auth->getUserinfo(),
                    'thirdinfo' => $result
                ];
                $this->success(__('Logged in successful'), $data);
            }
        }
        $this->error(__('Operation failed'), $url);
    }*/

    /**
     * 重置密码
     *
     * @ApiMethod (POST)
     * @param string $mobile      手机号
     * @param string $newpassword 新密码
     * @param string $captcha     验证码
     */
    public function resetpwd()
    {
        //$type = input("type");
        $type = 'mobile';
        $mobile = input("mobile");
        $email = input("email");
        $newpassword = input("newpassword");
        $captcha = input("captcha");
        if (!$newpassword || !$captcha) {
            $this->error(__('Invalid parameters'));
        }
        if ($type == 'mobile') {
            if (!Validate::regex($mobile, "^1\d{10}$")) {
                $this->error(__('Mobile is incorrect'));
            }
            $user = \app\common\model\User::getByMobile($mobile);
            if (!$user) {
                $this->error(__('User not found'));
            }
            $ret = Sms::check($mobile, $captcha, 'resetpwd');
            if (!$ret) {
                $this->error(__('Captcha is incorrect'));
            }
            Sms::flush($mobile, 'resetpwd');
        } else {
            if (!Validate::is($email, "email")) {
                $this->error(__('Email is incorrect'));
            }
            $user = \app\common\model\User::getByEmail($email);
            if (!$user) {
                $this->error(__('User not found'));
            }
            $ret = Ems::check($email, $captcha, 'resetpwd');
            if (!$ret) {
                $this->error(__('Captcha is incorrect'));
            }
            Ems::flush($email, 'resetpwd');
        }
        //模拟一次登录
        $this->auth->direct($user->id);
        $ret = $this->auth->changepwd($newpassword, '', true);
        if ($ret) {
            $this->success(__('Reset password successful'));
        } else {
            $this->error($this->auth->getError());
        }
    }

    /**
     * 修改密码
     *
     * @ApiMethod (POST)
     * @param string $newpassword 新密码
     * @param string $oldpassword 旧密码
     */
    public function changepwd(){
        $newpassword = input('newpassword');
        $oldpassword = input('oldpassword','');

        if (!$newpassword) {
            $this->error(__('Invalid parameters'));
        }
        if($this->auth->password && empty($oldpassword)){
            $this->error('原密码必填');
        }

        if(empty($this->auth->password)){
            $ret = $this->auth->changepwd($newpassword, '', true);
        }else{
            $ret = $this->auth->changepwd($newpassword,$oldpassword,false);
        }

        if ($ret) {
            $this->success(__('Reset password successful'));
        } else {
            $this->error($this->auth->getError());
        }
    }

    /**
     * 记录当前登陆的设备ID,设备信息,IP等
     */
    public function changeDeviceIp()
    {
        // 接口防并发
        if (!$this->apiLimit(1, 5000)) {
            return ;
        }

        $user = $this->auth->getUser();
        $ip = request()->ip();
        $deviceId = $this->request->request('device_id','');
        $phoneModel = $this->request->request('phone_model','');
        $brand = $this->request->request('brand','');
        $apiVersion = $this->request->request('api_version','');
        $deviceOs = $this->request->request('device_os','');

        if ($ip !== $user->loginip){
            $update = [];
            $update['id'] = $user->id;
            $update['loginip'] = $ip;
            \app\common\model\User::update($update);
        }

        $userDeviceInfo = UserDeviceInfo::get(['user_id'=>$user->u_id]);
        if (empty($userDeviceInfo)){
            $userDeviceInfo = new UserDeviceInfo();
            $userDeviceInfo->user_id = $user->u_id;
        }
        $userDeviceInfo->device_os = $deviceOs;
        $userDeviceInfo->device_id = $deviceId;
        $userDeviceInfo->phone_model = $phoneModel;
        $userDeviceInfo->brand = $brand;
        $userDeviceInfo->api_version = $apiVersion;
        $userDeviceInfo->save();

        //首页接口调用,这里不反回信息
//        $this->success("更新成功!");
    }

    //假注销
    public function cancleUser(){
        if (!$this->request->isPost()) {
            $this->error(__('Invalid parameters'));
        }
        //退出im
        $tenIm = new Tenim();
        $tenIm->loginoutim($this->auth->id);

        Db::name('user')->where('id',$this->auth->id)->update(['status'=>-1]);

        $this->auth->logout();
        $this->success('注销成功');
    }

    //修改用户活跃1
    public function useractive(){
        Db::name('user')->where('id',$this->auth->id)->update(['is_active' => 1,'active_time' => time()]);
        $this->success('success');
    }

    //APP 转化数据统计方案(即:APP 上报对接方案): 广告主上报激活数据,亿米平台搭建服务系统关联点击&下载数据和广告主提供的所有激活数据,将激活数据归因到对应广告。
    public function yimi_advert(){
        //http://trail.e.mi.com/global/log?appId={appid}&info={data}&conv_type={convType}&customer_id={customerId}
        $api_url      = 'http://trail.e.mi.com/global/log?';
        $api_url_test = 'http://trail.e.mi.com/global/test?';

        //应用id 1453045
        //秘钥A(encrypt_key):ZxdIaVHvFqSQYzWD
        //秘钥B(sign_key):uaeWeunykLRnkyLw
        $sign_key = 'uaeWeunykLRnkyLw'; //真的
        $encrypt_key = 'ZxdIaVHvFqSQYzWD';//真的

        $appid = '1453045';
        $conv_type = 'APP_REGISTER';
        $customer_id = '292232';

        //推荐模式
        /*$imei = md5('imei');
        $data = [
            'imei' => '91b9185dba1772851dd02b276a6c969e',
            'oaid' => '5fb96f268628810c',
            'conv_time' => '1504687208890',
            'client_ip' => '127.0.0.1',
            'ua' => 'Dalvik/2.1.0 (Linux; U; Android 11; M2012K11AC Build/RKQ1.200826.002)',
        ];*/

        //采用模式4
        /*
        $ua = input('ua','','trim');
        if(empty($ua)){
            return true;
        }
        $data = [
            'conv_time' => time().substr(microtime(),2,3),
            'client_ip' => request()->ip(),
            'ua' => $ua,
        ];
        */

        //采用模式3
        $oaid = input('oaid','','trim');
        if(empty($oaid)){
            return true;
        }
        $data = [
            'oaid' => $oaid,
            'conv_time' => time().substr(microtime(),2,3),
            'client_ip' => request()->ip(),
        ];

        $data_query = http_build_query($data);
        //dump($data_query);

        $property = $sign_key.'&'.urlencode($data_query);
        //dump($property);

        $signature = md5($property);
        //dump($signature);

        $base_data = $data_query .'&sign='.urlencode($signature);
        //echo $base_data;

        $info = urlencode(base64_encode($this->xor_enc($base_data, $encrypt_key)));
        //dump($info);

        $request_url = $api_url.'appId='.$appid.'&info='.$info.'&customer_id='.$customer_id.'&conv_type='.$conv_type;
        //echo $request_url;

        $result = curl_get($request_url);
        //dump($result);
        //日志
        $log = [
            'param' => $base_data,
            'url'   => $request_url,
            'result'=> $result,
            'createtime' => time(),
        ];
        Db::name('yimi_advert')->insertGetId($log);

        return true;
    }

    //亿米 异或加密,解密
    public function xor_enc($str,$key)
    {
        $crytxt = '';
        $keylen = strlen($key);
        for($i=0;$i<strlen($str);$i++)
        {
            $k = $i%$keylen;
            $crytxt .= $str[$i] ^ $key[$k];
        }
        return $crytxt;
    }

    //公众号获取openid
    public function getUserOpenid_gzh(){
        $configValue = Service::getConfig('wechat');

        $wechat = new Wechat($configValue['app_id'],$configValue['app_secret']);
        $rs = $wechat->getOpenid();
        $this->success('success',$rs);
    }
    /**
     * 微信内H5-JSAPI支付
     */
    public function jssdkBuildConfig() {
        $url = $this->request->request("url");

        $configValue = Service::getConfig('wechat');
        $wechat = new Wechat($configValue['app_id'],$configValue['app_secret']);

        $sign = $wechat->getSignPackage(urldecode($url));
        $this->success("获取成功!",$sign);
    }

    //苹果账号登录
    public function ioslogin(){
        $ios_openid = input('ios_openid','');
        if (!$ios_openid) {
            $this->error(__('Invalid parameters'));
        }

        $user = Db::name('user')->where(['ios_openid' => $ios_openid])->find();
        /*if (!$user) {
            $this->success('选择性别', ['code' => 5]);
        }*/
        if ($user) {
            if (!in_array($user->status,[1,2])) {
                $this->error(__('Account is locked'));
            }
            if ($user->frozentime > time()) {
                $this->error('您的账号已被封禁至' . date('Y-m-d H:i'));
            }
            //如果已经有账号则直接登录
            $ret = $this->auth->direct($user->id);
        } else {
            $reg_data = [
                'register_from' => input('register_from',''),
                'gender' => -1
            ];
            $ret = $this->auth->iosopenid_register($ios_openid,$reg_data);
        }
        if ($ret) {
            $data = $this->userInfo('return');
            $this->success(__('Logged in successful'), $data);
        } else {
            $this->error($this->auth->getError());
        }
    }

    //苹果账号注册
    public function iosregiter(){
        $ios_openid = input('ios_openid', '', 'trim');
        $gender = input('gender', -1, 'intval'); //性别:1=男,0=女
        if (!$ios_openid) {
            $this->error(__('Invalid parameters'));
        }
        if (!in_array($gender, [1, 0])) {
            $this->error('性别错误');
        }

        $user = Db::name('user')->where(['ios_openid' => $ios_openid])->find();
        if ($user) {
            $this->error('账号已经存在,请直接登录');
        }

        $reg_data = [
            'register_from' => input('register_from',''),
            'gender' => $gender
        ];
        $ret = $this->auth->iosopenid_register($ios_openid,$reg_data);

        if ($ret) {
            $data = $this->userInfo('return');
            $this->success(__('Logged in successful'), $data);
        } else {
            $this->error($this->auth->getError());
        }
    }
    
    //注册完善资料
    public function perfect_info() {
        $avatar = input('avatar', '', 'trim'); //头像
        $nickname = input('nickname', '', 'trim'); //昵称
        $birthday = input('birthday', '', 'strtotime'); //生日
        $hometown_cityid = input('hometown_cityid', '', 'trim'); //城市id
        $job_id = input('job_id', '', 'trim'); //职业id
        $character_id = input('character_id', '', 'trim'); //性格id
        $introcode = input('introcode', '', 'trim'); //邀请码

        $data = [];
        if ($avatar) {
            $data['avatar'] = $avatar;
        }
        if ($nickname !== '') {
            if (iconv_strlen($nickname, 'utf-8') > 10) {
                $this->error('昵称最多10个字~');
            }
            $data['nickname'] = $nickname;
        }
        if ($birthday) {
            $data['birthday'] = $birthday;
        }
        if ($hometown_cityid) {
            $count = Db::name('area')->where('id', $hometown_cityid)->count('id');
            if (!$count) {
                $this->error('城市不存在');
            }
            $data['hometown_cityid'] = $hometown_cityid;
        }
        if ($job_id) {
            $count = Db::name('enum_job')->where('id', $job_id)->count('id');
            if (!$count) {
                $this->error('职业不存在');
            }
            $data['job_id'] = $job_id;
        }
        if ($character_id) {
            $count = Db::name('enum_character')->where('id', $character_id)->count('id');
            if (!$count) {
                $this->error('性格不存在');
            }
            $data['character_id'] = $character_id;
        }
        if ($introcode && !$this->auth->intro_uid) {
            /*if ($this->auth->intro_uid) {
                $this->error('您已经填写过邀请人啦');
            }
            $intro_user = Db::name('user')->field('id, intro_uid')->where('introcode', $introcode)->find();
            if(!$intro_user){
                $this->error('不存在的邀请人');
            }
            if ($intro_user['id'] == $this->auth->id) {
                $this->error('不能填写自己邀请码');
            }
            if ($intro_user['intro_uid'] == $this->auth->id) {
                $this->error('不能填写下级邀请码');
            }

            $data['intro_uid'] = $intro_user['id'];
            $data['invite_time'] = time();*/

            $intro_user = Db::name('user')->field('id, intro_uid')->where('introcode', $introcode)->find();
            if ($intro_user && $intro_user['id'] != $this->auth->id && $intro_user['intro_uid'] != $this->auth->id) {
                $data['intro_uid'] = $intro_user['id'];
                $data['invite_time'] = time();
            }
        }

//        if (!$data) {
//            $this->error('请输入要修改的信息');
//        }

        //开启事务
        Db::startTrans();
        $update_rs = Db::name('user')->where('id',$this->auth->id)->setField($data);
        if($update_rs === false){
            Db::rollback();
            $this->error('修改失败');
        }
        /*if (isset($data['intro_uid'])) { //邀请人获得金币
            $intro_gold = config('site.intro_gold');
            if ($intro_gold > 0) {
                $wallet_rs = model('wallet')->lockChangeAccountRemain($data['intro_uid'],$this->auth->id,'gold',$intro_gold,64,'邀请注册奖励','user', $this->auth->id);
                if($wallet_rs['status'] === false){
                    Db::rollback();
                    $this->error($wallet_rs['msg']);
                }
            }
        }*/
        //上传头像加5金币
        if(isset($data['avatar'])){
            $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,19);
            if($task_rs === false){
                Db::rollback();
                $this->error('完成任务赠送奖励失败');
            }
        }
        if (isset($data['birthday'])) {
            //完成设置生日  +5金币
            $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,1);
            if($task_rs === false){
                Db::rollback();
                $this->error('完成任务赠送奖励失败');
            }
        }

        Db::commit();
        $this->success('修改成功');
    }

    //实名认证
    public function idcard_auth() {
        $info = Db::name('user_idconfirm')->where(['user_id' => $this->auth->id])->find();
//        if ($info && $info['status'] == 0) {
//            $this->error('您已经提交信息了,请进行人脸认证!');
//        }
        if ($info && $info['status'] == 1) {
            $this->error('您已通过审核!');
        }

        $nickname = input('nickname', '', 'trim'); // 姓名
        $idcard = input('idcard', '', 'trim'); // 身份证号
        if ($nickname === '') {
            $this->error('请输入姓名');
        }
        if (iconv_strlen($nickname, 'utf-8') > 50) {
            $this->error('请输入正确姓名');
        }
        if ($idcard === '') {
            $this->error('请输入身份证号');
        }
        if (iconv_strlen($idcard, 'utf-8') != 18) {
            $this->error('请输入正确身份证号');
        }
        $count = Db::name('user_idconfirm')->where(['idcard' => $idcard, 'user_id' => ['neq', $this->auth->id]])->count('id');
        if ($count) {
            $this->error('身份证号已存在');
        }

        $data = [];
        $data['truename'] = $nickname;
        $data['idcard'] = $idcard;

        //腾讯云身份证二要素认证
        $auth_restult = $this->userauth_tencent($idcard, $nickname);
        if ($auth_restult) {
            $data['status'] = 1; //通过
            $msg = '认证通过';
        } else {
            $data['status'] = 2; //不通过
            $msg = '认证不通过';
        }

        //开启事务
        Db::startTrans();
        if (!$info) { //未认证
            $data["user_id"] = $this->auth->id;
            $data["createtime"] = time();
            $res = Db::name('user_idconfirm')->insertGetId($data);
        } else { //认证被拒绝过
            $data['updatetime'] = time();
            $res = Db::name('user_idconfirm')->where(['id' => $info['id'], 'user_id' => $this->auth->id])->setField($data);
        }

        if (!$res) {
            Db::rollback();
            $this->error('认证失败');
        }
        $rt = Db::name('user')->where(['id' => $this->auth->id, 'idcard_status' => $this->auth->idcard_status])->setField('idcard_status', $data['status']);
        if ($rt === false) {
            Db::rollback();
            $this->error('认证失败');
        }

        if ($data['status'] == 1) {
            //完成实名认证  +20金币
            $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,4);
            if($task_rs === false){
                Db::rollback();
                $this->error('完成任务赠送奖励失败');
            }
            //系统消息
            $msg_id = \app\common\model\Message::addMessage($this->auth->id,'实名认证','实名认证已经审核通过');
        } else {
            //系统消息
            $msg_id = \app\common\model\Message::addMessage($this->auth->id,'实名认证','实名认证审核不通过');
        }

        Db::commit();
        $this->success($msg);
    }

    //腾讯云身份证二要素认证
    public function userauth_tencent($idcard = '', $nickname = '') {
//        require_once 'vendor/autoload.php';
        try {
            // 实例化一个认证对象,入参需要传入腾讯云账户secretId,secretKey,此处还需注意密钥对的保密
            // 密钥可前往https://console.cloud.tencent.com/cam/capi网站进行获取
            $config = config('tencent_im');
            $cred = new Credential($config['SecretId'], $config['SecretKey']);
            // 实例化一个http选项,可选的,没有特殊需求可以跳过
            $httpProfile = new HttpProfile();
            $httpProfile->setEndpoint("faceid.tencentcloudapi.com");

            // 实例化一个client选项,可选的,没有特殊需求可以跳过
            $clientProfile = new ClientProfile();
            $clientProfile->setHttpProfile($httpProfile);
            // 实例化要请求产品的client对象,clientProfile是可选的
            $client = new FaceidClient($cred, "", $clientProfile);

            // 实例化一个请求对象,每个接口都会对应一个request对象
            $req = new IdCardVerificationRequest();

            $params = array(
                "IdCard" => $idcard,
                "Name" => $nickname
            );
            $req->fromJsonString(json_encode($params));

            // 返回的resp是一个IdCardVerificationResponse的实例,与请求对象对应
            $resp = $client->IdCardVerification($req);

            // 输出json格式的字符串回包
//            print_r($resp->toJsonString());
            $result = json_decode($resp->toJsonString(), true);
            if (isset($result['Result']) && $result['Result'] == 0) {
                return 1; //通过
            } else {
                return 0;
            }
        }
        catch(TencentCloudSDKException $e) {
//            echo $e;
            return 0;
        }
    }

    //绑定支付宝
    public function addalipayaccount() {
        $id = input('id', 0, 'intval'); //账号id
        $type = input('type', 0, 'intval'); //账号类型:1=支付宝,2=银行卡
//        $type = 1;
        $realname = input('realname', '', 'trim'); //账户真实姓名
        $banknumber = input('banknumber', '', 'trim'); //卡号或账号
        $bankname = input('bankname', '', 'trim'); //银行名称

//        if ($id) {
//            $this->error('您已经拥有该类型账号,请联系后台解绑');
//        }
        if (!in_array($type, [1, 2])) {
            $this->error('参数错误');
        }
        /*if ($type == 1) {
            $this->error('暂不支持绑定支付宝');
        }*/
        if ($realname === '' || iconv_strlen($realname, 'utf-8') > 30) {
            $this->error('账号姓名1-30位');
        }
        if ($banknumber === '' || iconv_strlen($banknumber, 'utf-8') > 50) {
            $this->error('账号1-50位');
        }
        if ($type == 1) {
            if (iconv_strlen($bankname, 'utf-8') != 18) {
                $this->error('请输入正确身份证号');
            }
        }
        if ($type == 2) {
            if ($bankname === '' || iconv_strlen($bankname, 'utf-8') > 50) {
                $this->error('开户行名称1-50位');
            }
        }

        $user_bank = Db::name('user_bank');
        if ($id) {
            //编辑
            //查询账号是否存在
            $info = $user_bank->where(['id' => $id, 'user_id' => $this->auth->id])->find();
            if (!$info) {
                $this->error('账号不存在');
            }
            if ($info['type'] != $type) {
                $this->error('账号类型错误');
            }
            //查询是否未通过提现记录
            $count = Db::name('take_cash')->where(['user_id' => $this->auth->id, 'alipay_account' => $info['banknumber'], 'status' => 0])->count('id');
            if ($count) {
                $this->error('该账户有未审核的提现记录,暂不可修改');
            }

            $data['realname'] = $realname;
            $data['banknumber'] = $banknumber;
            $data['updatetime'] = time();
//            if ($type == 2) {
                $data['bankname'] = $bankname;
//            }

            $rs = $user_bank->where(['id' => $id, 'user_id' => $this->auth->id])->setField($data);
            if ($rs === false) {
                $this->error('修改失败');
            }

            $this->success('修改成功');
        } else {
            //添加
            //查询是否已经拥有该类型账号
            $count = $user_bank->where(['user_id' => $this->auth->id, 'type' => $type])->count('id');
            if ($count) {
                $this->error('您已经拥有该类型账号,请联系后台解绑');
            }

            $data['user_id'] = $this->auth->id;
            $data['type'] = $type;
            $data['realname'] = $realname;
            $data['banknumber'] = $banknumber;
//            if ($type == 2) {
                $data['bankname'] = $bankname;
//            }
            $data['createtime'] = time();

            $rs = $user_bank->insertGetId($data);
            if (!$rs) {
                $this->error('添加失败');
            }

            $this->success('添加成功');
        }
    }

    //查询支付宝/银行卡信息
    public function alipayinfo() {
        $type = input('type', 0, 'intval'); //账号类型:1=支付宝,2=银行卡
        $info = Db::name('user_bank')->field('id, realname, banknumber, bankname')->where(['user_id' => $this->auth->id, 'type' => $type])->find();
        if (!$info) {
            $info = (object)[];
        }

        $this->success('success', $info);
    }

    //申请真人认证
    public function realauth() {
        if ($this->auth->real_status == 1) {
            $this->error('您已经真人认证过了~');
        }
        if ($this->auth->avatar == config('avatar_boy') || $this->auth->avatar == config('avatar_girl')) {
            $this->error('请先上传真人头像~');
        }

        //获取token
        $token_url = 'https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/access_token?app_id='.config('tencent_yun')['secret_id'].'&secret='.config('tencent_yun')['secret_key'].'&grant_type=client_credential&version=1.0.0';
        $token_result = file_get_contents($token_url);
        if (!$token_result) {
            $this->error('您的网络开小差啦1~');
        }
        $token_result = json_decode($token_result, true);
        if ($token_result['code'] != 0) {
            $this->error('您的网络开小差啦2~');
        }
        $token = $token_result['access_token'];

        //获取签名鉴权参数ticket
        $ticket_url = 'https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/api_ticket?app_id='.config('tencent_yun')['secret_id'].'&access_token='.$token.'&type=SIGN&version=1.0.0';
        $ticket_result = file_get_contents($ticket_url);
        if (!$ticket_result) {
            $this->error('您的网络开小差啦3~');
        }
        $ticket_result = json_decode($ticket_result, true);
        if ($ticket_result['code'] != 0) {
            $this->error('您的网络开小差啦4~');
        }
        $ticket = $ticket_result['tickets'][0]['value'];

        //获取签名
        $sign_data = [
            'wbappid' => config('tencent_yun')['secret_id'],
            'userId'  => (string)$this->auth->id,
            'version' => '1.0.0',
            'ticket'  => $ticket,
            'nonce'   => Random::alnum(32)
        ];//p($sign_data);
        asort($sign_data); //p($sign_data);//排序
        $sign_string = join('', $sign_data);//p($sign_string);
        $sign = sha1($sign_string);//p($sign);

        //上传身份信息
        $orderNo = getMillisecond() . $this->auth->id . mt_rand(1, 1000); //商户请求的唯一标识
        $url = 'https://miniprogram-kyc.tencentcloudapi.com/api/server/getAdvFaceId?orderNo=' . $orderNo;

        $avatar = one_domain_image($this->auth->avatar);
        $avatar = str_replace('https', 'http', $avatar);
        $img = file_get_contents($avatar);
        $img = str_replace('data:image/jpg;base64', '', $img);
        $img = str_replace('\n', '', $img);
        $sourcePhotoStr = base64_encode($img);

        $data = [
            'webankAppId' => config('tencent_yun')['secret_id'],
            'orderNo' => $orderNo,
            'userId' => (string)$this->auth->id,
            'sourcePhotoStr' => $sourcePhotoStr,
            'sourcePhotoType' => 2,
            'version' => '1.0.0',
            'sign' => $sign,
            'nonce' => $sign_data['nonce']
        ];

        $rs = curl_post($url,json_encode($data, 320), ['Content-Type: application/json']);
        if (!$rs) {
            $this->error('您的网络开小差啦5~');
        }
        $rs = json_decode($rs, true);
        if (!$rs || $rs['code'] != 0) {
            $this->error('您的网络开小差啦6~');
        }

        $user_auth = [
            'user_id' => $this->auth->id,
            'certify_id' => $rs['result']['faceId'],
            'out_trade_no' => $data['orderNo'],
            'status' => 0,
            'createtime' => time(),
            'updatetime' => time()
        ];

        //开启事务
        Db::startTrans();
        //查询是否认证过
        $info = Db::name('user_auth')->where(['user_id' => $this->auth->id])->find();
        if ($info) {
            $auth_rs = Db::name('user_auth')->where(['id' => $info['id']])->setField($user_auth);
        } else {
            $auth_rs = Db::name('user_auth')->insertGetId($user_auth);
        }
        if (!$auth_rs) {
            Db::rollback();
            $this->error('您的网络开小差啦7~');
        }
        //修改用户表认证状态
        $user_rs = Db::name('user')->where(['id' => $this->auth->id])->setField('real_status', 0);
        if ($user_rs === false) {
            Db::rollback();
            $this->error('您的网络开小差啦8~');
        }

        Db::commit();

        $return_data = [
            'face_id' => $user_auth['certify_id'],
            'order_no' => $user_auth['out_trade_no'],
            'user_id' => (string)$this->auth->id,
            'nonce' => $sign_data['nonce'],
            'sign' => $sign
        ];
        $this->success('success', $return_data);
    }

    //查询真人认证结果
    public function getrealauthresult() {
        $user_auth = Db::name('user_auth')->where(['user_id' => $this->auth->id])->find();
        if (!$user_auth) {
            $this->success('尚未认证');
        }
        if ($user_auth['status'] == 1) {
            $this->success('真人认证通过');
        }
        if (!$user_auth['certify_id']) {
            $this->success('请先进行真人认证');
        }

        //获取token
        $token_url = 'https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/access_token?app_id='.config('tencent_yun')['secret_id'].'&secret='.config('tencent_yun')['secret_key'].'&grant_type=client_credential&version=1.0.0';
        $token_result = file_get_contents($token_url);
        if (!$token_result) {
            $this->error('您的网络开小差啦1~');
        }
        $token_result = json_decode($token_result, true);
        if ($token_result['code'] != 0) {
            $this->error('您的网络开小差啦2~');
        }
        $token = $token_result['access_token'];

        //获取签名鉴权参数ticket
        $ticket_url = 'https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/api_ticket?app_id='.config('tencent_yun')['secret_id'].'&access_token='.$token.'&type=SIGN&version=1.0.0';
        $ticket_result = file_get_contents($ticket_url);
        if (!$ticket_result) {
            $this->error('您的网络开小差啦3~');
        }
        $ticket_result = json_decode($ticket_result, true);
        if ($ticket_result['code'] != 0) {
            $this->error('您的网络开小差啦4~');
        }
        $ticket = $ticket_result['tickets'][0]['value'];

        //获取签名
        $sign_data = [
            'wbappid' => config('tencent_yun')['secret_id'],
            'orderNo'  => $user_auth['out_trade_no'],
            'version' => '1.0.0',
            'ticket'  => $ticket,
            'nonce'   => Random::alnum(32)
        ];//p($sign_data);
        asort($sign_data); //p($sign_data);//排序
        $sign_string = join('', $sign_data);//p($sign_string);
        $sign = sha1($sign_string);//p($sign);

        //人脸核身结果查询
        $url = 'https://miniprogram-kyc.tencentcloudapi.com/api/v2/base/queryfacerecord?orderNo=' . $user_auth['out_trade_no'];
        $data = [
            'appId' => config('tencent_yun')['secret_id'],
            'version' => '1.0.0',
            'nonce' => $sign_data['nonce'],
            'orderNo' => $user_auth['out_trade_no'],
            'sign' => $sign
        ];

        $rs = curl_post($url,json_encode($data, 320), ['Content-Type: application/json']);
        if (!$rs) {
            $this->error('您的网络开小差啦5~');
        }
        $rs = json_decode($rs, true);
        if (!$rs || $rs['code'] != 0) {
            $this->error($rs['msg']);
        }
        if ($rs['result']['liveRate'] >= 90 && $rs['result']['similarity'] >= 90) {
            $edit_data['status'] = 1;
            $msg = '真人认证成功';
        } else {
            $edit_data['status'] = 2;
            $edit_data['certify_id'] = '';
            $edit_data['out_trade_no'] = '';
            $msg = '真人认证失败';
        }

        $edit_data['updatetime'] = time();
        //开启事务
        Db::startTrans();
        //修改认证信息
        $result = Db::name('user_auth')->where(['user_id' => $this->auth->id, 'status' => $user_auth['status']])->setField($edit_data);
        if (!$result) {
            Db::rollback();
            $this->error('查询认证结果失败2');
        }
        //修改用户信息
        $rs = Db::name('user')->where(['id' => $this->auth->id])->setField('real_status', $edit_data['status']);
        if (!$rs) {
            Db::rollback();
            $this->error('查询认证结果失败3');
        }
        if ($edit_data['status'] == 1) { //通过
            //tag任务赠送金币
            //真人认证奖励
            $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,20);
            if($task_rs === false){
                Db::rollback();
                $this->error('完成任务赠送奖励失败');
            }
            //系统消息
            $msg_id = \app\common\model\Message::addMessage($this->auth->id,'真人认证','真人认证已经审核通过');
        } else {
            //系统消息
            $msg_id = \app\common\model\Message::addMessage($this->auth->id,'真人认证','真人认证审核不通过');
        }

        Db::commit();
        $this->success($msg);
    }

    //客服
    public function kefu() {
        $type = input('type', 0, 'intval'); //客服位置: 0客服中心  1充值客服
        if (!in_array($type, [0, 1])) {
            $this->error('您的网络开小差啦~');
        }
        if ($type == 0) {
            $user_id = config('site.customer_service_id') ? : 0; //指定客服id
        } else {
            $user_id = config('site.pay_customer_service_id') ? : 0; //指定客服id
        }

        $list = Db::name('user')->field('id')->where(['status' => 1, 'is_kefu' => 1, 'id' => $user_id])->select();
        if (!$list) {
            $this->success('success', $list);
        }

        foreach ($list as $k => &$v) {
            $v['nickname'] = '客服' . ($k + 1);
            $v['avatar'] = config('avatar_girl');
        }

        $this->success('success', $list);
    }

    //海报背景图
    public function posterlist() {
        $list = config('site.intro_images');
        if (!$list) {
            $this->success('success', (object)[]);
        }

        foreach ($list as &$v) {
            $v = config('img_url') . $this->createposter(config('site.domain_cdnurl') . $v);
        }

        $this->success('success', $list);
    }
    
    //生成海报
    public function createposter($image = '') {
//        $image = input('image', '', 'trim');
//        if (!$image) {
//            $this->error('您的网络开小差啦~');
//        }

        $haibao = $this->haibao($this->auth->id,['introcode'=>$this->auth->introcode, 'background' => $image]);
        return $haibao;
//        $this->success('success', $haibao);
    }

    //注册设置性别
    public function setgender() {
        $user_id = $this->auth->id;
        /*if (in_array($user_id, [0, 1])) {
            $this->error('性别不能修改~');
        }*/
        $gender = input('gender', -1, 'intval'); //性别:1=男,0=女
        if (!in_array($gender, [1, 0])) {
            $this->error('性别错误');
        }

        $edit_data['gender'] = $gender;
        $edit_data['avatar'] = $gender == 1 ? config('avatar_boy') : config('avatar_girl'); //头像

        $rs = Db::name('user')->where(['id' => $user_id, 'gender' => $this->auth->gender])->setField($edit_data);
        if (!$rs) {
            $this->error('您的网络开小差啦~');
        }

        $data = $this->userInfo('return');
        $data['gender'] = $edit_data['gender'];
        $data['avatar'] = $edit_data['avatar'];
//        $this->success('success', $data);

        // 如果是女用户,则停止账户使用
        if ($gender == 0){
            Db::name('user')->where('id',$user_id)->update(['status'=>0,'is_closed'=>1]);//金庸
            Db::name('user_token')->where('user_id',$user_id)->delete();//金庸
        }

        //领取任务奖励
        $task_id = 22; // 任务ID
        // 查询任务信息
        $taskInfo = $this->taskModel->where(["id"=>$task_id])->find();
        if(!$taskInfo) {
//            $this->error("任务信息未找到!");
            $this->success('success', $data);
        }
        // 查询用户完成情况
        $where = [];
        $where["user_id"] = $user_id;
        $where["task_id"] = $task_id;
        $where["is_finish"] = 1;
        if($taskInfo["type_id"] == 2){
            $where["finish_date"] = date("Ymd");
        }
        $tasklogInfo = $this->tasklogModel->where($where)->find();
        if(!$tasklogInfo) {
//            $this->error("任务还未完成哦!");
            $this->success('success', $data);
        }
        if($tasklogInfo["is_reward"] == 1) {
//            $this->error("任务奖励已领取,请勿重复领取!");
            $this->success('success', $data);
        }
        Db::startTrans();
        // 增加用户经验值
        //$res1 = \app\common\model\User::addEmpirical($user_id,$taskInfo["exp"]);
        $res1['status'] = true;
        if ($gender == 1) {
            //男用户获得金币
            $res1 = model('wallet')->lockChangeAccountRemain($user_id,0, 'gold', $taskInfo["exp"], 61, '完成' . $taskInfo['name'] . '任务', 'task_log', $tasklogInfo['id']);
            if ($res1['status'] === false) {
                Db::rollback();
//                    $this->error($res1['msg']);
                $this->success('success', $data);
            }
        } elseif ($gender == 0) {
            $bili  = config('site.money_to_gold');    //钱和金币兑换比例
            if ($bili > 0) {
                //女用户获得钱
                $money = bcdiv($taskInfo['exp'], $bili, 2);
                if ($money > 0) {
                    $res1 = model('wallet')->lockChangeAccountRemain($user_id,0, 'money', $money, 67, '完成' .$taskInfo['name'] . '任务', 'task_log', $tasklogInfo['id']);
                    if ($res1['status'] === false) {
                        Db::rollback();
//                            $this->error($res1['msg']);
                        $this->success('success', $data);
                    }
                }
            }
        }
        // 更新奖励领取状态
        $res2 = $this->tasklogModel->update(["is_reward"=>1],["task_id"=>$task_id,"user_id"=>$user_id]);
        //系统消息
        $msg_id = \app\common\model\Message::addMessage($user_id,'任务奖励','完成' . $taskInfo['name'] . '任务,获得任务奖励');
        if($res1['status'] === true && $res2) {
            Db::commit();
//                $this->success("领取成功!");
            $this->success('success', $data);
        } else {
            Db::rollback();
//                $this->error("领取失败!");
            $this->success('success', $data);
        }
    }

    //真人认证后修改头像前比对
    public function realavatar_auit() {
        if ($this->auth->real_status != 1) {
            $this->error('尚未通过真人认证');
        }
        $avatar = input('avatar', '', 'trim'); //头像地址
        if ($avatar === '') {
            $this->error('参数缺失');
        }
        $avatar = one_domain_image($avatar);
        $now_avatar = one_domain_image($this->auth->avatar);
        if ($avatar == $now_avatar) {
            $this->error('头像未改变');
        }
        //腾讯云人脸识别
        $result = $this->face_tencent($now_avatar, $avatar); //1通过 0拒绝

        $this->success('结果', $result);
    }

    //真人认证后修改头像
    public function editrealavatar() {
        if ($this->auth->real_status != 1) {
            $this->error('尚未通过真人认证');
        }
        $avatar = input('avatar', '', 'trim'); //头像地址
        if ($avatar === '') {
            $this->error('参数缺失');
        }
        $avatar = one_domain_image($avatar);
        $now_avatar = one_domain_image($this->auth->avatar);
        if ($avatar == $now_avatar) {
            $this->error('头像未改变');
        }
        //腾讯云人脸识别
        $auit_result = $this->face_tencent($now_avatar, $avatar); //1通过 0拒绝
        if ($auit_result != 1) {
            $this->success('提示', ['code' => 2]);
        }

        $data['avatar'] = $avatar;

        $user_result = Db::name('user')->where(['id' => $this->auth->id])->setField($data);
        if (!$user_result) {
            $this->error('修改失败');
        }

        $this->success('修改成功');
    }

    //真人认证后修改头像并取消真人认证
    public function editrealavatarcancelauit() {
        if ($this->auth->real_status != 1) {
            $this->error('尚未通过真人认证');
        }
        $avatar = input('avatar', '', 'trim'); //头像地址
        if ($avatar === '') {
            $this->error('参数缺失');
        }
        $avatar = one_domain_image($avatar);
        $now_avatar = one_domain_image($this->auth->avatar);
        if ($avatar == $now_avatar) {
            $this->error('头像未改变');
        }

        $data['avatar'] = $avatar;
        $data['real_status'] = -1;

        //开启事务
        Db::startTrans();
        $user_result = Db::name('user')->where(['id' => $this->auth->id])->setField($data);
        if (!$user_result) {
            Db::rollback();
            $this->error('修改失败');
        }
        $user_auth_result = Db::name('user_auth')->where(['user_id' => $this->auth->id])->delete();
        if (!$user_auth_result) {
            Db::rollback();
            $this->error('修改失败');
        }

        Db::commit();
        $this->success('修改成功');
    }
    
    //腾讯云人脸识别
    public function face_tencent($urla = '', $urlb = '') {
//        require_once 'vendor/autoload.php';
        try {
            // 实例化一个认证对象,入参需要传入腾讯云账户secretId,secretKey,此处还需注意密钥对的保密
            // 密钥可前往https://console.cloud.tencent.com/cam/capi网站进行获取
            $config = config('tencent_im');
            $cred = new Credential($config['SecretId'], $config['SecretKey']);
            // 实例化一个http选项,可选的,没有特殊需求可以跳过
            $httpProfile = new HttpProfile();
            $httpProfile->setEndpoint("iai.tencentcloudapi.com");

            // 实例化一个client选项,可选的,没有特殊需求可以跳过
            $clientProfile = new ClientProfile();
            $clientProfile->setHttpProfile($httpProfile);
            // 实例化要请求产品的client对象,clientProfile是可选的
            $client = new IaiClient($cred, "ap-beijing", $clientProfile);

            // 实例化一个请求对象,每个接口都会对应一个request对象
            $req = new CompareFaceRequest();

            $params = array(
                "UrlA" => $urla,
                "UrlB" => $urlb,
                "FaceModelVersion" => "3.0"
            );
            $req->fromJsonString(json_encode($params));

            // 返回的resp是一个CompareFaceResponse的实例,与请求对象对应
            $resp = $client->CompareFace($req);

            // 输出json格式的字符串回包
//            print_r($resp->toJsonString());
            $result = json_decode($resp->toJsonString(), true);
            //3.0版本误识率千分之一对应分数为40分,误识率万分之一对应分数为50分,误识率十万分之一对应分数为60分。 一般超过50分则可认定为同一人。
            if (isset($result['Score']) && $result['Score'] >= 60) {
                return 1; //通过
            } else {
                return 0;
            }
        }
        catch(TencentCloudSDKException $e) {
//            echo $e;
            return 0;
        }
    }

    //修改城市
    public function editcity() {
        $name = input('name', '', 'trim'); //城市名
        if ($name === '') {
            $this->error('参数缺失');
        }

        $hometown_cityid = Db::name('area')->where(['name' => $name])->value('id');
        if (!$hometown_cityid) {
            $this->success('修改成功');
        }

        Db::name('user')->where(['id' => $this->auth->id])->setField('hometown_cityid', $hometown_cityid);
        $this->success('修改成功');
    }

    //搜索用户
    public function searchuser() {
        $keyword = input('keyword', '', 'trim'); //昵称或ID
        if ($keyword === '') {
            $this->error('请输入关键字');
        }

        $id = Db::name('user')->where(['nickname|username' => $keyword])->value('id');
        $id = $id ? : 0;

        $this->success('用户', $id);
    }

    //绑定支付宝账号信息
    public function bindalipayaccount() {
        $mt_user_bank = Db::name('user_bank');
        $count = $mt_user_bank->where(['user_id' => $this->auth->id, 'type' => 1])->count();
        if ($count) {
            $this->error('您已绑定支付宝啦');
        }

        $auth_code = input('auth_code', '', 'trim');
        if (!$auth_code) {
            $this->error('授权码缺失');
        }
        //获取支付宝用户信息
        $rs = getAlipayInfo($auth_code);
        if ($rs['status'] == 0) {
            $this->error($rs['info']);
        }
        $rs = $rs['data'];
        /*
         * Array(
            [alipay_user_info_share_response] => Array
                (
                    [code] => 10000
                    [msg] => Success
                    [avatar] => https://tfs.alipayobjects.com/images/partner/T1BQJsXhhbXXXXXXXX  头像
                    [city] => 临沂市       市名称。
                    [gender] => m       【注意】只有is_certified为T的时候才有意义,否则不保证准确性. 性别(F:女性;M:男性)。
                    [is_certified] => T   是否通过实名认证。T是通过 F是没有实名认证。
                    [is_student_certified] => F  是否是学生 T是 F否
                    [nick_name] => 风的追求         用户昵称
                    [province] => 山东省        省份名称
                    [user_id] => 2088902918001020  支付宝用户的userId
                    [user_status] => T  用户状态(Q/T/B/W)。 Q代表快速注册用户 T代表已认证用户 B代表被冻结账户 W代表已注册,未激活的账户
                    [user_type] => 2  用户类型(1/2) 1代表公司账户2代表个人账户
                )
            )
        */

        $data['banknumber'] = $rs['user_id']; //支付宝用户id
        if (!$data['banknumber']) {
            $this->error('获取用户信息失败');
        }
        $bank_number_count = $mt_user_bank->where(['banknumber' => $data['banknumber'], 'type' => 1])->count();
        if ($bank_number_count) {
            $this->error('该支付宝账号已经绑定用户, 请先解除绑定');
        }

        if (isset($rs['nick_name'])) {
            $data['realname'] = $rs['nick_name'];  //支付宝用户昵称
        }

        $data['user_id'] = $this->auth->id;
        $data['createtime'] = time();
        $data['type'] = 1;

        $rt = $mt_user_bank->insertGetId($data);
        if (!$rt) {
            $this->error('绑定失败');
        }

        $this->success('绑定成功');
    }

    //添加打招呼内容
    public function addgreetcontent() {
        $type = input('type', 0, 'intval'); //类型:0=文字,1=语音,2=相册
        $title = input('title', '', 'trim'); //标题(type=1必传)
        $content = input('content', '', 'trim'); //内容
        $duration = input('duration', 0, 'intval'); //时长(type=1必传)

        if (!in_array($type, [0, 1, 2])) {
            $this->error('您的网络开小差了');
        }
        if ($content === '') {
            $this->error('请设置打招呼内容');
        }
        if (iconv_strlen($content, 'utf-8') > 255) {
            $this->error('打招呼内容最多255位');
        }
        if ($type == 1) {
            if ($title === '') {
                $this->error('请输入语音名称');
            }
            if (iconv_strlen($title, 'utf-8') > 50) {
                $this->error('语音名称最多50字');
            }
            if (!$duration) {
                $this->error('参数缺失');
            }
        }

        $count = Db::name('user_greet_content')->where(['user_id' => $this->auth->id, 'type' => $type])->count('id');
        if ($count > 10) {
            $this->error('同一类型打招呼最多设置10条');
        }

        $data['user_id'] = $this->auth->id;
        $data['type'] = $type;
        $data['content'] = $content;
        if ($type == 1) {
            $data['title'] = $title;
            $data['duration'] = $duration;
        }
        $data['createtime'] = time();
        //查询是否有默认打招呼内容
        $default_greet_count = Db::name('user_greet_content')->where(['user_id' => $this->auth->id, 'is_default' => 1])->count('id');
        if (!$default_greet_count) {
            $data['is_default'] = 1;
        }

        $rs = Db::name('user_greet_content')->insertGetId($data);
        if (!$rs) {
            $this->error('您的网络开小差了');
        }

        $this->success('设置成功');
    }

    //查询打招呼内容
    public function getgreetcontent() {
        $type = input('type', 0, 'intval'); //类型:0=文字,1=语音,2=相册,3=所有招呼
        if (!in_array($type, [0, 1, 2, 3])) {
            $this->error('您的网络开小差了');
        }

        if ($type == 3) {
            $list = Db::name('user_greet_content')->where(function ($query) {
                $query->where('user_id', $this->auth->id)->where('type', 'neq', 1);
            })->whereOr(function ($query) {
                $query->where('user_id', $this->auth->id)->where('type', 1)->where('is_default', 1);
            })->select();
        } else {
            $where['user_id'] = $this->auth->id;
            $where['type'] = $type;

            $list = Db::name('user_greet_content')->where($where)->select();
        }
        if ($list) {
            foreach ($list as &$v) {
                if ($v['type'] != 0) {
                    $v['content'] = one_domain_image($v['content']);
                }
            }
        }

        $this->success('打招呼内容', $list);
    }
    
    //设置默认打招呼内容
    public function setdefaultgreet() {
        $id = input('id', 0, 'intval'); //打招呼id
        if (!$id) {
            $this->error('您的网络开小差了');
        }

        $count = Db::name('user_greet_content')->where(['user_id' => $this->auth->id, 'id' => $id])->count('id');
        if (!$count) {
            $this->error('您的网络开小差了');
        }

        //开启事务
        Db::startTrans();
        //清除之前默认
        $rs = Db::name('user_greet_content')->where(['user_id' => $this->auth->id])->setField('is_default', 0);
        if ($rs === false) {
            Db::rollback();
            $this->error('您的网络开小差了');
        }
        //设置
        $rt = Db::name('user_greet_content')->where(['user_id' => $this->auth->id, 'id' => $id])->setField('is_default', 1);
        if ($rt === false) {
            Db::rollback();
            $this->error('您的网络开小差了');
        }

        Db::commit();
        $this->success('设置成功');
    }

    //删除打招呼内容
    public function deldefaultgreet() {
        $id = input('id', 0, 'intval'); //打招呼id
        if (!$id) {
            $this->error('您的网络开小差了');
        }

        $mt_user_greet_content = Db::name('user_greet_content');
        $info = $mt_user_greet_content->where(['user_id' => $this->auth->id, 'id' => $id])->find();
        if (!$info) {
            $this->error('您的网络开小差了');
        }

        //开启事务
        Db::startTrans();
        //删除
        $rs = $mt_user_greet_content->where(['user_id' => $this->auth->id, 'id' => $id])->delete();
        if ($rs === false) {
            Db::rollback();
            $this->error('您的网络开小差了');
        }
        //若为默认打招呼内容则重新设置一条
        if ($info['is_default'] == 1) {
            $first_greet = $mt_user_greet_content->where(['user_id' => $this->auth->id])->find();
            if ($first_greet) {
                $rt = $mt_user_greet_content->where(['user_id' => $this->auth->id, 'id' => $first_greet['id']])->setField('is_default', 1);
                if ($rt === false) {
                    Db::rollback();
                    $this->error('您的网络开小差了');
                }
            }
        }

        Db::commit();
        $this->success('删除成功');
    }
}