common.php 27 KB

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