common.php 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282
  1. <?php
  2. use app\common\library\QRcode;
  3. use think\Db;
  4. function IntToChr($index, $start = 65) {
  5. $str = '';
  6. if (floor($index / 26) > 0) {
  7. $str .= IntToChr(floor($index / 26)-1);
  8. }
  9. return $str . chr($index % 26 + $start);
  10. }
  11. /**
  12. * 秒转换为天
  13. */
  14. function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
  15. {
  16. $day = floor($remain_time / (3600*24));
  17. $day = $day > 0 ? $day.'天' : '';
  18. $hour = floor(($remain_time % (3600*24)) / 3600);
  19. $hour = $hour > 0 ? $hour.'小时' : '';
  20. if($is_hour && $is_minutes) {
  21. $minutes = floor((($remain_time % (3600*24)) % 3600) / 60);
  22. $minutes = $minutes > 0 ? $minutes.'分钟' : '';
  23. return $day.$hour.$minutes;
  24. }
  25. if($hour) {
  26. return $day.$hour;
  27. }
  28. return $day;
  29. }
  30. //获取全图片地址 $image_data
  31. function image_path($image_data){
  32. if(empty($image_data)){
  33. return $image_data;
  34. }
  35. if (strpos($image_data,'|')!==false){
  36. $image_res = explode('|',$image_data);
  37. }elseif(strpos($image_data,',')!==false){
  38. $image_res = explode(',',$image_data);
  39. }else{
  40. $image_res = array($image_data);
  41. }
  42. return $image_res;
  43. }
  44. // 获取模板区域
  45. function get_city_area()
  46. {
  47. $field=['id','pid','name'];
  48. $list=Db::table('store_area')->where('pid',0)->field($field)->select();
  49. foreach ($list as $k=>&$v){
  50. $v['children']= Db::table('store_area')->where('pid',$v['id'])->field($field)->select();
  51. }
  52. return $list;
  53. }
  54. function http_curl($url,$type='get',$res='json',$arr=''){
  55. $headers = array();
  56. //根据API的要求,定义相对应的Content-Type
  57. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8;application/json");
  58. $curl = curl_init();
  59. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $type);
  60. curl_setopt($curl, CURLOPT_URL, $url);
  61. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  62. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  63. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  64. curl_setopt($curl, CURLOPT_HEADER, false);
  65. $output = curl_exec($curl);
  66. curl_close($curl);
  67. if($res=='json'){
  68. if($output === false){
  69. //请求失败,返回错误信息
  70. return curl_error($curl);
  71. }else{
  72. //请求成功,返回信息
  73. return json_decode($output,true);
  74. }
  75. }
  76. }
  77. // 获取物流信息
  78. function get_delivery($send_no = 'JD0053309649641',$express_code=''){
  79. error_reporting(E_ALL || ~E_NOTICE);
  80. $AppKey = 204008273;
  81. $AppSecret ='t9PavvfCeK5v2XidwyK5pWDp8b0hzMq4';
  82. $AppCode ='47f640e3529d43e28365311a530db2b7';//开通服务后 买家中心-查看AppCode
  83. $host = "https://wuliu.market.alicloudapi.com";//api访问链接
  84. $path = "/kdi";//API访问后缀
  85. $method = "GET";
  86. $body ='';
  87. $headers = array();
  88. array_push($headers, "Authorization:APPCODE " . $AppCode);
  89. $querys = "no={$send_no}&type={$express_code}"; //参数写在这里
  90. $url = $host . $path . "?" . $querys;
  91. $curl = curl_init();
  92. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  93. curl_setopt($curl, CURLOPT_URL, $url);
  94. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  95. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  96. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  97. curl_setopt($curl, CURLOPT_HEADER, true);
  98. if (1 == strpos("$" . $host, "https://")) {
  99. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  100. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  101. }
  102. $out_put = curl_exec($curl);
  103. $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
  104. list($header, $body) = explode("\r\n\r\n", $out_put, 2);
  105. if ($httpCode == 200) {
  106. return json_decode($body,true)['result'];
  107. } else {
  108. return [];
  109. }
  110. }
  111. // 元石日志
  112. function crystal_log($user_id,$crystal,$desc,$type,$rel_id=0)
  113. {
  114. $log_data = [
  115. 'user_id' => $user_id,
  116. 'create_at' => date('Y-m-d H:i:s'),
  117. 'crystal' => $crystal,
  118. 'desc' => $desc,
  119. 'type' => $type,
  120. 'rel_id' => $rel_id,
  121. ];
  122. Db::table('crystal_info')->insert($log_data);
  123. }
  124. /**
  125. * 判断是否为合法的身份证号码
  126. * @param $mobile
  127. * @return int
  128. */
  129. function isCreditNo($vStr){
  130. $vCity = array(
  131. '11','12','13','14','15','21','22',
  132. '23','31','32','33','34','35','36',
  133. '37','41','42','43','44','45','46',
  134. '50','51','52','53','54','61','62',
  135. '63','64','65','71','81','82','91'
  136. );
  137. if (!preg_match('/^([\d]{17}[xX\d]|[\d]{15})$/', $vStr)) return false;
  138. if (!in_array(substr($vStr, 0, 2), $vCity)) return false;
  139. $vStr = preg_replace('/[xX]$/i', 'a', $vStr);
  140. $vLength = strlen($vStr);
  141. if ($vLength == 18) {
  142. $vBirthday = substr($vStr, 6, 4) . '-' . substr($vStr, 10, 2) . '-' . substr($vStr, 12, 2);
  143. } else {
  144. $vBirthday = '19' . substr($vStr, 6, 2) . '-' . substr($vStr, 8, 2) . '-' . substr($vStr, 10, 2);
  145. }
  146. if (date('Y-m-d', strtotime($vBirthday)) != $vBirthday) return false;
  147. if ($vLength == 18) {
  148. $vSum = 0;
  149. for ($i = 17 ; $i >= 0 ; $i--) {
  150. $vSubStr = substr($vStr, 17 - $i, 1);
  151. $vSum += (pow(2, $i) % 11) * (($vSubStr == 'a') ? 10 : intval($vSubStr , 11));
  152. }
  153. if($vSum % 11 != 1) return false;
  154. }
  155. return true;
  156. }
  157. //实名认证(云盾身份认证(身份证二要素核验)
  158. function identifyCertification($id_card,$name){
  159. $host = "https://safrvcert.market.alicloudapi.com";
  160. $path = "/safrv_2meta_id_name/";
  161. $method = "GET";
  162. $appcode = "0077fde8e0474401b8e090b780da1a97";
  163. $headers = array();
  164. array_push($headers, "Authorization:APPCODE " . $appcode);
  165. $querys = "__userId=__userId&identifyNum=$id_card&userName=$name&verifyKey=verifyKey";
  166. $bodys = "";
  167. $url = $host . $path . "?" . $querys;
  168. $curl = curl_init();
  169. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  170. curl_setopt($curl, CURLOPT_URL, $url);
  171. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  172. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  173. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  174. curl_setopt($curl, CURLOPT_HEADER, false);
  175. if (1 == strpos("$".$host, "https://"))
  176. {
  177. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  178. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  179. }
  180. curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
  181. $res = curl_exec($curl);
  182. if($res){
  183. $res = json_decode($res,true);
  184. if($res['code'] == 200 && $res['message']=='success'){
  185. return 1;
  186. }else{
  187. return 0;
  188. }
  189. }else{
  190. return 0;
  191. }
  192. }
  193. // 实名认证
  194. function user_certification($id_card,$name){
  195. $host = "http://checkone.market.alicloudapi.com";
  196. $path = "/chinadatapay/1882";
  197. $method = "POST";
  198. $appcode = "30be8bdcc65842919980a8276ffc4995";
  199. $headers = array();
  200. array_push($headers, "Authorization:APPCODE " . $appcode);
  201. //根据API的要求,定义相对应的Content-Type
  202. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
  203. $bodys = "idcard=".$id_card."&name=".$name;
  204. $url = $host . $path;
  205. $curl = curl_init();
  206. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  207. curl_setopt($curl, CURLOPT_URL, $url);
  208. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  209. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  210. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  211. curl_setopt($curl, CURLOPT_HEADER, false);
  212. if (1 == strpos("$".$host, "https://"))
  213. {
  214. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  215. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  216. }
  217. curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
  218. $res = curl_exec($curl);
  219. dump($res);die;
  220. if($res){
  221. $res = json_decode($res,true);
  222. if($res['data']['result'] == 1){
  223. return 1;
  224. }else{
  225. return 0;
  226. }
  227. }else{
  228. return 0;
  229. }
  230. }
  231. function shoucang(){
  232. $host = "http://180.76.141.31:8888/cz/call";
  233. $method = "POST";
  234. $headers = array();
  235. array_push($headers, "Content-Type".":"."application/json; charset=UTF-8");
  236. $bodys = array(
  237. 'key' => 'test2',
  238. 'userkey' => '12344',
  239. 'product' => json_encode(array('name'=>'test','count'=>7))
  240. );
  241. $curl = curl_init();
  242. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  243. curl_setopt($curl, CURLOPT_URL, $host);
  244. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  245. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  246. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  247. curl_setopt($curl, CURLOPT_HEADER, false);
  248. if (1 == strpos("$".$host, "https://"))
  249. {
  250. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  251. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  252. }
  253. curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($bodys));
  254. $res = curl_exec($curl);
  255. var_dump($res);exit();
  256. }
  257. /**
  258. * 大师提前分钟数存入redis
  259. */
  260. function setAdvanceMinutes(){
  261. $redis = new \think\cache\driver\Redis();
  262. $value = Db::name('system_config')->where('name','advance_minutes')->value('value');
  263. $redis->set('advance_minutes',$value);
  264. }
  265. /**
  266. * 获取大师提前分钟数
  267. */
  268. function getAdvanceMinutes(){
  269. $redis = new \think\cache\driver\Redis();
  270. $value = $redis->get('advance_minutes');
  271. if (empty($value)){
  272. $value = Db::name('system_config')->where('name','advance_minutes')->value('value');
  273. $redis->set('advance_minutes',$value);
  274. }
  275. return $value;
  276. }
  277. /**
  278. * 获取自动取消分钟数
  279. */
  280. function getCancelTime(){
  281. return Db::name('system_config')->where('name','cancel_time')->value('value');
  282. }
  283. /**
  284. * 用户信息存入redis hash
  285. */
  286. function setMemberInfoHash($member_id){
  287. $info = Db::name('store_member')->where('id',$member_id)->find();
  288. $redis = new \think\cache\driver\Redis();
  289. $array = ['member'.$member_id=>json_encode($info)];
  290. $redis->hMSet('memberInfo',$array);
  291. }
  292. /**
  293. * redis获取用户信息
  294. */
  295. function getMemberInfoHash($member_id){
  296. $redis = new \think\cache\driver\Redis();
  297. $info = $redis->hGet('memberInfo','member'.$member_id);
  298. if (!$info){
  299. $info = Db::name('store_member')->where('id',$member_id)->find();
  300. $array = ['member'.$member_id=>json_encode($info)];
  301. $redis->hMSet('memberInfo',$array);
  302. }else{
  303. $info = json_decode($info,true);
  304. }
  305. return $info;
  306. }
  307. /**
  308. * 用户抢购卡数量存入redis 字符串
  309. */
  310. function setMembercard($member_id){
  311. $snap_card = Db::name('store_member')->where('id',$member_id)->value('snap_card');
  312. $redis = new \think\cache\driver\Redis();
  313. $redis->set('membercard_'.$member_id,$snap_card);
  314. }
  315. /**
  316. * 获取用户抢购卡数量
  317. */
  318. function getMembercard($member_id){
  319. $redis = new \think\cache\driver\Redis();
  320. $count = $redis->get('membercard_'.$member_id);
  321. if (empty($count)){
  322. $count = Db::name('store_member')->where('id',$member_id)->value('snap_card');
  323. $redis->set('membercard_'.$member_id,$count);
  324. }
  325. return $count;
  326. }
  327. /**
  328. * 减掉用户抢购卡数量(减1)
  329. */
  330. function loseMembercard($id){
  331. $redis = new \think\cache\driver\Redis();
  332. $redis->Decr('membercard_'.$id);
  333. }
  334. /**
  335. * 增加用户抢购卡数量(加1)
  336. */
  337. function addMembercard($id){
  338. $redis = new \think\cache\driver\Redis();
  339. $redis->Incr('membercard_'.$id);
  340. }
  341. /**
  342. * 获取藏品库存
  343. */
  344. function getCollectionInventory($id){
  345. $redis = new \think\cache\driver\Redis();
  346. $count = $redis->get('collection_count_'.$id);
  347. return $count ? $count : 0;
  348. }
  349. /**
  350. * 减掉藏品库存
  351. */
  352. function loseCollectionInventory($id,$num){
  353. $redis = new \think\cache\driver\Redis();
  354. $redis->Decrby('collection_count_'.$id,$num);
  355. }
  356. /**
  357. * 加藏品库存
  358. */
  359. function addCollectionInventory($id,$num){
  360. $redis = new \think\cache\driver\Redis();
  361. $redis->Incrby('collection_count_'.$id,$num);
  362. }
  363. /**
  364. * 用户购买藏品排名更新
  365. */
  366. function saveRanking($id){
  367. $redis = new \think\cache\driver\Redis();
  368. $redis->Incr('ranking'.$id);
  369. }
  370. /**
  371. * 获取用户购买藏品排名更新
  372. */
  373. function getRanking($id){
  374. $redis = new \think\cache\driver\Redis();
  375. $count = $redis->get('ranking'.$id);
  376. if (empty($count)){
  377. $redis->set('ranking'.$id,0);
  378. }
  379. $count = empty($count) ? 0 : $count;
  380. return $count;
  381. }
  382. /**
  383. * 藏品信息存入redis hash
  384. */
  385. function setCollectionInfoHash($id){
  386. $info = Db::name('store_collection')->where('id',$id)->find();
  387. $redis = new \think\cache\driver\Redis();
  388. $array = ['collection'.$id=>json_encode($info)];
  389. $redis->hMSet('collectionInfo',$array);
  390. }
  391. /**
  392. * 获取用户购买数量
  393. */
  394. function getByCount($mid,$id){
  395. $redis = new \think\cache\driver\Redis();
  396. $count = $redis->get('UserByCount_'.$mid.$id);
  397. if (empty($count) && $count!=0){
  398. // $count = Db::name('store_order')
  399. // ->where('mid',$mid)
  400. // ->where('c_id',$id)
  401. // ->whereIn('status','0,1')
  402. // ->sum('num');
  403. // $count = $count ? $count : 0;
  404. $count = 0;
  405. $redis->Incrby('UserByCount_'.$mid.$id,$count);
  406. }
  407. return $count;
  408. }
  409. /**
  410. * 用户购买数量增加
  411. */
  412. function IncrByCount($mid,$id,$number){
  413. $redis = new \think\cache\driver\Redis();
  414. $redis->Incrby('UserByCount_'.$mid.$id,$number);
  415. }
  416. /**
  417. * 用户购买数量减少
  418. */
  419. function DecrByCount($mid,$id,$number){
  420. $redis = new \think\cache\driver\Redis();
  421. $redis->Decrby('UserByCount_'.$mid.$id,$number);
  422. }
  423. /**
  424. * 获取藏品hash redis长度
  425. */
  426. function getLenCollection($id){
  427. $redis = new \think\cache\driver\Redis();
  428. $count = $redis->Llen('collectionHash_'.$id);
  429. if (!$count){
  430. $count = Db::name('hash')
  431. ->where('goods_id',$id)
  432. ->where('status',0)
  433. ->count();
  434. }
  435. return $count;
  436. }
  437. /**
  438. * 获取藏品信息
  439. */
  440. function getCollectionInfoHash($id)
  441. {
  442. $redis = new \think\cache\driver\Redis();
  443. $info = $redis->hGet('collectionInfo','collection'.$id);
  444. if (!$info){
  445. $info = Db::name('store_collection')->where('id',$id)->find();
  446. $array = ['collection'.$id=>json_encode($info)];
  447. $redis->hMSet('collectionInfo',$array);
  448. }else{
  449. $info = json_decode($info,true);
  450. }
  451. return $info;
  452. }
  453. /**
  454. * 收集下单用户id
  455. */
  456. function setCollectionBuyUser($mid){
  457. $redis = new \think\cache\driver\Redis();
  458. $array = [$mid=>1];
  459. $redis->hMSet('buyUserInfo',$array);
  460. }
  461. /*
  462. * 微信支付账户
  463. */
  464. function retrunWxConfig(){
  465. $config = [
  466. 'app_id' => 'wxa6980453638c9c78',
  467. 'mch_id' =>'1623128602',
  468. 'key' =>'qwertyuiopASDFGHJKLZXCVBNM123456',
  469. ];
  470. return $config;
  471. }
  472. /**
  473. * 获取离线账户
  474. */
  475. function getOfflineAccount(){
  476. $url = 'http://192.144.219.204:8083/ddc/createAccount';
  477. return file_get_contents($url);
  478. }
  479. /**
  480. * 获取链账户
  481. */
  482. function getWalletAddress($phone){
  483. $url = 'http://39.107.12.194:8088/register?accountName='.$phone;
  484. $res=curlRequest($url);
  485. if ($res){
  486. $res = json_decode($res,true);
  487. if ($res['code']=='200'){
  488. return $res['result']['userAddressStr'];
  489. }
  490. }
  491. return false;
  492. }
  493. /**
  494. * 获取公司生成的hash
  495. */
  496. function getCompanyHash($id){
  497. $redis = new \think\cache\driver\Redis();
  498. $hash = $redis->lPop('collectionHash_'.$id);
  499. if (!$hash){
  500. $hash = Db::name('hash')->where('goods_id',$id)
  501. ->where('status',0)
  502. ->order('id asc')
  503. ->field('hash,create_at')
  504. ->limit(1)
  505. ->find();
  506. }else{
  507. $hash = json_decode($hash,true);
  508. }
  509. return $hash;
  510. }
  511. /**
  512. * 获取排名
  513. */
  514. function getTag($id,$now,$num){
  515. $len = strlen($num);
  516. $re = 'SZSJ'.$id.'#';
  517. switch ($len){
  518. case 1:
  519. $re = $re.'0'.$now;
  520. break;
  521. case 2:
  522. if ($now<10){
  523. $re = $re.'0'.$now;
  524. }else{
  525. $re = $re.$now;
  526. }
  527. break;
  528. case 3:
  529. if ($now<10){
  530. $re = $re.'00'.$now;
  531. }elseif ($now>=10 && $now<100){
  532. $re = $re.'0'.$now;
  533. }else{
  534. $re = $re.$now;
  535. }
  536. break;
  537. case 4:
  538. if ($now<10){
  539. $re = $re.'000'.$now;
  540. }elseif ($now>=10 && $now<100){
  541. $re = $re.'00'.$now;
  542. }elseif ($now>=100 && $now<1000){
  543. $re = $re.'0'.$now;
  544. }else{
  545. $re = $re.$now;
  546. }
  547. break;
  548. case 5:
  549. if ($now<10){
  550. $re = $re.'0000'.$now;
  551. }elseif ($now>=10 && $now<100){
  552. $re = $re.'000'.$now;
  553. }elseif ($now>=100 && $now<1000){
  554. $re = $re.'00'.$now;
  555. }elseif ($now>=1000 && $now<10000){
  556. $re = $re.'0'.$now;
  557. }else{
  558. $re = $re.$now;
  559. }
  560. break;
  561. case 6:
  562. if ($now<10){
  563. $re = $re.'00000'.$now;
  564. }elseif ($now>=10 && $now<100){
  565. $re = $re.'0000'.$now;
  566. }elseif ($now>=100 && $now<1000){
  567. $re = $re.'000'.$now;
  568. }elseif ($now>=1000 && $now<10000){
  569. $re = $re.'00'.$now;
  570. }elseif ($now>=10000 && $now<100000){
  571. $re = $re.'0'.$now;
  572. }else{
  573. $re = $re.$now;
  574. }
  575. break;
  576. case 7:
  577. if ($now<10){
  578. $re = $re.'000000'.$now;
  579. }elseif ($now>=10 && $now<100){
  580. $re = $re.'00000'.$now;
  581. }elseif ($now>=100 && $now<1000){
  582. $re = $re.'0000'.$now;
  583. }elseif ($now>=1000 && $now<10000){
  584. $re = $re.'000'.$now;
  585. }elseif ($now>=10000 && $now<100000){
  586. $re = $re.'00'.$now;
  587. }elseif ($now>=100000 && $now<1000000){
  588. $re = $re.'0'.$now;
  589. }else{
  590. $re = $re.$now;
  591. }
  592. break;
  593. }
  594. $re = $re.'/'.$num;
  595. return $re;
  596. }
  597. /**
  598. * 判断藏品是否设置过提醒
  599. */
  600. function getRemind($mid,$c_id){
  601. return Db::name('store_collection_remind')->where('mid',$mid)->where('c_id',$c_id)->count();
  602. }
  603. /**
  604. * 变更会员积分等
  605. * @param int $money 余额
  606. * @param int $user_id 会员ID
  607. * @param string $memo 备注
  608. */
  609. function memberMoneyChange($num, $type , $m_id, $title, $pm = 0,$link_id=0)
  610. {
  611. $member = Db::name('store_member')->where('id',$m_id)->find();
  612. switch ($type){
  613. case 1: //积分
  614. $before = $member['integral'];
  615. if ($pm==1)
  616. $after = $member['integral']+$num;
  617. else
  618. $after = $member['integral']-$num;
  619. $update_data = ['integral'=>$after];
  620. break;
  621. case 2: //抢购卡
  622. $before = $member['snap_card'];
  623. if ($pm==1)
  624. $after = $member['snap_card']+$num;
  625. else
  626. $after = $member['snap_card']-$num;
  627. $update_data = ['snap_card'=>$after];
  628. break;
  629. case 3: //余额
  630. $before = $member['money'];
  631. if ($pm==1)
  632. $after = $member['money']+$num;
  633. else
  634. $after = $member['money']-$num;
  635. $update_data = ['money'=>$after];
  636. break;
  637. }
  638. Db::startTrans();
  639. try {
  640. Db::name('store_member')->where('id',$m_id)->update($update_data);
  641. $data = [
  642. 'm_id'=>$m_id,
  643. 'type'=>$type,
  644. 'pm'=>$pm,
  645. 'title'=>$title,
  646. 'change'=>$num,
  647. 'before'=>$before,
  648. 'after'=>$after,
  649. 'link_id'=>$link_id
  650. ];
  651. Db::name('store_member_log')->insert($data);
  652. Db::commit();
  653. return true;
  654. }catch (\Exception $e){
  655. Db::rollback();
  656. return false;
  657. }
  658. }
  659. /**
  660. * 获取单个系统配置信息
  661. */
  662. function getConfigValue($name){
  663. return Db::name('system_config')->where('name',$name)->value('value');
  664. }
  665. /**
  666. * 判断藏品状态
  667. */
  668. function checkCollectionState($id=''){
  669. if ($id){
  670. $info = Db::name('store_collection')->where('id',$id)->find();
  671. $now_inventory = getCollectionInventory($id);
  672. if (!empty($v['endtime']) && strtotime($info['endtime'])<time()){
  673. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>4]);
  674. }else{
  675. if ($info['state']==1){
  676. if ($now_inventory<=0){
  677. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>3]);
  678. }
  679. }else if($info['state']==2){
  680. if (strtotime($info['sell_time'])<=time()){
  681. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
  682. }
  683. }else if($info['state']==3){
  684. if ($now_inventory>0){
  685. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
  686. }
  687. }else if($info['state']==4){
  688. if ($now_inventory>0){
  689. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
  690. }elseif (strtotime($info['sell_time'])<=time()){
  691. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
  692. }elseif ($now_inventory<=0){
  693. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>3]);
  694. }
  695. }
  696. }
  697. }else{
  698. $list = Db::name('store_collection')
  699. ->whereIn('state','1,2,3,4')
  700. ->where('status',1)
  701. ->where('is_deleted',0)
  702. ->select();
  703. foreach ($list as &$v){
  704. $now_inventory = getCollectionInventory($v['id']);
  705. if (!empty($v['endtime']) && strtotime($v['endtime'])<time()){
  706. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>4]);
  707. }else{
  708. if ($v['state']==1){
  709. if ($now_inventory<=0){
  710. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>3]);
  711. }
  712. }elseif ($v['state']==2){
  713. if (strtotime($v['sell_time'])<=time()){
  714. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
  715. }
  716. }elseif ($v['state']==3){
  717. if ($now_inventory>0){
  718. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
  719. }
  720. }else if($v['state']==4){
  721. if ($now_inventory>0){
  722. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
  723. }elseif (strtotime($v['sell_time'])<=time()){
  724. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
  725. }elseif ($now_inventory<=0){
  726. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>3]);
  727. }
  728. }
  729. }
  730. }
  731. }
  732. }
  733. /**
  734. * 判断藏品状态
  735. */
  736. function checkSynCollectionState($id=''){
  737. if ($id){
  738. $info = Db::name('store_collection')->where('id',$id)->find();
  739. $now_inventory = getCollectionInventory($id);
  740. if ($info['sy_state']==1){
  741. if ($now_inventory<=0){
  742. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>4]);
  743. }elseif(strtotime($info['end_time'])<time()){
  744. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>3]);
  745. }
  746. }elseif ($info['sy_state']==2){
  747. if (strtotime($info['sell_time'])<=time()){
  748. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>1]);
  749. }elseif ($now_inventory<=0){
  750. Db::name('store_collection')->where('id',$info['id'])->update(['sy_state'=>4]);
  751. }
  752. }
  753. }else{
  754. $list = Db::name('store_collection')
  755. ->where('type',2)
  756. ->whereIn('sy_state','1,2')
  757. ->where('is_deleted',0)
  758. ->select();
  759. foreach ($list as &$v){
  760. $now_inventory = getCollectionInventory($v['id']);
  761. if ($v['sy_state']==1){
  762. if ($now_inventory<=0){
  763. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>4]);
  764. }elseif(strtotime($v['end_time'])<time()){
  765. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>3]);
  766. }
  767. }elseif ($v['sy_state']==2){
  768. if (strtotime($v['sell_time'])<=time()){
  769. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>1]);
  770. }elseif ($now_inventory<=0){
  771. Db::name('store_collection')->where('id',$v['id'])->update(['sy_state'=>4]);
  772. }
  773. }
  774. }
  775. }
  776. }
  777. /**
  778. * redis加锁
  779. */
  780. function redisSetNx($key,$exptime){
  781. $redis = new \think\cache\driver\Redis(['select'=>2]);
  782. $is_lock = $redis->setnx($key,time()+$exptime);
  783. if ($is_lock){
  784. return true;
  785. }else{
  786. //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
  787. $val = $redis->get($key);
  788. if ($val && $val<time()){
  789. $redis->del($key);
  790. }
  791. return $redis->setnx($key,time()+$exptime);
  792. }
  793. }
  794. /**
  795. * 删除锁
  796. */
  797. function DelRedisSetNx($key){
  798. $redis = new \think\cache\driver\Redis(['select'=>2]);
  799. $redis->del($key);
  800. }
  801. /**
  802. * 盲盒信息存入redis hash
  803. */
  804. function setBoxInfoHash($id){
  805. $info = Db::name('store_collection')->where('id',$id)->find();
  806. $redis = new \think\cache\driver\Redis();
  807. $array = ['collection'.$id=>json_encode($info)];
  808. $redis->hMSet('collectionInfo',$array);
  809. }
  810. /**
  811. * 获取0的数量
  812. */
  813. function get0number($n){
  814. if ($n==1){
  815. return '00000000000';
  816. }elseif ($n==2){
  817. return '0000000000';
  818. }elseif ($n==3){
  819. return '000000000';
  820. }elseif ($n==4){
  821. return '00000000';
  822. }elseif ($n==5){
  823. return '0000000';
  824. }elseif ($n==6){
  825. return '000000';
  826. }elseif ($n==7){
  827. return '00000';
  828. }elseif ($n==8){
  829. return '0000';
  830. }elseif ($n==9){
  831. return '000';
  832. }elseif ($n==10){
  833. return '00';
  834. }elseif ($n==11){
  835. return '0';
  836. }
  837. }
  838. /***********************************************人脸识别*****************************************************************/
  839. /**
  840. * 获取accesstoken
  841. * @return mixed
  842. */
  843. function getAccessToken(){
  844. $appid_id =getFaceInfo()['appid'];
  845. $secret = getFaceInfo()['secret'];
  846. $grant_type = 'client_credential';
  847. $version = '1.0.0';
  848. $url = "https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/access_token?app_id=".$appid_id."&secret=".$secret."&grant_type=".$grant_type."&version=".$version;
  849. $result = curlRequest($url);
  850. $result = json_decode($result,true);
  851. if ($result['code']==0){
  852. return $result;
  853. }
  854. echo $result['msg'];die;
  855. }
  856. /**
  857. * 获取api_ticket
  858. */
  859. function getApiTicket($type,$userId=''){
  860. $appid_id =getFaceInfo()['appid'];
  861. $access_token = getAccessToken()['access_token'];
  862. $version = '1.0.0';
  863. $url = "https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/api_ticket?app_id=".$appid_id."&access_token=".$access_token."&type=".$type."&version=".$version;
  864. if ($type=='NONCE'){
  865. $url .= "&user_id=".$userId;
  866. }
  867. $result = curlRequest($url);
  868. $result = json_decode($result,true);
  869. if ($result['code']==0){
  870. return $result;
  871. }
  872. echo $result['msg'];die;
  873. }
  874. /**
  875. * 生成签名
  876. */
  877. function generateSign($userId){
  878. $wbappid = getFaceInfo()['appid'];
  879. $version = '1.0.0';
  880. $ticket = getApiTicket('SIGN')['tickets'][0]['value'];
  881. $nonce = get32Str();
  882. // $array = ['wbappid'=>$wbappid, 'userId'=>"$userId",'nonce'=>$nonce, 'version'=>$version, 'ticket'=>$ticket];
  883. $array = [$wbappid, "$userId",$nonce, $version, $ticket];
  884. file_put_contents("signLog.txt", json_encode($array) . "\n" . "\n", FILE_APPEND);
  885. sort($array);
  886. $str='';
  887. foreach ($array as $kk=>$vv){
  888. $str .=$vv;
  889. }
  890. // echo $str;die;
  891. $result = strtoupper(sha1($str));
  892. $res['sign'] = $result;
  893. $res['nonce'] = $nonce;
  894. $res['appid'] = $wbappid;
  895. return $res;
  896. }
  897. /**
  898. * 合作方后台上送身份信息
  899. */
  900. function getfaceid($name,$idNo,$userId){
  901. $webankAppId = getFaceInfo()['appid'];
  902. $orderNo = get32Str();
  903. $sign = generateSign($userId);
  904. $data = [
  905. 'webankAppId'=>$webankAppId,
  906. 'orderNo'=>$orderNo,
  907. 'name'=>$name,
  908. 'idNo'=>$idNo,
  909. 'userId'=>"$userId",
  910. 'version'=>'1.0.0',
  911. 'sign'=>$sign['sign'],
  912. 'nonce'=>$sign['nonce']
  913. ];
  914. $headers = [];
  915. array_push($headers, "Content-Type".":"."application/json; charset=UTF-8");
  916. $url = 'https://miniprogram-kyc.tencentcloudapi.com/api/server/getfaceid?orderNo='.$orderNo;
  917. $result = curlRequest($url,$headers,json_encode($data),'POST');
  918. $result = json_decode($result,true);
  919. if ($result['code']==0){
  920. $data = [
  921. 'appid'=>$sign['appid'],
  922. 'userID'=>"$userId",
  923. 'sign'=>$sign['sign'],
  924. 'nonce'=>$sign['nonce'],
  925. 'sdksign'=>SdkSign($userId,$sign['nonce']),
  926. 'result'=>$result['result'],
  927. ];
  928. return $data;
  929. }
  930. echo $result['msg'];die;
  931. }
  932. /**
  933. * 生成 SDK 接口调用步骤使用签名
  934. */
  935. function SdkSign($userId,$nonce){
  936. $wbappid = getFaceInfo()['appid'];
  937. $version = '1.0.0';
  938. $ticket = getApiTicket('NONCE',$userId)['tickets'][0]['value'];
  939. //$nonce = get32Str();
  940. $array = [$wbappid, "$userId",$nonce, $version, $ticket];
  941. file_put_contents("sdksignLog.txt", json_encode($array) . "\n" . "\n", FILE_APPEND);
  942. sort($array);
  943. $str='';
  944. foreach ($array as $kk=>$vv){
  945. $str .=$vv;
  946. }
  947. $result = strtoupper(sha1($str));
  948. return $result;
  949. }
  950. function getFaceInfo(){
  951. //正式
  952. $date = [
  953. 'appid'=>'IDAKcvCn',
  954. 'secret'=>'L1id3z5zROK8SVXg72ZyZXc8ziniYLKpOnIzN1gecrBaEMaKIlKrreyRGCLU2z4l'
  955. ];
  956. //测试
  957. // $date = [
  958. // 'appid'=>'TIDA3uGO',
  959. // 'secret'=>'z41IysbEhRy5oR4Qs2kFfVkrufXIJMtsJOQ3eulkWwXwdKG772LSSiZsKKwfsv9n'
  960. // ];
  961. return $date;
  962. }
  963. //将数组转成uri字符串
  964. function formatBizQueryParaMap($paraMap, $urlencode)
  965. {
  966. $buff = "";
  967. ksort($paraMap);
  968. foreach ($paraMap as $k => $v)
  969. {
  970. if($urlencode)
  971. {
  972. $v = urlencode($v);
  973. }
  974. // $buff .= strtolower($k) . "=" . $v . "&";
  975. $buff .= $v;
  976. }
  977. if (strlen($buff) > 0)
  978. {
  979. $reqPar = substr($buff, 0, strlen($buff)-1);
  980. }
  981. return $reqPar;
  982. }
  983. /**
  984. * 生成32位随机数
  985. */
  986. function get32Str($length='32'){
  987. $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
  988. $len = strlen($str)-1;
  989. $randstr = '';
  990. for ($i=0;$i<$length;$i++) {
  991. $num=mt_rand(0,$len);
  992. $randstr .= $str[$num];
  993. }
  994. return $randstr;
  995. }
  996. /**
  997. * 盲盒藏品库存和藏品状态判断
  998. * @param $proArr
  999. * @return int|string
  1000. */
  1001. function checkBoxCollection($coll_id){
  1002. $list = Db::name('store_box')
  1003. ->where('status',1)
  1004. ->where('coll_id',$coll_id)
  1005. ->where('is_del',1)
  1006. ->field('id,is_prize,prize')
  1007. ->select();
  1008. foreach ($list as &$v){
  1009. if ($v['is_prize']==1){
  1010. $info = Db::name('store_collection')->where('id',$v['prize'])->find();
  1011. $now_inventory = getCollectionInventory($info['id']);
  1012. if ($now_inventory<=0 || $info['status']==0 || $info['is_deleted']==1){
  1013. Db::name('store_blind_box')->where('id',$v['id'])->update(['status'=>0]);
  1014. }
  1015. }
  1016. }
  1017. }
  1018. function get_order_sn(){
  1019. $order_id_main = date('YmdHis') . rand(10000000,99999999);
  1020. $order_id_len = strlen($order_id_main);
  1021. $order_id_sum = 0;
  1022. for($i=0; $i<$order_id_len; $i++){
  1023. $order_id_sum += (int)(substr($order_id_main,$i,1));
  1024. }
  1025. $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
  1026. return $osn;
  1027. }
  1028. /**
  1029. * 生成二维码
  1030. */
  1031. function setqrcode($value,$name){
  1032. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/user';
  1033. if(!file_exists($dir)){
  1034. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  1035. mkdir($dir, 0700,true);
  1036. }
  1037. $filename = $dir.'/'.$name.'.png';
  1038. QRcode::png($value,$filename,QR_ECLEVEL_L,7);
  1039. return 'http://'.$_SERVER['SERVER_NAME']."/user/".$name.'.png';
  1040. }
  1041. //生成邀请二维码
  1042. function setintivecode($user_id){
  1043. $name = $user_id."_".time();
  1044. //$address = 'http://'.$_SERVER['SERVER_NAME'].'/pages/mine/zhuce?invite_code='.$user_id;
  1045. $address = 'https://meme.mememeta.cn/pages/mine/zhuce?invite_code='.$user_id;
  1046. $url = setqrcode($address,$name);
  1047. return $url;
  1048. }
  1049. //邀请地址
  1050. function getintiveaddress($user_id){
  1051. //$address = 'http://'.$_SERVER['SERVER_NAME'].'/pages/mine/zhuce?invite_code='.$user_id;
  1052. $address = 'https://meme.mememeta.cn/pages/mine/zhuce?invite_code='.$user_id;
  1053. return $address;
  1054. }
  1055. /**
  1056. * @param $url
  1057. * @param array $headers
  1058. * @param array $body
  1059. * @param string $method
  1060. * @return bool|string
  1061. */
  1062. function curlRequest($url, $headers = [], $body = [], $method = "GET")
  1063. {
  1064. $ch = curl_init();
  1065. curl_setopt($ch, CURLOPT_URL, $url);
  1066. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
  1067. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
  1068. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
  1069. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  1070. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  1071. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  1072. curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
  1073. $output = curl_exec($ch);
  1074. curl_close($ch);
  1075. return $output;
  1076. }
  1077. /**
  1078. * 盲盒藏品库存和藏品状态判断
  1079. * @param $proArr
  1080. * @return int|string
  1081. */
  1082. function checkBox(){
  1083. $list = Db::name('store_blind_box')
  1084. ->where('status',1)
  1085. ->where('is_del',1)
  1086. ->field('id,is_prize,prize')
  1087. ->select();
  1088. foreach ($list as &$v){
  1089. if ($v['is_prize']==1){
  1090. $info = Db::name('store_collection')->where('id',$v['prize'])->find();
  1091. if ($info['now_inventory']<=0 || $info['status']==0 || $info['is_deleted']==1){
  1092. Db::name('store_blind_box')->where('id',$v['id'])->update(['status'=>0]);
  1093. }
  1094. }
  1095. }
  1096. }
  1097. //计算中奖概率
  1098. function get_rand($proArr) {
  1099. $result = '';
  1100. //概率数组的总概率精度
  1101. $proSum = array_sum($proArr);
  1102. // var_dump($proSum);
  1103. //概率数组循环
  1104. foreach ($proArr as $key => $proCur) {
  1105. $randNum = mt_rand(1, $proSum); //返回随机整数
  1106. if ($randNum <= $proCur) {
  1107. $result = $key;
  1108. break;
  1109. } else {
  1110. $proSum -= $proCur;
  1111. }
  1112. }
  1113. unset ($proArr);
  1114. return $result;
  1115. }
  1116. /**
  1117. * 获取链上ip
  1118. */
  1119. function getIpAddress(){
  1120. $address = 'http://39.101.185.150:8083/';
  1121. return $address;
  1122. }
  1123. /**
  1124. * 调试函数
  1125. */
  1126. function debug($str){
  1127. $str = var_export($str,true).PHP_EOL;
  1128. $str.= date('Y-m-d H:i:s').' ';
  1129. $str.= $_SERVER['REMOTE_ADDR'].' ';
  1130. $str.= $_SERVER['REQUEST_METHOD'].': ';
  1131. // $str.=$_SERVER['HTTP_HOST'];
  1132. $str.= $_SERVER['REQUEST_URI'].''.PHP_EOL.PHP_EOL;
  1133. $str='<?php exit();?>'.PHP_EOL.$str;
  1134. error_log($str,3,"debug.log");
  1135. }