123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257 |
- <?php
- use app\common\library\QRcode;
- use think\Db;
- 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 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;
- }
- }
- function shoucang(){
- $host = "http://180.76.141.31:8888/cz/call";
- $method = "POST";
- $headers = array();
- array_push($headers, "Content-Type".":"."application/json; charset=UTF-8");
- $bodys = array(
- 'key' => 'test2',
- 'userkey' => '12344',
- 'product' => json_encode(array('name'=>'test','count'=>7))
- );
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
- curl_setopt($curl, CURLOPT_URL, $host);
- 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, json_encode($bodys));
- $res = curl_exec($curl);
- var_dump($res);exit();
- }
- /**
- * 大师提前分钟数存入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;
- }
- /**
- * 用户抢购卡数量存入redis 字符串
- */
- function setMembercard($member_id){
- $snap_card = Db::name('store_member')->where('id',$member_id)->value('snap_card');
- $redis = new \think\cache\driver\Redis();
- $redis->set('membercard_'.$member_id,$snap_card);
- }
- /**
- * 获取用户抢购卡数量
- */
- function getMembercard($member_id){
- $redis = new \think\cache\driver\Redis();
- $count = $redis->get('membercard_'.$member_id);
- if (empty($count)){
- $count = Db::name('store_member')->where('id',$member_id)->value('snap_card');
- $redis->set('membercard_'.$member_id,$count);
- }
- return $count;
- }
- /**
- * 减掉用户抢购卡数量(减1)
- */
- function loseMembercard($id){
- $redis = new \think\cache\driver\Redis();
- $redis->Decr('membercard_'.$id);
- }
- /**
- * 增加用户抢购卡数量(加1)
- */
- function addMembercard($id){
- $redis = new \think\cache\driver\Redis();
- $redis->Incr('membercard_'.$id);
- }
- /**
- * 获取藏品库存
- */
- 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 = Db::name('store_order')
- // ->where('mid',$mid)
- // ->where('c_id',$id)
- // ->whereIn('status','0,1')
- // ->sum('num');
- // $count = $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 = [])
- {
- $member = Db::name('store_member')->where('id',$user_id)->find();
- //数据
- $before = $member['vip'];
- $after = $vid;
- //新等级小于等级 则不升级
- if($after <= $before && $other['status'] == 1){
- 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 getConfigValue($name){
- return Db::name('system_config')->where('name',$name)->value('value');
- }
- /**
- * 判断藏品状态
- */
- function checkCollectionState($id=''){
- if ($id){
- $info = Db::name('store_collection')->field('id,sell_time,state,now_inventory')->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')
- ->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){
- $redis = new \think\cache\driver\Redis();
- $key = 'stock_'.$id;
- $exptime = 10;
- $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['SERVER_NAME']."/user/".$name.'.png';
- }
- //生成邀请二维码
- function setintivecode($user_id){
- $name = $user_id."_".time();
- $address = 'http://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/mine/zhuce?invite_code='.$user_id;
- $url = setqrcode($address,$name);
- return $url;
- }
- //邀请地址
- function getintiveaddress($user_id){
- $address = 'http://'.$_SERVER['SERVER_NAME'].'/web/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://47.111.246.47:8088/';
- return $address;
- }
|