123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- <?php
- namespace app\common\service;
- use fast\Random;
- use think\Exception;
- class UserService
- {
- /**
- * 获取请求参数
- * @return void
- */
- public function faceAuth($params=[])
- {
- $result = [
- 'status' => 1,
- 'msg' => '获取成功',
- 'data' => [],
- ];
- try {
- $idCard = isset($params['id_card']) ? $params['id_card'] : '';
- $realName = isset($params['real_name']) ? $params['real_name'] : '';
- $userId = isset($params['user_id']) ? $params['user_id'] : 0;
- $tencentConfig = config('tencent_yun');
- $sercrtId = isset($tencentConfig['SecretId']) ? $tencentConfig['SecretId'] : '';
- $sercrtKey = isset($tencentConfig['SecretKey']) ? $tencentConfig['SecretKey'] : '';
- //获取token
- $token_url = 'https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/access_token?app_id='.$sercrtId.'&secret='.$sercrtKey.'&grant_type=client_credential&version=1.0.0';
- $token_result = file_get_contents($token_url);
- if (!$token_result) {
- throw new Exception('您的网络开小差啦1~');
- }
- $token_result = json_decode($token_result, true);
- if ($token_result['code'] != 0) {
- throw new Exception('您的网络开小差啦2~');
- }
- $token = $token_result['access_token'];
- //获取签名鉴权参数ticket
- $ticket_url = 'https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/api_ticket?app_id='.$sercrtId.'&access_token='.$token.'&type=SIGN&version=1.0.0';
- $ticket_result = file_get_contents($ticket_url);
- if (!$ticket_result) {
- throw new Exception('您的网络开小差啦3~');
- }
- $ticket_result = json_decode($ticket_result, true);
- if ($ticket_result['code'] != 0) {
- throw new Exception('您的网络开小差啦4~');
- }
- $ticket = $ticket_result['tickets'][0]['value'];
- //获取签名
- $sign_data = [
- 'wbappid' => $sercrtId,
- 'userId' => (string)$userId,
- 'version' => '1.0.0',
- 'ticket' => $ticket,
- 'nonce' => Random::alnum(32)
- ];
- asort($sign_data);//排序
- $sign_string = join('', $sign_data);
- $sign = sha1($sign_string);
- //上传身份信息
- $orderNo = getMillisecond() . $userId . mt_rand(1, 1000); //商户请求的唯一标识
- $url = 'https://miniprogram-kyc.tencentcloudapi.com/api/server/getAdvFaceId?orderNo='.$orderNo;
- $data = [
- 'webankAppId' => $sercrtId,
- 'orderNo' => $orderNo,
- 'userId' => (string)$userId,
- 'name' => $realName,//姓名
- 'idNo' => $idCard,//证件号
- 'version' => '1.0.0',
- 'sign' => $sign,
- 'nonce' => $sign_data['nonce']
- ];
- $res = curl_post($url,json_encode($data, 320), ['Content-Type: application/json']);
- $result['data'] = json_decode($res,true);
- $result['data']['nonce'] = $sign_data['nonce'];
- $result['data']['sign'] = $sign;
- } catch (Exception $e) {
- $result['status'] = 0;
- $result['msg'] = $e->getMessage();
- }
- return $result;
- }
- /**
- * 阿里实名认证二要素
- * https://market.aliyun.com/products/57000002/cmapi026109.html
- * @return void
- */
- public function aliCheck($params=[])
- {
- $result = [
- 'status' => 1,
- 'msg' => '',
- 'data' => [],
- ];
- try {
- $idCard = isset($params['id_card']) ? $params['id_card'] : '';
- $realName = isset($params['real_name']) ? $params['real_name'] : '';
- $aliyunConfig = config('ali_yun');
- $host = "https://eid.shumaidata.com";
- $path = "/eid/check";
- $method = "POST";
- $appcode = isset($aliyunConfig['app_code']) ? $aliyunConfig['app_code'] : '';
- $headers = ['Content-Type: application/json'];
- array_push($headers, "Authorization:APPCODE " . $appcode);
- $querys = "idcard=".$idCard."&name=".urlencode($realName);
- $bodys = "";
- $url = $host . $path . "?" . $querys;
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($curl, CURLOPT_FAILONERROR, false);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- //设定返回信息中是否包含响应信息头,启用时会将头文件的信息作为数据流输出,true 表示输出信息头, false表示不输出信息头
- //如果需要将字符串转成json,请将 CURLOPT_HEADER 设置成 false
- curl_setopt($curl, CURLOPT_HEADER, false);
- if (1 == strpos("$".$host, "https://"))
- {
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
- }
- $returnRes = curl_exec($curl);
- curl_close($curl);
- $resultData = json_decode($returnRes,true);
- if (isset($resultData['code']) && !empty($resultData['code'])) {
- throw new Exception($resultData['message']);
- }
- if (isset($resultData['result']['res']) && $resultData['result']['res'] != 1) {
- throw new Exception($resultData['result']['description']);
- }
- $result['data'] = $resultData;
- } catch (Exception $e) {
- $result['status'] = 0;
- $result['msg'] = $e->getMessage();
- }
- return $result;
- }
- /**
- * 阿里银行卡三要素
- * https://market.aliyun.com/products/57000002/cmapi00063283.html
- * @return void
- */
- public function bankCheck($params=[])
- {
- $result = [
- 'status' => 1,
- 'msg' => '',
- 'data' => [],
- ];
- try {
- $bankcard = isset($params['bank_no']) ? $params['bank_no'] : '';//银行卡
- $idCard = isset($params['id_card']) ? $params['id_card'] : '';//身份证号
- $realName = isset($params['real_name']) ? $params['real_name'] : '';//姓名
- $aliyunConfig = config('ali_yun');
- $host = "https://sxbank3v2.market.alicloudapi.com";
- $path = "/bankcard3/check";
- $method = "POST";
- $appcode = isset($aliyunConfig['app_code']) ? $aliyunConfig['app_code'] : '';
- $headers = [];
- array_push($headers, "Authorization:APPCODE " . $appcode);
- $querys = "bankcard=".$bankcard."&idCard=".$idCard."&name=".urlencode($realName);
- $bodys = "";
- $url = $host . $path . "?" . $querys;
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($curl, CURLOPT_FAILONERROR, false);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- //设定返回信息中是否包含响应信息头,启用时会将头文件的信息作为数据流输出,true 表示输出信息头, false表示不输出信息头
- //如果需要将字符串转成json,请将 CURLOPT_HEADER 设置成 false
- curl_setopt($curl, CURLOPT_HEADER, false);
- if (1 == strpos("$".$host, "https://"))
- {
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
- }
- $returnRes = curl_exec($curl);
- curl_close($curl);
- $resultData = json_decode($returnRes,true);
- if (isset($resultData['code']) && !empty($resultData['code'])) {
- throw new Exception($resultData['msg']);
- }
- $aliResult = isset($resultData['data']['result']) ? $resultData['data']['result'] : 0;
- if ($aliResult != 1) {
- //核查结果(1:一致,2:不一致,3:无效卡号或卡状态异常)
- $aliMsg = '';
- if ($aliResult == 2) {
- $aliMsg = '不一致';
- } elseif ($aliResult == 3) {
- $aliMsg = '无效卡号或卡状态异常';
- }
- throw new Exception($aliMsg);
- }
- $result['data'] = $resultData;
- } catch (Exception $e) {
- $result['status'] = 0;
- $result['msg'] = $e->getMessage();
- }
- return $result;
- }
- /**
- * 邀请赠送金额
- * @return void
- */
- public function inviteMoney($params=[])
- {
- $result = [
- 'status' => 1,
- 'msg' => '',
- 'data' => [],
- ];
- try {
- $userId = isset($params['user_id']) ? $params['user_id'] : 0;
- if (!empty($userId)) {
- $field = 'id,pre_userid,money';
- $where['id'] = $userId;
- $user = model('User')->field($field)->where($where)->find();
- if (!empty($user)) {
- if (!empty($user['pre_userid'])) {
- $preWhere['id'] = $user['pre_userid'];
- $preUser = model('User')->field($field)->where($preWhere)->find();
- if (!empty($preUser)) {
- //查看是否赠送过金额
- $moneyLogWhere['invite_user_id'] = $userId;
- $moneyLogWhere['type'] = 103;
- $moneyLog = model('UserMoneyLog')->where($moneyLogWhere)->find();
- if (empty($moneyLog)) {
- //充值金额满足才能获取充值奖励
- $inviteMaxMoney = config('site.invite_max_money');
- $recharWhere['user_id'] = $userId;
- $recharWhere['status'] = 1;
- $userRecharMoney = model('RecharOrder')->where($recharWhere)->sum('money');
- if ($userRecharMoney >= $inviteMaxMoney) {
- $money = config('site.invite_money');
- if ($money > 0) {
- $remark = '邀请推广充值';
- $res = model('Wallet')->lockChangeAccountRemain($preUser['id'],$money,'+',$preUser['money'],$remark,103,'money',$userId);
- if (!$res['status']) {
- throw new Exception($res['msg']);
- }
- }
- $inviteGift = config('site.invite_gift');
- if ($inviteGift > 0) {
- $inviteGiftNum = config('site.invite_gift_num');
- $giftWhere['id'] = $inviteGift;
- $gift = model('Gift')->where($giftWhere)->find();
- if (!empty($gift) && $inviteGiftNum > 0) {
- $userGiftBackWhere['user_id'] = $preUser['id'];
- $userGiftBackWhere['invite_user_id'] = $userId;
- $userGiftBackWhere['get_way'] = 5;
- $userGiftBack = model('GiftBack')->where($userGiftBackWhere)->find();
- if (empty($userGiftBack)) {
- for($i=1;$i<=$inviteGiftNum;$i++) {
- $giftBack[] = [
- 'user_id' => $preUser['id'],//用户ID
- 'gift_id' => $inviteGift,//礼物ID
- 'name' => $gift['name'],//礼物名称
- 'image' => $gift['image'],//礼物静图
- 'gif_image' => $gift['special'],//礼物动图
- 'value' => $gift['value'],//购买价值
- 'number' => 1,//数量
- 'get_way' => 5,//获得途径:1=活动获得,2=充值购买,3=爵位赠送,4=签到赠送,5=邀请获得
- 'createtime' => time(),
- ];
- }
- //$giftBackRes = model('GiftBack')->insertGetId($giftBack);
- $giftBackRes = model('GiftBack')->insertAll($giftBack);
- if (!$giftBackRes) {
- throw new Exception('赠送礼物失败');
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- } catch (Exception $e) {
- $result['status'] = 0;
- $result['msg'] = $e->getMessage();
- }
- return $result;
- }
- /**
- * 获取用户家族角色
- * @return void
- */
- public function getGuildRole($params=[])
- {
- $result = [
- 'status' => 1,
- 'msg' => '操作成功',
- 'data' => [],
- ];
- try {
- $userId = isset($params['user_id']) ? $params['user_id'] : 0;
- $guildId = isset($params['guild_id']) ? $params['guild_id'] : 0;
- if (empty($userId) || empty($guildId)) {
- throw new Exception('参数错误');
- }
- $guildWhere['id'] = $guildId;
- $guild = model('Guild')->where($guildWhere)->find();
- if (empty($guild)) {
- throw new Exception('未找到家族信息');
- }
- $guildRole = 4;//家族角色:1组长,2副族长,3成员,4非成员
- if ($userId == $guild['user_id']) {
- $guildRole = 1;
- }
- $guildMemberWhere['guild_id'] = $guildId;
- $guildMemberWhere['user_id'] = $userId;
- $guildMember = model('GuildMember')->field('id,role')->where($guildMemberWhere)->find();
- if (!empty($guildMember)) {
- if ($guildMember['role'] == 0) {
- $guildRole = 3;
- } elseif ($guildMember['role'] == 1) {
- $guildRole = 2;
- }
- }
- $result['data'] = [
- 'guild_role' => $guildRole,
- ];
- } catch (Exception $e) {
- $result['status'] = 0;
- $result['msg'] = $e->getMessage();
- }
- return $result;
- }
- /**
- * 更新用户消费/魅力/礼物数据
- * @return void
- */
- public function updateGuildMember($params=[])
- {
- $result = [
- 'status' => 1,
- 'msg' => '操作成功',
- 'data' => [],
- ];
- try {
- $userId = isset($params['user_id']) ? $params['user_id'] : 0;
- if (!empty($userId)) {
- $guildMemberWhere['user_id'] = $userId;
- $guildMember = model('GuildMember')->where($guildMemberWhere)->count();
- if (!empty($guildMember)) {
- $wealth = $charm = $gift_num = 0;
- $userJewelLogWhere["type"] = ["in",[0,2,3,5,6,13]];//查看wallet.php文件
- $userJewelLogWhere["user_id"] = $userId;
- $userJewelLogPay = model('UserJewelLog')
- ->field("sum(value) as total_price")
- ->where($userJewelLogWhere)
- ->select();
- $wealth = isset($userJewelLogPay[0]['total_price']) ? (int)$userJewelLogPay[0]['total_price'] : 0;
- $userGiftWhere = [];
- $userGiftWhere["user_to_id"] = $userId;
- $userGift = model('GiftUserParty')
- ->field("sum(value) as total_price,sum(number)as gift_total_num")
- ->where($userGiftWhere)
- ->select();
- $charm = isset($userGift[0]['total_price']) ? (int)$userGift[0]['total_price'] : 0;
- $giftNum = isset($userGift[0]['gift_total_num']) ? (int)$userGift[0]['gift_total_num'] : 0;
- $guildMemberData = ['wealth'=>$wealth,'charm'=>$charm,'gift_num'=>$giftNum];
- $r = model('GuildMember')->update($guildMemberData,$guildMemberWhere);
- if (!$r) {
- throw new Exception('更新失败');
- }
- }
- }
- } catch (Exception $e) {
- $result['status'] = 0;
- $result['msg'] = $e->getMessage();
- }
- return $result;
- }
- }
|