common.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php
  2. // 接口公共方法
  3. use think\Db;
  4. use think\cache\driver\Redis;
  5. //function get_order_sn(){
  6. // $order_id_main = date('YmdHis') . rand(10000000,99999999);
  7. // $order_id_len = strlen($order_id_main);
  8. // $order_id_sum = 0;
  9. // for($i=0; $i<$order_id_len; $i++){
  10. // $order_id_sum += (int)(substr($order_id_main,$i,1));
  11. // }
  12. // $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
  13. // return $osn;
  14. //}
  15. // 生成消息记录
  16. function send_user_message($user_id,$type_id,$content){
  17. $msg_data =[
  18. 'user_id' => $user_id,
  19. 'type_id' => $type_id,
  20. 'content' => $content,
  21. 'create_at' => date('Y-m-d H:i:s'),
  22. ];
  23. Db::table('user_message')->insert($msg_data);
  24. return Db::getLastInsID();
  25. }
  26. function goods_sell_info($goods_info,$user_id,$from_id = 0)
  27. {
  28. $sell_info =[
  29. 'goods_id'=>$goods_info['id'],
  30. 'goods_type'=>$goods_info['type'],
  31. 'user_id'=>$user_id,
  32. 'year'=> date('Y'),
  33. 'month'=> date('m'),
  34. 'day'=> date('d'),
  35. 'from_id'=> $from_id,
  36. 'goods_info'=>json_encode($goods_info)
  37. ];
  38. Db::table('goods_sell_info')->insert($sell_info);
  39. }
  40. /**
  41. * 获取商品hash值
  42. * @param $user_id 用户id
  43. * @param $name 商品id
  44. * @param $count 收藏数量
  45. * @return string
  46. */
  47. function get_goods_hash($user_id,$name='',$count = 0){
  48. $host = "http://101.200.81.225:9090/contract/call";
  49. //$host = "http://jc.nfrcn.vip:9090/contract/call";
  50. $method = "POST";
  51. $headers = array();
  52. array_push($headers, "Content-Type".":"."application/json; charset=UTF-8");
  53. $bodys = [
  54. 'key' => 'JDchinahgsc20220035',
  55. 'userkey' =>$user_id,
  56. 'product' => json_encode(['name'=>$name,'count'=>$count])
  57. ];
  58. $curl = curl_init();
  59. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  60. curl_setopt($curl, CURLOPT_URL, $host);
  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. if (1 == strpos("$".$host, "https://"))
  66. {
  67. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  68. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  69. }
  70. curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($bodys));
  71. $res = curl_exec($curl);
  72. if(!$res) return ['hash_str'=>''];
  73. $hash_res = json_decode($res,true);
  74. return [
  75. 'hash_str'=> isset($hash_res['code']) && $hash_res['code'] == 200 ? $hash_res['data']['contentHash']:'',// 哈希
  76. ];
  77. }
  78. /**
  79. * 获取系统配置
  80. * @param $array
  81. * @return array
  82. * @throws \think\db\exception\DataNotFoundException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. * @throws \think\exception\DbException
  85. */
  86. function getConfig($array){
  87. $set = Db::table('system_config')->where('name','in',$array)->select();
  88. $ret = [];
  89. foreach ($set as $value) {
  90. $ret[$value['name']]=$value['value'];
  91. }
  92. return $ret;
  93. }
  94. /**
  95. * @title 取消订单定时任务
  96. * @desc 十五分钟内未支付的自动取消
  97. */
  98. function cancel_goods_order($user_id = 0)
  99. {
  100. $set_time = intval(sysconf('cancel_time')) ? : 5;// 没设置默认5分钟未支付的自动取消
  101. $sel_time = time() - $set_time * 60 ;
  102. $where = [];
  103. $where[] = ['create_at','< time',date('Y-m-d H:i:s',$sel_time)];
  104. $where[] = ['status','=',0];
  105. $where[] = ['cancel_state','=',0];
  106. if($user_id) $where[] = ['uid','=',$user_id];
  107. $order_data = Db::table('goods_order')
  108. ->where($where)
  109. ->select();
  110. foreach ($order_data as $order_info) {
  111. Db::startTrans();
  112. try {
  113. Db::table('goods_order')->where(['id'=>$order_info['id']])
  114. ->update(['status'=>9,'cancel_state'=>1,'cancel_at'=>date('Y-m-d H:i:s'),'cancel_desc'=>'支付超时!自动取消']);
  115. Db::table('store_goods')->where('id', $order_info['goods_id'])
  116. ->setInc('stock', $order_info['goods_num']);
  117. Db::commit();
  118. }catch (\Exception $e){
  119. Db::rollback();
  120. }
  121. }
  122. }
  123. // 商品抽签
  124. function goods_draw($goods_id){
  125. $redis = new Redis();
  126. $goods_info = Db::name('store_collect')->find($goods_id);
  127. $stock = $redis->get('collection_count_'.$goods_id);
  128. if(!$stock) return ['code'=>201,'msg'=>'商品库存不足'];
  129. $apply_list = Db::name('store_collection_draw')->where(['coll_id'=>$goods_id,'is_ballot'=>0])->column('id,user_id,code');
  130. shuffle($apply_list);// 打乱申请记录顺序
  131. $ballot = array_slice($apply_list,0,$stock);//截取数据
  132. $ballot_ids = array_column($ballot,'id');
  133. $ballot_user = array_column($ballot,'user_id');
  134. Db::name('store_collection_draw')->where(['coll_id'=>$goods_id,'is_ballot'=>0])->whereIn('id',implode($ballot_ids))->update(['is_ballot'=>1]);
  135. Db::name('store_collection_draw')->where(['coll_id'=>$goods_id,'is_ballot'=>0])->whereNotIn('id',implode($ballot_ids))->update(['is_ballot'=>2]);
  136. Db::name('store_collect')->where('id',$goods_id)->update(['is_task'=>1]);
  137. $redis->hMSet('lucky_draw',['goods_id_'.$goods_id=>json_encode($ballot_user)]);
  138. return ['code'=>200,'msg'=>'ok'];
  139. }