12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388 |
- <?php
- use app\common\library\QRcode;
- use think\Db;
- use OSS\OssClient;
- function IntToChr($index, $start = 65) {
- $str = '';
- if (floor($index / 26) > 0) {
- $str .= IntToChr(floor($index / 26)-1);
- }
- return $str . chr($index % 26 + $start);
- }
- /**
- * 秒转换为天
- */
- function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
- {
- $day = floor($remain_time / (3600*24));
- $day = $day > 0 ? $day.'天' : '';
- $hour = floor(($remain_time % (3600*24)) / 3600);
- $hour = $hour > 0 ? $hour.'小时' : '';
- if($is_hour && $is_minutes) {
- $minutes = floor((($remain_time % (3600*24)) % 3600) / 60);
- $minutes = $minutes > 0 ? $minutes.'分钟' : '';
- return $day.$hour.$minutes;
- }
- if($hour) {
- return $day.$hour;
- }
- return $day;
- }
- //获取全图片地址 $image_data
- function image_path($image_data){
- if(empty($image_data)){
- return $image_data;
- }
- if (strpos($image_data,'|')!==false){
- $image_res = explode('|',$image_data);
- }elseif(strpos($image_data,',')!==false){
- $image_res = explode(',',$image_data);
- }else{
- $image_res = array($image_data);
- }
- return $image_res;
- }
- // 获取模板区域
- function get_city_area()
- {
- $field=['id','pid','name'];
- $list=Db::table('store_area')->where('pid',0)->field($field)->select();
- foreach ($list as $k=>&$v){
- $v['children']= Db::table('store_area')->where('pid',$v['id'])->field($field)->select();
- }
- return $list;
- }
- function http_curl($url,$type='get',$res='json',$arr=''){
- $headers = array();
- //根据API的要求,定义相对应的Content-Type
- array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8;application/json");
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $type);
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($curl, CURLOPT_FAILONERROR, false);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curl, CURLOPT_HEADER, false);
- $output = curl_exec($curl);
- curl_close($curl);
- if($res=='json'){
- if($output === false){
- //请求失败,返回错误信息
- return curl_error($curl);
- }else{
- //请求成功,返回信息
- return json_decode($output,true);
- }
- }
- }
- // 获取物流信息
- function get_delivery($send_no = 'JD0053309649641',$express_code=''){
- error_reporting(E_ALL || ~E_NOTICE);
- $AppKey = 204008273;
- $AppSecret ='t9PavvfCeK5v2XidwyK5pWDp8b0hzMq4';
- $AppCode ='47f640e3529d43e28365311a530db2b7';//开通服务后 买家中心-查看AppCode
- $host = "https://wuliu.market.alicloudapi.com";//api访问链接
- $path = "/kdi";//API访问后缀
- $method = "GET";
- $body ='';
- $headers = array();
- array_push($headers, "Authorization:APPCODE " . $AppCode);
- $querys = "no={$send_no}&type={$express_code}"; //参数写在这里
- $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);
- curl_setopt($curl, CURLOPT_HEADER, true);
- if (1 == strpos("$" . $host, "https://")) {
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
- }
- $out_put = curl_exec($curl);
- $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
- list($header, $body) = explode("\r\n\r\n", $out_put, 2);
- if ($httpCode == 200) {
- return json_decode($body,true)['result'];
- } else {
- return [];
- }
- }
- // 元石日志
- function crystal_log($user_id,$crystal,$desc,$type,$rel_id=0)
- {
- $log_data = [
- 'user_id' => $user_id,
- 'create_at' => date('Y-m-d H:i:s'),
- 'crystal' => $crystal,
- 'desc' => $desc,
- 'type' => $type,
- 'rel_id' => $rel_id,
- ];
- Db::table('crystal_info')->insert($log_data);
- }
- /**
- * 判断是否为合法的身份证号码
- * @param $mobile
- * @return int
- */
- function isCreditNo($vStr){
- $vCity = array(
- '11','12','13','14','15','21','22',
- '23','31','32','33','34','35','36',
- '37','41','42','43','44','45','46',
- '50','51','52','53','54','61','62',
- '63','64','65','71','81','82','91'
- );
- if (!preg_match('/^([\d]{17}[xX\d]|[\d]{15})$/', $vStr)) return false;
- if (!in_array(substr($vStr, 0, 2), $vCity)) return false;
- $vStr = preg_replace('/[xX]$/i', 'a', $vStr);
- $vLength = strlen($vStr);
- if ($vLength == 18) {
- $vBirthday = substr($vStr, 6, 4) . '-' . substr($vStr, 10, 2) . '-' . substr($vStr, 12, 2);
- } else {
- $vBirthday = '19' . substr($vStr, 6, 2) . '-' . substr($vStr, 8, 2) . '-' . substr($vStr, 10, 2);
- }
- if (date('Y-m-d', strtotime($vBirthday)) != $vBirthday) return false;
- if ($vLength == 18) {
- $vSum = 0;
- for ($i = 17 ; $i >= 0 ; $i--) {
- $vSubStr = substr($vStr, 17 - $i, 1);
- $vSum += (pow(2, $i) % 11) * (($vSubStr == 'a') ? 10 : intval($vSubStr , 11));
- }
- if($vSum % 11 != 1) return false;
- }
- return true;
- }
- //实名认证(云盾身份认证(身份证二要素核验)
- function identifyCertification($id_card,$name){
- $host = "https://safrvcert.market.alicloudapi.com";
- $path = "/safrv_2meta_id_name/";
- $method = "GET";
- $appcode = "95ec5cd8c54d4ced9220caebdaa5d750";
- $headers = array();
- array_push($headers, "Authorization:APPCODE " . $appcode);
- $querys = "__userId=__userId&identifyNum=$id_card&userName=$name&verifyKey=verifyKey";
- $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);
- 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);
- }
- curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
- $res = curl_exec($curl);
- if($res){
- $res = json_decode($res,true);
- if($res['code'] == 200 && $res['message']=='success'){
- return 1;
- }else{
- return 0;
- }
- }else{
- return 0;
- }
- }
- //实名认证姓名、身份证、手机号
- function threeElementCertification($id_card,$name,$phone)
- {
- $host = "http://sjsys.market.alicloudapi.com";
- $path = "/communication/personal/1979";
- $method = "POST";
- $appcode = "你自己的AppCode";
- $headers = array();
- array_push($headers, "Authorization:APPCODE " . $appcode);
- //根据API的要求,定义相对应的Content-Type
- array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
- $querys = "";
- $bodys = "idcard=$id_card****&mobile=$phone****&name=$name";
- $url = $host . $path;
- $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);
- curl_setopt($curl, CURLOPT_HEADER, true);
- if (1 == strpos("$".$host, "https://")) {
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
- }
- curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
- var_dump(curl_exec($curl));
- }
- // 实名认证
- function user_certification($id_card,$name){
- $host = "http://checkone.market.alicloudapi.com";
- $path = "/chinadatapay/1882";
- $method = "POST";
- $appcode = "c8fd88cc95dd46fa8c50b05d219824ed";
- $headers = array();
- array_push($headers, "Authorization:APPCODE " . $appcode);
- //根据API的要求,定义相对应的Content-Type
- array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
- $bodys = "idcard=".$id_card."&name=".$name;
- $url = $host . $path;
- $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);
- 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);
- }
- curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
- $res = curl_exec($curl);
- if($res){
- $res = json_decode($res,true);
- if($res['data']['result'] == 1){
- return 1;
- }else{
- return 0;
- }
- }else{
- return 0;
- }
- }
- /**
- * 大师提前分钟数存入redis
- */
- function setAdvanceMinutes(){
- $redis = new \think\cache\driver\Redis();
- $value = Db::name('system_config')->where('name','advance_minutes')->value('value');
- $redis->set('advance_minutes',$value);
- }
- /**
- * 获取大师提前分钟数
- */
- function getAdvanceMinutes(){
- $redis = new \think\cache\driver\Redis();
- $value = $redis->get('advance_minutes');
- if (empty($value)){
- $value = Db::name('system_config')->where('name','advance_minutes')->value('value');
- $redis->set('advance_minutes',$value);
- }
- return $value;
- }
- /**
- * 获取自动取消分钟数
- */
- function getCancelTime(){
- return Db::name('system_config')->where('name','cancel_time')->value('value');
- }
- /**
- * 用户信息存入redis hash
- */
- function setMemberInfoHash($member_id){
- $info = Db::name('store_member')->where('id',$member_id)->find();
- $redis = new \think\cache\driver\Redis();
- $array = ['member'.$member_id=>json_encode($info)];
- $redis->hMSet('memberInfo',$array);
- }
- /**
- * redis获取用户信息
- */
- function getMemberInfoHash($member_id){
- $redis = new \think\cache\driver\Redis();
- $info = $redis->hGet('memberInfo','member'.$member_id);
- if (!$info){
- $info = Db::name('store_member')->where('id',$member_id)->find();
- $array = ['member'.$member_id=>json_encode($info)];
- $redis->hMSet('memberInfo',$array);
- }else{
- $info = json_decode($info,true);
- }
- return $info;
- }
- /**
- * 获取藏品库存
- */
- function getCollectionInventory($id){
- $redis = new \think\cache\driver\Redis();
- $count = $redis->get('collection_count_'.$id);
- // if (empty($count)){
- // $redis->set('collection_count_'.$id,0);
- // }
- return $count ? $count : 0;
- }
- /**
- * 减掉藏品库存
- */
- function loseCollectionInventory($id,$num){
- $redis = new \think\cache\driver\Redis();
- $redis->Decrby('collection_count_'.$id,$num);
- }
- /**
- * 加藏品库存
- */
- function addCollectionInventory($id,$num){
- $redis = new \think\cache\driver\Redis();
- $redis->Incrby('collection_count_'.$id,$num);
- }
- /**
- * 用户购买藏品排名更新
- */
- function saveRanking($id){
- $redis = new \think\cache\driver\Redis();
- $redis->Incr('ranking'.$id);
- }
- /**
- * 获取用户购买藏品排名更新
- */
- function getRanking($id){
- $redis = new \think\cache\driver\Redis();
- $count = $redis->get('ranking'.$id);
- if (empty($count)){
- $redis->set('ranking'.$id,0);
- }
- $count = empty($count) ? 0 : $count;
- return $count;
- }
- /**
- * 藏品信息存入redis hash
- */
- function setCollectionInfoHash($id){
- $info = Db::name('store_collection')->where('id',$id)->find();
- $redis = new \think\cache\driver\Redis();
- $array = ['collection'.$id=>json_encode($info)];
- $redis->hMSet('collectionInfo',$array);
- }
- /**
- * 获取用户购买数量
- */
- function getByCount($mid,$id){
- $redis = new \think\cache\driver\Redis();
- $count = $redis->get('UserByCount_'.$mid.$id);
- if (empty($count) && $count!=0){
- $count = 0;
- $redis->Incrby('UserByCount_'.$mid.$id,$count);
- }
- return $count;
- }
- /**
- * 用户购买数量增加
- */
- function IncrByCount($mid,$id,$number){
- $redis = new \think\cache\driver\Redis();
- $redis->Incrby('UserByCount_'.$mid.$id,$number);
- }
- /**
- * 用户购买数量减少
- */
- function DecrByCount($mid,$id,$number){
- $redis = new \think\cache\driver\Redis();
- $redis->Decrby('UserByCount_'.$mid.$id,$number);
- }
- /**
- * 获取藏品hash redis长度
- */
- function getLenCollection($id){
- $redis = new \think\cache\driver\Redis();
- $count = $redis->Llen('collectionHash_'.$id);
- if (!$count){
- $count = Db::name('hash')
- ->where('goods_id',$id)
- ->where('status',0)
- ->count();
- }
- return $count;
- }
- /**
- * 获取藏品信息
- */
- function getCollectionInfoHash($id)
- {
- $redis = new \think\cache\driver\Redis();
- $info = $redis->hGet('collectionInfo','collection'.$id);
- if (!$info){
- $info = Db::name('store_collection')->where('id',$id)->find();
- $array = ['collection'.$id=>json_encode($info)];
- $redis->hMSet('collectionInfo',$array);
- }else{
- $info = json_decode($info,true);
- }
- return $info;
- }
- /**
- * 收集下单用户id
- */
- function setCollectionBuyUser($mid){
- $redis = new \think\cache\driver\Redis();
- $array = [$mid=>1];
- $redis->hMSet('buyUserInfo',$array);
- }
- /*
- * 微信支付账户
- */
- function retrunWxConfig(){
- $config = [
- 'app_id' => 'wx8e47a12d0a1c007f',
- 'mch_id' =>'1627327076',
- 'key' =>'dguiadak46574hbfkjshfns55f87s5sd',
- ];
- return $config;
- }
- /**
- * 获取离线账户
- */
- function getOfflineAccount(){
- $url = 'http://192.144.219.204:8083/ddc/createAccount';
- return file_get_contents($url);
- }
- /**
- * 获取链账户
- */
- function getWalletAddress($phone){
- $url = getIpAddress().'register?accountName='.$phone;
- $res=curlRequest($url);
- if ($res){
- $res = json_decode($res,true);
- if ($res['code']=='200'){
- return $res['result']['userAddressStr'];
- }
- }
- return false;
- }
- /**
- * 获取公司生成的hash
- */
- function getCompanyHash($id){
- $redis = new \think\cache\driver\Redis();
- $hash = $redis->lPop('collectionHash_'.$id);
- if (!$hash){
- $hash = Db::name('hash')->where('goods_id',$id)
- ->where('status',0)
- ->order('id asc')
- ->field('hash,create_at')
- ->limit(1)
- ->find();
- }else{
- $hash = json_decode($hash,true);
- }
- return $hash;
- }
- /**
- * 获取排名
- */
- function getTag($id,$now,$num){
- $len = strlen($num);
- $re = 'XL'.$id.'#';
- switch ($len){
- case 1:
- $re = $re.'0'.$now;
- break;
- case 2:
- if ($now<10){
- $re = $re.'0'.$now;
- }else{
- $re = $re.$now;
- }
- break;
- case 3:
- if ($now<10){
- $re = $re.'00'.$now;
- }elseif ($now>=10 && $now<100){
- $re = $re.'0'.$now;
- }else{
- $re = $re.$now;
- }
- break;
- case 4:
- if ($now<10){
- $re = $re.'000'.$now;
- }elseif ($now>=10 && $now<100){
- $re = $re.'00'.$now;
- }elseif ($now>=100 && $now<1000){
- $re = $re.'0'.$now;
- }else{
- $re = $re.$now;
- }
- break;
- case 5:
- if ($now<10){
- $re = $re.'0000'.$now;
- }elseif ($now>=10 && $now<100){
- $re = $re.'000'.$now;
- }elseif ($now>=100 && $now<1000){
- $re = $re.'00'.$now;
- }elseif ($now>=1000 && $now<10000){
- $re = $re.'0'.$now;
- }else{
- $re = $re.$now;
- }
- break;
- case 6:
- if ($now<10){
- $re = $re.'00000'.$now;
- }elseif ($now>=10 && $now<100){
- $re = $re.'0000'.$now;
- }elseif ($now>=100 && $now<1000){
- $re = $re.'000'.$now;
- }elseif ($now>=1000 && $now<10000){
- $re = $re.'00'.$now;
- }elseif ($now>=10000 && $now<100000){
- $re = $re.'0'.$now;
- }else{
- $re = $re.$now;
- }
- break;
- }
- $re = $re.'/'.$num;
- return $re;
- }
- /**
- * 判断藏品是否设置过提醒
- */
- function getRemind($mid,$c_id){
- return Db::name('store_collection_remind')->where('mid',$mid)->where('c_id',$c_id)->count();
- }
- /**
- * 变更会员积分等
- * @param int $money 余额
- * @param int $user_id 会员ID
- * @param string $memo 备注
- */
- function memberMoneyChange($num, $type , $m_id, $title, $pm = 0,$link_id=0,$change_type = 0)
- {
- $member = Db::name('store_member')->where('id',$m_id)->find();
- $is_inc = $pm == 1 ? 1 : -1;
- switch ($type){
- case 1: //积分
- $before = $member['integral'];
- if ($pm==1)
- $after = $member['integral']+$num;
- else
- $after = $member['integral']-$num;
- $update_data = ['integral'=>Db::raw('integral +'.$num*$is_inc)];
- break;
- case 2: //抢购卡
- $before = $member['snap_card'];
- if ($pm==1)
- $after = $member['snap_card']+$num;
- else
- $after = $member['snap_card']-$num;
- $update_data = ['snap_card'=>Db::raw('snap_card +'.$num*$is_inc)];
- break;
- case 3: //余额
- $before = $member['money'];
- if ($pm==1)
- $after = $member['money']+$num;
- else
- $after = $member['money']-$num;
- $update_data = ['money'=>Db::raw('money +'.$num*$is_inc)];
- break;
- }
- Db::startTrans();
- try {
- Db::name('store_member')->where('id',$m_id)->update($update_data);
- $data = [
- 'm_id'=>$m_id,
- 'type'=>$type,
- 'pm'=>$pm,
- 'title'=>$title,
- 'change'=>$num,
- 'before'=>$before,
- 'after'=>$after,
- 'link_id'=>$link_id,
- 'change_type'=>$change_type
- ];
- Db::name('store_member_log')->insert($data);
- Db::commit();
- return true;
- }catch (\Exception $e){
- Db::rollback();
- return false;
- }
- }
- /**
- * 变更会员等级
- * @param int $vid 等级
- * @param int $user_id 会员ID
- * @param array $other 其他
- */
- function memberVipChange($vid, $user_id, $other = [])
- {
- return true;// 象链没有会员等级
- $member = Db::name('store_member')->where('id',$user_id)->find();
- //数据
- $before = $member['vip'];
- $after = $vid;
- //新等级小于等级 则不升级
- if($after <= $before && $other['status'] == 1){
- return false;
- }
- //等级相同 不操作
- if($after == $before){
- return false;
- }
- $update_data['vip'] = $vid;
- Db::startTrans();
- try {
- Db::name('store_member')->where('id',$user_id)->update($update_data);
- $data = [
- 'mid' => $user_id,
- 'oldvid' => $before,
- 'vid' => $after,
- 'type' => $other['type'],
- 'status' => $other['status'],
- 'desc' => $other['desc'],
- 'order_table' => $other['order_table'],
- 'order_id' => $other['order_id'],
- ];
- Db::name('store_vipuser')->insert($data);
- Db::commit();
- return true;
- }catch (\Exception $e){
- Db::rollback();
- return false;
- }
- }
- /**
- * 获取会员等级
- */
- function getMemberVipInfo($uid, $field = '' )
- {
- $memberVip = Db::name('store_member')->where('id',$uid)->value('vip');
- if(!$field){
- $vipInfo = Db::name('store_vip')
- ->where('id',$memberVip)
- ->where('is_del',0)
- ->where('status',1)
- ->value('discount');
- }else{
- $vipInfo = Db::name('store_vip')->field($field)
- ->where('id',$memberVip)
- ->where('is_del',0)
- ->where('status',1)
- ->find();
- }
- return $vipInfo;
- }
- /**
- * 优先购匹配藏品会员等级
- * @param int $user_id 会员Id
- * @param int $memberVip 会员等级
- * @param string $vids 藏品配置等级
- * @param array $other 其他
- */
- function memberBuyGoodsVip($user_id,$memberVip, $vids = '', $other = [])
- {
- $vidData = explode(',',$vids);
- if(!in_array($memberVip,$vidData)){
- return [];
- }
- //获取等级详情
- $vipInfo = Db::name('store_vip')->field('id,name,advance_minutes,advance_count')
- ->where('id',$memberVip)
- ->where('is_del',0)
- ->where('status',1)
- ->find();
- //获取用户已经购买数量
- $userByCount = getByCount($user_id,$other['gid']);
- if($userByCount >= $vipInfo['advance_count'] ){
- return [];
- }
- return $vipInfo;
- }
- /**
- * 验证会员优先购
- * @param int $user_id 会员Id
- * @param int $goods_id 藏品id
- */
- function checkMemberPriority($user_id,$goods_id)
- {
- $import_user = Db::name('store_collection_first')->where('c_id',$goods_id)->cache(300)->column('num','uid');
- if(isset($import_user[$user_id]) && $import_user[$user_id] > 0) return $import_user[$user_id];// 导入设置优先购
- $power_coll = Db::name('collection_power')->where('before_id',$goods_id)->cache(300)->column('coll_id'); // 藏品拥有者优先购
- if(empty($power_coll)) return false;
- $has_collect = Db::name('store_order_info')
- ->where('mid',$user_id)
- ->where('c_id','in',implode(',',$power_coll))
- ->where('status','neq','2')
- ->where('is_destruction',1)
- ->where('resale_status',1)
- ->cache(300)
- ->count();
- return $has_collect ? true : false;
- }
- /**
- * 手续费折扣
- * @param int $user_id 会员Id
- * @param array $other 其他
- */
- function getMemberServiceCharge($user_id)
- {
- // 设置
- $power_coll = Db::name('collection_power')->where('discount','>',0)
- ->order('discount desc ,id desc')
- ->cache(300)->column('discount','coll_id');
- if(empty($power_coll)) return 1;
- $has_collect = Db::name('store_order_info')
- ->field('c_id')
- ->whereIn('c_id',implode(',',array_keys($power_coll)))
- ->where('mid',$user_id)
- ->where('status','neq','2')
- ->where('is_destruction',1)
- ->where('resale_status',1)
- ->group('c_id')
- ->cache(300)
- ->select();
- $discount = 100;
- // var_dump($power_coll,$has_collect);
- foreach ($has_collect as $v) {
- if( isset($power_coll[$v['c_id']])) $discount = $power_coll[$v['c_id']];
- }
- return bcdiv($discount,100,2);
- }
- /**
- * 获取单个系统配置信息
- */
- function getConfigValue($name){
- return Db::name('system_config')->where('name',$name)->cache(300)->value('value');
- }
- /**
- * 判断藏品状态
- */
- function checkCollectionState($id=''){
- if ($id){
- $info = Db::name('store_collection')->where('id',$id)->find();
- $now_inventory = getCollectionInventory($id);
- if ($info['state']==1){
- if ($now_inventory<=0){
- Db::name('store_collection')->where('id',$info['id'])->update(['state'=>3]);
- }
- }else if($info['state']==2){
- if (strtotime($info['sell_time'])<=time()){
- Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
- }
- }else if($info['state']==3){
- if ($now_inventory>0){
- Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
- }
- }
- }else{
- $list = Db::name('store_collection')
- ->field('id,sell_time,state,now_inventory')
- ->whereIn('state','1,2,3')
- ->where('is_deleted',0)
- ->select();
- foreach ($list as &$v){
- $now_inventory = getCollectionInventory($v['id']);
- if ($v['state']==1){
- if ($now_inventory<=0 || $v['now_inventory'] == 0){
- Db::name('store_collection')->where('id',$v['id'])->update(['state'=>3]);
- }
- }elseif ($v['state']==2){
- if (strtotime($v['sell_time'])<=time()){
- Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
- }
- }elseif ($v['state']==3){
- if ($now_inventory>0){
- Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
- }
- }
- }
- }
- }
- /**
- * 判断藏品状态
- */
- function checkSynCollectionState($id=''){
- if ($id){
- $info = Db::name('store_collection')->where('id',$id)->find();
- $now_inventory = getCollectionInventory($id);
- if ($info['sy_state']==1){
- if ($now_inventory<=0){
- Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>4]);
- }elseif(strtotime($info['end_time'])<time()){
- Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>3]);
- }
- }elseif ($info['sy_state']==2){
- if (strtotime($info['sell_time'])<=time()){
- Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>1]);
- }elseif ($now_inventory<=0){
- Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>4]);
- }
- }
- }else{
- $list = Db::name('store_collection')
- ->where('type',2)
- ->whereIn('sy_state','1,2')
- ->where('is_deleted',0)
- ->select();
- foreach ($list as &$v){
- $now_inventory = getCollectionInventory($v['id']);
- if ($v['sy_state']==1){
- if ($now_inventory<=0){
- Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>4]);
- }elseif(strtotime($v['end_time'])<time()){
- Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>3]);
- }
- }elseif ($v['sy_state']==2){
- if (strtotime($v['sell_time'])<=time()){
- Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>1]);
- }elseif ($now_inventory<=0){
- Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>4]);
- }
- }
- }
- }
- }
- /**
- * redis加锁
- */
- function redisSetNx($id,$exptime=3){
- $redis = new \think\cache\driver\Redis();
- $key = 'stock_'.$id;
- $is_lock = $redis->setnx($key,time()+$exptime);
- if ($is_lock){
- return true;
- }else{
- //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
- $val = $redis->get($key);
- if ($val && $val<time()){
- $redis->del($key);
- }
- return $redis->setnx($key,time()+$exptime);
- }
- }
- /**
- * 删除锁
- */
- function DelRedisSetNx($id){
- $redis = new \think\cache\driver\Redis();
- $key = 'stock_'.$id;
- $redis->del($key);
- }
- /**
- * 盲盒信息存入redis hash
- */
- function setBoxInfoHash($id){
- $info = Db::name('store_collection')->where('id',$id)->find();
- $redis = new \think\cache\driver\Redis();
- $array = ['collection'.$id=>json_encode($info)];
- $redis->hMSet('collectionInfo',$array);
- }
- /**
- * 获取0的数量
- */
- function get0number($n){
- if ($n==1){
- return '00000000000';
- }elseif ($n==2){
- return '0000000000';
- }elseif ($n==3){
- return '000000000';
- }elseif ($n==4){
- return '00000000';
- }elseif ($n==5){
- return '0000000';
- }elseif ($n==6){
- return '000000';
- }elseif ($n==7){
- return '00000';
- }elseif ($n==8){
- return '0000';
- }elseif ($n==9){
- return '000';
- }elseif ($n==10){
- return '00';
- }elseif ($n==11){
- return '0';
- }
- }
- /***********************************************人脸识别*****************************************************************/
- /**
- * 获取accesstoken
- * @return mixed
- */
- function getAccessToken(){
- $appid_id =getFaceInfo()['appid'];
- $secret = getFaceInfo()['secret'];
- $grant_type = 'client_credential';
- $version = '1.0.0';
- $url = "https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/access_token?app_id=".$appid_id."&secret=".$secret."&grant_type=".$grant_type."&version=".$version;
- $result = curlRequest($url);
- $result = json_decode($result,true);
- if ($result['code']==0){
- return $result;
- }
- echo $result['msg'];die;
- }
- /**
- * 获取api_ticket
- */
- function getApiTicket($type,$userId=''){
- $appid_id =getFaceInfo()['appid'];
- $access_token = getAccessToken()['access_token'];
- $version = '1.0.0';
- $url = "https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/api_ticket?app_id=".$appid_id."&access_token=".$access_token."&type=".$type."&version=".$version;
- if ($type=='NONCE'){
- $url .= "&user_id=".$userId;
- }
- $result = curlRequest($url);
- $result = json_decode($result,true);
- if ($result['code']==0){
- return $result;
- }
- echo $result['msg'];die;
- }
- /**
- * 生成签名
- */
- function generateSign($userId){
- $wbappid = getFaceInfo()['appid'];
- $version = '1.0.0';
- $ticket = getApiTicket('SIGN')['tickets'][0]['value'];
- $nonce = get32Str();
- // $array = ['wbappid'=>$wbappid, 'userId'=>"$userId",'nonce'=>$nonce, 'version'=>$version, 'ticket'=>$ticket];
- $array = [$wbappid, "$userId",$nonce, $version, $ticket];
- file_put_contents("signLog.txt", json_encode($array) . "\n" . "\n", FILE_APPEND);
- sort($array);
- $str='';
- foreach ($array as $kk=>$vv){
- $str .=$vv;
- }
- // echo $str;die;
- $result = strtoupper(sha1($str));
- $res['sign'] = $result;
- $res['nonce'] = $nonce;
- $res['appid'] = $wbappid;
- return $res;
- }
- /**
- * 合作方后台上送身份信息
- */
- function getfaceid($name,$idNo,$userId){
- $webankAppId = getFaceInfo()['appid'];
- $orderNo = get32Str();
- $sign = generateSign($userId);
- $data = [
- 'webankAppId'=>$webankAppId,
- 'orderNo'=>$orderNo,
- 'name'=>$name,
- 'idNo'=>$idNo,
- 'userId'=>"$userId",
- 'version'=>'1.0.0',
- 'sign'=>$sign['sign'],
- 'nonce'=>$sign['nonce']
- ];
- $headers = [];
- array_push($headers, "Content-Type".":"."application/json; charset=UTF-8");
- $url = 'https://miniprogram-kyc.tencentcloudapi.com/api/server/getfaceid?orderNo='.$orderNo;
- $result = curlRequest($url,$headers,json_encode($data),'POST');
- $result = json_decode($result,true);
- if ($result['code']==0){
- $data = [
- 'appid'=>$sign['appid'],
- 'userID'=>"$userId",
- 'sign'=>$sign['sign'],
- 'nonce'=>$sign['nonce'],
- 'sdksign'=>SdkSign($userId,$sign['nonce']),
- 'result'=>$result['result'],
- ];
- return $data;
- }
- echo $result['msg'];die;
- }
- /**
- * 生成 SDK 接口调用步骤使用签名
- */
- function SdkSign($userId,$nonce){
- $wbappid = getFaceInfo()['appid'];
- $version = '1.0.0';
- $ticket = getApiTicket('NONCE',$userId)['tickets'][0]['value'];
- //$nonce = get32Str();
- $array = [$wbappid, "$userId",$nonce, $version, $ticket];
- file_put_contents("sdksignLog.txt", json_encode($array) . "\n" . "\n", FILE_APPEND);
- sort($array);
- $str='';
- foreach ($array as $kk=>$vv){
- $str .=$vv;
- }
- $result = strtoupper(sha1($str));
- return $result;
- }
- function getFaceInfo(){
- //正式
- $date = [
- 'appid'=>'IDAKcvCn',
- 'secret'=>'L1id3z5zROK8SVXg72ZyZXc8ziniYLKpOnIzN1gecrBaEMaKIlKrreyRGCLU2z4l'
- ];
- //测试
- // $date = [
- // 'appid'=>'TIDA3uGO',
- // 'secret'=>'z41IysbEhRy5oR4Qs2kFfVkrufXIJMtsJOQ3eulkWwXwdKG772LSSiZsKKwfsv9n'
- // ];
- return $date;
- }
- //将数组转成uri字符串
- function formatBizQueryParaMap($paraMap, $urlencode)
- {
- $buff = "";
- ksort($paraMap);
- foreach ($paraMap as $k => $v)
- {
- if($urlencode)
- {
- $v = urlencode($v);
- }
- // $buff .= strtolower($k) . "=" . $v . "&";
- $buff .= $v;
- }
- if (strlen($buff) > 0)
- {
- $reqPar = substr($buff, 0, strlen($buff)-1);
- }
- return $reqPar;
- }
- /**
- * 生成??位随机数
- */
- function get32Str($length='32'){
- // $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
- $str = 'abcdefghijklmnopqrstuvwxyz0123456789';
- $len = strlen($str)-1;
- $randstr = '';
- for ($i=0;$i<$length;$i++) {
- $num=mt_rand(0,$len);
- $randstr .= $str[$num];
- }
- return $randstr;
- }
- function get_order_sn(){
- $order_id_main = date('YmdHis') . rand(10000000,99999999);
- $order_id_len = strlen($order_id_main);
- $order_id_sum = 0;
- for($i=0; $i<$order_id_len; $i++){
- $order_id_sum += (int)(substr($order_id_main,$i,1));
- }
- $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
- return $osn;
- }
- ///**
- // * 生成二维码
- // */
- //function setqrcode($value,$name){
- // $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/user';
- // if(!file_exists($dir)){
- // //检查是否有该文件夹,如果没有就创建,并给予最高权限
- // mkdir($dir, 0700,true);
- // }
- // $filename = $dir.'/'.$name.'.png';
- // QRcode::png($value,$filename,QR_ECLEVEL_L,7);
- // return 'http://'.$_SERVER['HTTP_HOST']."/user/".$name.'.png';
- //}
- /**
- * 生成二维码
- */
- function setqrcode($value,$name){
- $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/user';
- if(!file_exists($dir)){
- //检查是否有该文件夹,如果没有就创建,并给予最高权限
- mkdir($dir, 0700,true);
- }
- $filename = $dir.'/'.$name.'.png';
- QRcode::png($value,$filename,QR_ECLEVEL_L,7);
- $storage_type = getConfigValue('storage_type');
- if ($storage_type == 'oss'){
- $ossClient = new OssClient(getConfigValue('storage_oss_keyid'), getConfigValue('storage_oss_secret'), getConfigValue('storage_oss_endpoint'));
- $file_path = dirname($_SERVER['SCRIPT_FILENAME']) . "/user/".$name.".png";
- $newName = date('Ymd').'/'.get_order_sn().'.png';
- $result = $ossClient->uploadFile(getConfigValue('storage_oss_bucket'), $newName, $file_path);
- $url = $result['info']['url'];
- unlink($file_path);
- }else{
- $url = 'http://'.$_SERVER['HTTP_HOST']."/user/".$name.'.png';
- }
- return $url;
- }
- //生成邀请二维码
- function setintivecode($user_id){
- $name = $user_id."_".time();
- $address = 'https://'.$_SERVER['HTTP_HOST'].'/h5/pages/mine/zhuce?invite_code='.$user_id;
- $url = setqrcode($address,$name);
- return $url;
- }
- //邀请地址
- function getintiveaddress($user_id){
- $address = 'https://'.$_SERVER['HTTP_HOST'].'/h5/pages/mine/zhuce?invite_code='.$user_id;
- return $address;
- }
- /**
- * @param $url
- * @param array $headers
- * @param array $body
- * @param string $method
- * @return bool|string
- */
- function curlRequest($url, $headers = [], $body = [], $method = "GET")
- {
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
- curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
- curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
- $output = curl_exec($ch);
- curl_close($ch);
- return $output;
- }
- /**
- * 盲盒藏品库存和藏品状态判断
- * @param $proArr
- * @return int|string
- */
- function checkBox(){
- $list = Db::name('store_blind_box')
- ->where('status',1)
- ->where('is_del',1)
- ->field('id,is_prize,prize')
- ->select();
- foreach ($list as &$v){
- if ($v['is_prize']==1){
- $info = Db::name('store_collection')->where('id',$v['prize'])->find();
- if ($info['now_inventory']<=0 || $info['status']==0 || $info['is_deleted']==1){
- Db::name('store_blind_box')->where('id',$v['id'])->update(['status'=>0]);
- }
- }
- }
- }
- //计算中奖概率
- function get_rand($proArr) {
- $result = '';
- //概率数组的总概率精度
- $proSum = array_sum($proArr);
- // var_dump($proSum);
- //概率数组循环
- foreach ($proArr as $key => $proCur) {
- $randNum = mt_rand(1, $proSum); //返回随机整数
- if ($randNum <= $proCur) {
- $result = $key;
- break;
- } else {
- $proSum -= $proCur;
- }
- }
- unset ($proArr);
- return $result;
- }
- /**
- * 调试函数
- */
- function debug($str){
- $str = var_export($str,true).PHP_EOL;
- $str.= date('Y-m-d H:i:s').' ';
- $str.= $_SERVER['REMOTE_ADDR'].' ';
- $str.= $_SERVER['REQUEST_METHOD'].': ';
- // $str.=$_SERVER['HTTP_HOST'];
- $str.= $_SERVER['REQUEST_URI'].''.PHP_EOL.PHP_EOL;
- $str='<?php exit();?>'.PHP_EOL.$str;
- error_log($str,3,"debug.log");
- }
- /**
- * 获取链上ip
- */
- function getIpAddress(){
- $address = 'http://8.136.12.232:8088/';
- return $address;
- }
- function arrayToXml($arr)
- {
- $xml = "<xml>";
- foreach ($arr as $key => $val) {
- if (is_numeric($val)) {
- $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
- } else
- $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
- }
- $xml .= "</xml>";
- return $xml;
- }
- /**
- * 验证银行卡号
- * @param string $bankCardNo 银行卡号
- * @return bool 是否合法(true:合法,false:不合法)
- */
- function check_bankCard($bankCardNo){
- $arr_no = str_split($bankCardNo);
- $last_n = $arr_no[count($arr_no)-1];
- krsort($arr_no);
- $i = 1;
- $total = 0;
- foreach ($arr_no as $n){
- if($i%2==0){
- $ix = $n*2;
- if($ix>=10){
- $nx = 1 + ($ix % 10);
- $total += $nx;
- }else{
- $total += $ix;
- }
- }else{
- $total += $n;
- }
- $i++;
- }
- $total -= $last_n;
- $total *= 9;
- if($last_n == ($total%10)){
- return 1;
- }
- return 0;
- }
|