common.php 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257
  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 = "95ec5cd8c54d4ced9220caebdaa5d750";
  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 = "c8fd88cc95dd46fa8c50b05d219824ed";
  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. if($res){
  220. $res = json_decode($res,true);
  221. if($res['data']['result'] == 1){
  222. return 1;
  223. }else{
  224. return 0;
  225. }
  226. }else{
  227. return 0;
  228. }
  229. }
  230. function shoucang(){
  231. $host = "http://180.76.141.31:8888/cz/call";
  232. $method = "POST";
  233. $headers = array();
  234. array_push($headers, "Content-Type".":"."application/json; charset=UTF-8");
  235. $bodys = array(
  236. 'key' => 'test2',
  237. 'userkey' => '12344',
  238. 'product' => json_encode(array('name'=>'test','count'=>7))
  239. );
  240. $curl = curl_init();
  241. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  242. curl_setopt($curl, CURLOPT_URL, $host);
  243. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  244. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  245. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  246. curl_setopt($curl, CURLOPT_HEADER, false);
  247. if (1 == strpos("$".$host, "https://"))
  248. {
  249. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  250. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  251. }
  252. curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($bodys));
  253. $res = curl_exec($curl);
  254. var_dump($res);exit();
  255. }
  256. /**
  257. * 大师提前分钟数存入redis
  258. */
  259. function setAdvanceMinutes(){
  260. $redis = new \think\cache\driver\Redis();
  261. $value = Db::name('system_config')->where('name','advance_minutes')->value('value');
  262. $redis->set('advance_minutes',$value);
  263. }
  264. /**
  265. * 获取大师提前分钟数
  266. */
  267. function getAdvanceMinutes(){
  268. $redis = new \think\cache\driver\Redis();
  269. $value = $redis->get('advance_minutes');
  270. if (empty($value)){
  271. $value = Db::name('system_config')->where('name','advance_minutes')->value('value');
  272. $redis->set('advance_minutes',$value);
  273. }
  274. return $value;
  275. }
  276. /**
  277. * 获取自动取消分钟数
  278. */
  279. function getCancelTime(){
  280. return Db::name('system_config')->where('name','cancel_time')->value('value');
  281. }
  282. /**
  283. * 用户信息存入redis hash
  284. */
  285. function setMemberInfoHash($member_id){
  286. $info = Db::name('store_member')->where('id',$member_id)->find();
  287. $redis = new \think\cache\driver\Redis();
  288. $array = ['member'.$member_id=>json_encode($info)];
  289. $redis->hMSet('memberInfo',$array);
  290. }
  291. /**
  292. * redis获取用户信息
  293. */
  294. function getMemberInfoHash($member_id){
  295. $redis = new \think\cache\driver\Redis();
  296. $info = $redis->hGet('memberInfo','member'.$member_id);
  297. if (!$info){
  298. $info = Db::name('store_member')->where('id',$member_id)->find();
  299. $array = ['member'.$member_id=>json_encode($info)];
  300. $redis->hMSet('memberInfo',$array);
  301. }else{
  302. $info = json_decode($info,true);
  303. }
  304. return $info;
  305. }
  306. /**
  307. * 用户抢购卡数量存入redis 字符串
  308. */
  309. function setMembercard($member_id){
  310. $snap_card = Db::name('store_member')->where('id',$member_id)->value('snap_card');
  311. $redis = new \think\cache\driver\Redis();
  312. $redis->set('membercard_'.$member_id,$snap_card);
  313. }
  314. /**
  315. * 获取用户抢购卡数量
  316. */
  317. function getMembercard($member_id){
  318. $redis = new \think\cache\driver\Redis();
  319. $count = $redis->get('membercard_'.$member_id);
  320. if (empty($count)){
  321. $count = Db::name('store_member')->where('id',$member_id)->value('snap_card');
  322. $redis->set('membercard_'.$member_id,$count);
  323. }
  324. return $count;
  325. }
  326. /**
  327. * 减掉用户抢购卡数量(减1)
  328. */
  329. function loseMembercard($id){
  330. $redis = new \think\cache\driver\Redis();
  331. $redis->Decr('membercard_'.$id);
  332. }
  333. /**
  334. * 增加用户抢购卡数量(加1)
  335. */
  336. function addMembercard($id){
  337. $redis = new \think\cache\driver\Redis();
  338. $redis->Incr('membercard_'.$id);
  339. }
  340. /**
  341. * 获取藏品库存
  342. */
  343. function getCollectionInventory($id){
  344. $redis = new \think\cache\driver\Redis();
  345. $count = $redis->get('collection_count_'.$id);
  346. // if (empty($count)){
  347. // $redis->set('collection_count_'.$id,0);
  348. // }
  349. return $count ? $count : 0;
  350. }
  351. /**
  352. * 减掉藏品库存
  353. */
  354. function loseCollectionInventory($id,$num){
  355. $redis = new \think\cache\driver\Redis();
  356. $redis->Decrby('collection_count_'.$id,$num);
  357. }
  358. /**
  359. * 加藏品库存
  360. */
  361. function addCollectionInventory($id,$num){
  362. $redis = new \think\cache\driver\Redis();
  363. $redis->Incrby('collection_count_'.$id,$num);
  364. }
  365. /**
  366. * 用户购买藏品排名更新
  367. */
  368. function saveRanking($id){
  369. $redis = new \think\cache\driver\Redis();
  370. $redis->Incr('ranking'.$id);
  371. }
  372. /**
  373. * 获取用户购买藏品排名更新
  374. */
  375. function getRanking($id){
  376. $redis = new \think\cache\driver\Redis();
  377. $count = $redis->get('ranking'.$id);
  378. if (empty($count)){
  379. $redis->set('ranking'.$id,0);
  380. }
  381. $count = empty($count) ? 0 : $count;
  382. return $count;
  383. }
  384. /**
  385. * 藏品信息存入redis hash
  386. */
  387. function setCollectionInfoHash($id){
  388. $info = Db::name('store_collection')->where('id',$id)->find();
  389. $redis = new \think\cache\driver\Redis();
  390. $array = ['collection'.$id=>json_encode($info)];
  391. $redis->hMSet('collectionInfo',$array);
  392. }
  393. /**
  394. * 获取用户购买数量
  395. */
  396. function getByCount($mid,$id){
  397. $redis = new \think\cache\driver\Redis();
  398. $count = $redis->get('UserByCount_'.$mid.$id);
  399. if (empty($count) && $count!=0){
  400. // $count = Db::name('store_order')
  401. // ->where('mid',$mid)
  402. // ->where('c_id',$id)
  403. // ->whereIn('status','0,1')
  404. // ->sum('num');
  405. // $count = $count ? $count : 0;
  406. $count = 0;
  407. $redis->Incrby('UserByCount_'.$mid.$id,$count);
  408. }
  409. return $count;
  410. }
  411. /**
  412. * 用户购买数量增加
  413. */
  414. function IncrByCount($mid,$id,$number){
  415. $redis = new \think\cache\driver\Redis();
  416. $redis->Incrby('UserByCount_'.$mid.$id,$number);
  417. }
  418. /**
  419. * 用户购买数量减少
  420. */
  421. function DecrByCount($mid,$id,$number){
  422. $redis = new \think\cache\driver\Redis();
  423. $redis->Decrby('UserByCount_'.$mid.$id,$number);
  424. }
  425. /**
  426. * 获取藏品hash redis长度
  427. */
  428. function getLenCollection($id){
  429. $redis = new \think\cache\driver\Redis();
  430. $count = $redis->Llen('collectionHash_'.$id);
  431. if (!$count){
  432. $count = Db::name('hash')
  433. ->where('goods_id',$id)
  434. ->where('status',0)
  435. ->count();
  436. }
  437. return $count;
  438. }
  439. /**
  440. * 获取藏品信息
  441. */
  442. function getCollectionInfoHash($id)
  443. {
  444. $redis = new \think\cache\driver\Redis();
  445. $info = $redis->hGet('collectionInfo','collection'.$id);
  446. if (!$info){
  447. $info = Db::name('store_collection')->where('id',$id)->find();
  448. $array = ['collection'.$id=>json_encode($info)];
  449. $redis->hMSet('collectionInfo',$array);
  450. }else{
  451. $info = json_decode($info,true);
  452. }
  453. return $info;
  454. }
  455. /**
  456. * 收集下单用户id
  457. */
  458. function setCollectionBuyUser($mid){
  459. $redis = new \think\cache\driver\Redis();
  460. $array = [$mid=>1];
  461. $redis->hMSet('buyUserInfo',$array);
  462. }
  463. /*
  464. * 微信支付账户
  465. */
  466. function retrunWxConfig(){
  467. $config = [
  468. 'app_id' => 'wx8e47a12d0a1c007f',
  469. 'mch_id' =>'1627327076',
  470. 'key' =>'dguiadak46574hbfkjshfns55f87s5sd',
  471. ];
  472. return $config;
  473. }
  474. /**
  475. * 获取离线账户
  476. */
  477. function getOfflineAccount(){
  478. $url = 'http://192.144.219.204:8083/ddc/createAccount';
  479. return file_get_contents($url);
  480. }
  481. /**
  482. * 获取链账户
  483. */
  484. function getWalletAddress($phone){
  485. $url = getIpAddress().'register?accountName='.$phone;
  486. $res=curlRequest($url);
  487. if ($res){
  488. $res = json_decode($res,true);
  489. if ($res['code']=='200'){
  490. return $res['result']['userAddressStr'];
  491. }
  492. }
  493. return false;
  494. }
  495. /**
  496. * 获取公司生成的hash
  497. */
  498. function getCompanyHash($id){
  499. $redis = new \think\cache\driver\Redis();
  500. $hash = $redis->lPop('collectionHash_'.$id);
  501. if (!$hash){
  502. $hash = Db::name('hash')->where('goods_id',$id)
  503. ->where('status',0)
  504. ->order('id asc')
  505. ->field('hash,create_at')
  506. ->limit(1)
  507. ->find();
  508. }else{
  509. $hash = json_decode($hash,true);
  510. }
  511. return $hash;
  512. }
  513. /**
  514. * 获取排名
  515. */
  516. function getTag($id,$now,$num){
  517. $len = strlen($num);
  518. $re = 'XL'.$id.'#';
  519. switch ($len){
  520. case 1:
  521. $re = $re.'0'.$now;
  522. break;
  523. case 2:
  524. if ($now<10){
  525. $re = $re.'0'.$now;
  526. }else{
  527. $re = $re.$now;
  528. }
  529. break;
  530. case 3:
  531. if ($now<10){
  532. $re = $re.'00'.$now;
  533. }elseif ($now>=10 && $now<100){
  534. $re = $re.'0'.$now;
  535. }else{
  536. $re = $re.$now;
  537. }
  538. break;
  539. case 4:
  540. if ($now<10){
  541. $re = $re.'000'.$now;
  542. }elseif ($now>=10 && $now<100){
  543. $re = $re.'00'.$now;
  544. }elseif ($now>=100 && $now<1000){
  545. $re = $re.'0'.$now;
  546. }else{
  547. $re = $re.$now;
  548. }
  549. break;
  550. case 5:
  551. if ($now<10){
  552. $re = $re.'0000'.$now;
  553. }elseif ($now>=10 && $now<100){
  554. $re = $re.'000'.$now;
  555. }elseif ($now>=100 && $now<1000){
  556. $re = $re.'00'.$now;
  557. }elseif ($now>=1000 && $now<10000){
  558. $re = $re.'0'.$now;
  559. }else{
  560. $re = $re.$now;
  561. }
  562. break;
  563. case 6:
  564. if ($now<10){
  565. $re = $re.'00000'.$now;
  566. }elseif ($now>=10 && $now<100){
  567. $re = $re.'0000'.$now;
  568. }elseif ($now>=100 && $now<1000){
  569. $re = $re.'000'.$now;
  570. }elseif ($now>=1000 && $now<10000){
  571. $re = $re.'00'.$now;
  572. }elseif ($now>=10000 && $now<100000){
  573. $re = $re.'0'.$now;
  574. }else{
  575. $re = $re.$now;
  576. }
  577. break;
  578. }
  579. $re = $re.'/'.$num;
  580. return $re;
  581. }
  582. /**
  583. * 判断藏品是否设置过提醒
  584. */
  585. function getRemind($mid,$c_id){
  586. return Db::name('store_collection_remind')->where('mid',$mid)->where('c_id',$c_id)->count();
  587. }
  588. /**
  589. * 变更会员积分等
  590. * @param int $money 余额
  591. * @param int $user_id 会员ID
  592. * @param string $memo 备注
  593. */
  594. function memberMoneyChange($num, $type , $m_id, $title, $pm = 0,$link_id=0,$change_type = 0)
  595. {
  596. $member = Db::name('store_member')->where('id',$m_id)->find();
  597. $is_inc = $pm == 1 ? 1 : -1;
  598. switch ($type){
  599. case 1: //积分
  600. $before = $member['integral'];
  601. if ($pm==1)
  602. $after = $member['integral']+$num;
  603. else
  604. $after = $member['integral']-$num;
  605. $update_data = ['integral'=>Db::raw('integral +'.$num*$is_inc)];
  606. break;
  607. case 2: //抢购卡
  608. $before = $member['snap_card'];
  609. if ($pm==1)
  610. $after = $member['snap_card']+$num;
  611. else
  612. $after = $member['snap_card']-$num;
  613. $update_data = ['snap_card'=>Db::raw('snap_card +'.$num*$is_inc)];
  614. break;
  615. case 3: //余额
  616. $before = $member['money'];
  617. if ($pm==1)
  618. $after = $member['money']+$num;
  619. else
  620. $after = $member['money']-$num;
  621. $update_data = ['money'=>Db::raw('money +'.$num*$is_inc)];
  622. break;
  623. }
  624. Db::startTrans();
  625. try {
  626. Db::name('store_member')->where('id',$m_id)->update($update_data);
  627. $data = [
  628. 'm_id'=>$m_id,
  629. 'type'=>$type,
  630. 'pm'=>$pm,
  631. 'title'=>$title,
  632. 'change'=>$num,
  633. 'before'=>$before,
  634. 'after'=>$after,
  635. 'link_id'=>$link_id,
  636. 'change_type'=>$change_type
  637. ];
  638. Db::name('store_member_log')->insert($data);
  639. Db::commit();
  640. return true;
  641. }catch (\Exception $e){
  642. Db::rollback();
  643. return false;
  644. }
  645. }
  646. /**
  647. * 变更会员等级
  648. * @param int $vid 等级
  649. * @param int $user_id 会员ID
  650. * @param array $other 其他
  651. */
  652. function memberVipChange($vid, $user_id, $other = [])
  653. {
  654. $member = Db::name('store_member')->where('id',$user_id)->find();
  655. //数据
  656. $before = $member['vip'];
  657. $after = $vid;
  658. //新等级小于等级 则不升级
  659. if($after <= $before && $other['status'] == 1){
  660. return false;
  661. }
  662. $update_data['vip'] = $vid;
  663. Db::startTrans();
  664. try {
  665. Db::name('store_member')->where('id',$user_id)->update($update_data);
  666. $data = [
  667. 'mid' => $user_id,
  668. 'oldvid' => $before,
  669. 'vid' => $after,
  670. 'type' => $other['type'],
  671. 'status' => $other['status'],
  672. 'desc' => $other['desc'],
  673. 'order_table' => $other['order_table'],
  674. 'order_id' => $other['order_id'],
  675. ];
  676. Db::name('store_vipuser')->insert($data);
  677. Db::commit();
  678. return true;
  679. }catch (\Exception $e){
  680. Db::rollback();
  681. return false;
  682. }
  683. }
  684. /**
  685. * 获取单个系统配置信息
  686. */
  687. function getConfigValue($name){
  688. return Db::name('system_config')->where('name',$name)->value('value');
  689. }
  690. /**
  691. * 判断藏品状态
  692. */
  693. function checkCollectionState($id=''){
  694. if ($id){
  695. $info = Db::name('store_collection')->field('id,sell_time,state,now_inventory')->where('id',$id)->find();
  696. $now_inventory = getCollectionInventory($id);
  697. if ($info['state']==1){
  698. if ($now_inventory<=0){
  699. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>3]);
  700. }
  701. }else if($info['state']==2){
  702. if (strtotime($info['sell_time'])<=time()){
  703. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
  704. }
  705. }else if($info['state']==3){
  706. if ($now_inventory>0){
  707. Db::name('store_collection')->where('id',$info['id'])->update(['state'=>1]);
  708. }
  709. }
  710. }else{
  711. $list = Db::name('store_collection')
  712. ->field('id,sell_time,state,now_inventory')
  713. ->where('is_deleted',0)
  714. ->select();
  715. foreach ($list as &$v){
  716. $now_inventory = getCollectionInventory($v['id']);
  717. if ($v['state']==1){
  718. if ($now_inventory<=0 || $v['now_inventory'] == 0){
  719. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>3]);
  720. }
  721. }elseif ($v['state']==2){
  722. if (strtotime($v['sell_time'])<=time()){
  723. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
  724. }
  725. }elseif ($v['state']==3){
  726. if ($now_inventory>0){
  727. Db::name('store_collection')->where('id',$v['id'])->update(['state'=>1]);
  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($id){
  781. $redis = new \think\cache\driver\Redis();
  782. $key = 'stock_'.$id;
  783. $exptime = 10;
  784. $is_lock = $redis->setnx($key,time()+$exptime);
  785. if ($is_lock){
  786. return true;
  787. }else{
  788. //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
  789. $val = $redis->get($key);
  790. if ($val && $val<time()){
  791. $redis->del($key);
  792. }
  793. return $redis->setnx($key,time()+$exptime);
  794. }
  795. }
  796. /**
  797. * 删除锁
  798. */
  799. function DelRedisSetNx($id){
  800. $redis = new \think\cache\driver\Redis();
  801. $key = 'stock_'.$id;
  802. $redis->del($key);
  803. }
  804. /**
  805. * 盲盒信息存入redis hash
  806. */
  807. function setBoxInfoHash($id){
  808. $info = Db::name('store_collection')->where('id',$id)->find();
  809. $redis = new \think\cache\driver\Redis();
  810. $array = ['collection'.$id=>json_encode($info)];
  811. $redis->hMSet('collectionInfo',$array);
  812. }
  813. /**
  814. * 获取0的数量
  815. */
  816. function get0number($n){
  817. if ($n==1){
  818. return '00000000000';
  819. }elseif ($n==2){
  820. return '0000000000';
  821. }elseif ($n==3){
  822. return '000000000';
  823. }elseif ($n==4){
  824. return '00000000';
  825. }elseif ($n==5){
  826. return '0000000';
  827. }elseif ($n==6){
  828. return '000000';
  829. }elseif ($n==7){
  830. return '00000';
  831. }elseif ($n==8){
  832. return '0000';
  833. }elseif ($n==9){
  834. return '000';
  835. }elseif ($n==10){
  836. return '00';
  837. }elseif ($n==11){
  838. return '0';
  839. }
  840. }
  841. /***********************************************人脸识别*****************************************************************/
  842. /**
  843. * 获取accesstoken
  844. * @return mixed
  845. */
  846. function getAccessToken(){
  847. $appid_id =getFaceInfo()['appid'];
  848. $secret = getFaceInfo()['secret'];
  849. $grant_type = 'client_credential';
  850. $version = '1.0.0';
  851. $url = "https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/access_token?app_id=".$appid_id."&secret=".$secret."&grant_type=".$grant_type."&version=".$version;
  852. $result = curlRequest($url);
  853. $result = json_decode($result,true);
  854. if ($result['code']==0){
  855. return $result;
  856. }
  857. echo $result['msg'];die;
  858. }
  859. /**
  860. * 获取api_ticket
  861. */
  862. function getApiTicket($type,$userId=''){
  863. $appid_id =getFaceInfo()['appid'];
  864. $access_token = getAccessToken()['access_token'];
  865. $version = '1.0.0';
  866. $url = "https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/api_ticket?app_id=".$appid_id."&access_token=".$access_token."&type=".$type."&version=".$version;
  867. if ($type=='NONCE'){
  868. $url .= "&user_id=".$userId;
  869. }
  870. $result = curlRequest($url);
  871. $result = json_decode($result,true);
  872. if ($result['code']==0){
  873. return $result;
  874. }
  875. echo $result['msg'];die;
  876. }
  877. /**
  878. * 生成签名
  879. */
  880. function generateSign($userId){
  881. $wbappid = getFaceInfo()['appid'];
  882. $version = '1.0.0';
  883. $ticket = getApiTicket('SIGN')['tickets'][0]['value'];
  884. $nonce = get32Str();
  885. // $array = ['wbappid'=>$wbappid, 'userId'=>"$userId",'nonce'=>$nonce, 'version'=>$version, 'ticket'=>$ticket];
  886. $array = [$wbappid, "$userId",$nonce, $version, $ticket];
  887. file_put_contents("signLog.txt", json_encode($array) . "\n" . "\n", FILE_APPEND);
  888. sort($array);
  889. $str='';
  890. foreach ($array as $kk=>$vv){
  891. $str .=$vv;
  892. }
  893. // echo $str;die;
  894. $result = strtoupper(sha1($str));
  895. $res['sign'] = $result;
  896. $res['nonce'] = $nonce;
  897. $res['appid'] = $wbappid;
  898. return $res;
  899. }
  900. /**
  901. * 合作方后台上送身份信息
  902. */
  903. function getfaceid($name,$idNo,$userId){
  904. $webankAppId = getFaceInfo()['appid'];
  905. $orderNo = get32Str();
  906. $sign = generateSign($userId);
  907. $data = [
  908. 'webankAppId'=>$webankAppId,
  909. 'orderNo'=>$orderNo,
  910. 'name'=>$name,
  911. 'idNo'=>$idNo,
  912. 'userId'=>"$userId",
  913. 'version'=>'1.0.0',
  914. 'sign'=>$sign['sign'],
  915. 'nonce'=>$sign['nonce']
  916. ];
  917. $headers = [];
  918. array_push($headers, "Content-Type".":"."application/json; charset=UTF-8");
  919. $url = 'https://miniprogram-kyc.tencentcloudapi.com/api/server/getfaceid?orderNo='.$orderNo;
  920. $result = curlRequest($url,$headers,json_encode($data),'POST');
  921. $result = json_decode($result,true);
  922. if ($result['code']==0){
  923. $data = [
  924. 'appid'=>$sign['appid'],
  925. 'userID'=>"$userId",
  926. 'sign'=>$sign['sign'],
  927. 'nonce'=>$sign['nonce'],
  928. 'sdksign'=>SdkSign($userId,$sign['nonce']),
  929. 'result'=>$result['result'],
  930. ];
  931. return $data;
  932. }
  933. echo $result['msg'];die;
  934. }
  935. /**
  936. * 生成 SDK 接口调用步骤使用签名
  937. */
  938. function SdkSign($userId,$nonce){
  939. $wbappid = getFaceInfo()['appid'];
  940. $version = '1.0.0';
  941. $ticket = getApiTicket('NONCE',$userId)['tickets'][0]['value'];
  942. //$nonce = get32Str();
  943. $array = [$wbappid, "$userId",$nonce, $version, $ticket];
  944. file_put_contents("sdksignLog.txt", json_encode($array) . "\n" . "\n", FILE_APPEND);
  945. sort($array);
  946. $str='';
  947. foreach ($array as $kk=>$vv){
  948. $str .=$vv;
  949. }
  950. $result = strtoupper(sha1($str));
  951. return $result;
  952. }
  953. function getFaceInfo(){
  954. //正式
  955. $date = [
  956. 'appid'=>'IDAKcvCn',
  957. 'secret'=>'L1id3z5zROK8SVXg72ZyZXc8ziniYLKpOnIzN1gecrBaEMaKIlKrreyRGCLU2z4l'
  958. ];
  959. //测试
  960. // $date = [
  961. // 'appid'=>'TIDA3uGO',
  962. // 'secret'=>'z41IysbEhRy5oR4Qs2kFfVkrufXIJMtsJOQ3eulkWwXwdKG772LSSiZsKKwfsv9n'
  963. // ];
  964. return $date;
  965. }
  966. //将数组转成uri字符串
  967. function formatBizQueryParaMap($paraMap, $urlencode)
  968. {
  969. $buff = "";
  970. ksort($paraMap);
  971. foreach ($paraMap as $k => $v)
  972. {
  973. if($urlencode)
  974. {
  975. $v = urlencode($v);
  976. }
  977. // $buff .= strtolower($k) . "=" . $v . "&";
  978. $buff .= $v;
  979. }
  980. if (strlen($buff) > 0)
  981. {
  982. $reqPar = substr($buff, 0, strlen($buff)-1);
  983. }
  984. return $reqPar;
  985. }
  986. /**
  987. * 生成??位随机数
  988. */
  989. function get32Str($length='32'){
  990. // $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
  991. $str = 'abcdefghijklmnopqrstuvwxyz0123456789';
  992. $len = strlen($str)-1;
  993. $randstr = '';
  994. for ($i=0;$i<$length;$i++) {
  995. $num=mt_rand(0,$len);
  996. $randstr .= $str[$num];
  997. }
  998. return $randstr;
  999. }
  1000. function get_order_sn(){
  1001. $order_id_main = date('YmdHis') . rand(10000000,99999999);
  1002. $order_id_len = strlen($order_id_main);
  1003. $order_id_sum = 0;
  1004. for($i=0; $i<$order_id_len; $i++){
  1005. $order_id_sum += (int)(substr($order_id_main,$i,1));
  1006. }
  1007. $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
  1008. return $osn;
  1009. }
  1010. /**
  1011. * 生成二维码
  1012. */
  1013. function setqrcode($value,$name){
  1014. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/user';
  1015. if(!file_exists($dir)){
  1016. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  1017. mkdir($dir, 0700,true);
  1018. }
  1019. $filename = $dir.'/'.$name.'.png';
  1020. QRcode::png($value,$filename,QR_ECLEVEL_L,7);
  1021. return 'http://'.$_SERVER['SERVER_NAME']."/user/".$name.'.png';
  1022. }
  1023. //生成邀请二维码
  1024. function setintivecode($user_id){
  1025. $name = $user_id."_".time();
  1026. $address = 'http://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/mine/zhuce?invite_code='.$user_id;
  1027. $url = setqrcode($address,$name);
  1028. return $url;
  1029. }
  1030. //邀请地址
  1031. function getintiveaddress($user_id){
  1032. $address = 'http://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/mine/zhuce?invite_code='.$user_id;
  1033. return $address;
  1034. }
  1035. /**
  1036. * @param $url
  1037. * @param array $headers
  1038. * @param array $body
  1039. * @param string $method
  1040. * @return bool|string
  1041. */
  1042. function curlRequest($url, $headers = [], $body = [], $method = "GET")
  1043. {
  1044. $ch = curl_init();
  1045. curl_setopt($ch, CURLOPT_URL, $url);
  1046. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
  1047. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
  1048. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
  1049. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  1050. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  1051. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  1052. curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
  1053. $output = curl_exec($ch);
  1054. curl_close($ch);
  1055. return $output;
  1056. }
  1057. /**
  1058. * 盲盒藏品库存和藏品状态判断
  1059. * @param $proArr
  1060. * @return int|string
  1061. */
  1062. function checkBox(){
  1063. $list = Db::name('store_blind_box')
  1064. ->where('status',1)
  1065. ->where('is_del',1)
  1066. ->field('id,is_prize,prize')
  1067. ->select();
  1068. foreach ($list as &$v){
  1069. if ($v['is_prize']==1){
  1070. $info = Db::name('store_collection')->where('id',$v['prize'])->find();
  1071. if ($info['now_inventory']<=0 || $info['status']==0 || $info['is_deleted']==1){
  1072. Db::name('store_blind_box')->where('id',$v['id'])->update(['status'=>0]);
  1073. }
  1074. }
  1075. }
  1076. }
  1077. //计算中奖概率
  1078. function get_rand($proArr) {
  1079. $result = '';
  1080. //概率数组的总概率精度
  1081. $proSum = array_sum($proArr);
  1082. // var_dump($proSum);
  1083. //概率数组循环
  1084. foreach ($proArr as $key => $proCur) {
  1085. $randNum = mt_rand(1, $proSum); //返回随机整数
  1086. if ($randNum <= $proCur) {
  1087. $result = $key;
  1088. break;
  1089. } else {
  1090. $proSum -= $proCur;
  1091. }
  1092. }
  1093. unset ($proArr);
  1094. return $result;
  1095. }
  1096. /**
  1097. * 调试函数
  1098. */
  1099. function debug($str){
  1100. $str = var_export($str,true).PHP_EOL;
  1101. $str.= date('Y-m-d H:i:s').' ';
  1102. $str.= $_SERVER['REMOTE_ADDR'].' ';
  1103. $str.= $_SERVER['REQUEST_METHOD'].': ';
  1104. // $str.=$_SERVER['HTTP_HOST'];
  1105. $str.= $_SERVER['REQUEST_URI'].''.PHP_EOL.PHP_EOL;
  1106. $str='<?php exit();?>'.PHP_EOL.$str;
  1107. error_log($str,3,"debug.log");
  1108. }
  1109. /**
  1110. * 获取链上ip
  1111. */
  1112. function getIpAddress(){
  1113. $address = 'http://47.111.246.47:8088/';
  1114. return $address;
  1115. }