common.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?php
  2. // 接口公共方法
  3. use think\Db;
  4. function get_order_sn(){
  5. $order_id_main = date('YmdHis') . rand(10000000,99999999);
  6. $order_id_len = strlen($order_id_main);
  7. $order_id_sum = 0;
  8. for($i=0; $i<$order_id_len; $i++){
  9. $order_id_sum += (int)(substr($order_id_main,$i,1));
  10. }
  11. $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
  12. return $osn;
  13. }
  14. // 生成消息记录
  15. function send_user_message($user_id,$type_id,$content){
  16. $msg_data =[
  17. 'user_id' => $user_id,
  18. 'type_id' => $type_id,
  19. 'content' => $content,
  20. 'create_at' => date('Y-m-d H:i:s'),
  21. ];
  22. Db::table('user_message')->insert($msg_data);
  23. return Db::getLastInsID();
  24. }
  25. function goods_sell_info($goods_info,$user_id,$from_id = 0)
  26. {
  27. $sell_info =[
  28. 'goods_id'=>$goods_info['id'],
  29. 'goods_type'=>$goods_info['type'],
  30. 'user_id'=>$user_id,
  31. 'year'=> date('Y'),
  32. 'month'=> date('m'),
  33. 'day'=> date('d'),
  34. 'from_id'=> $from_id,
  35. 'goods_info'=>json_encode($goods_info)
  36. ];
  37. Db::table('goods_sell_info')->insert($sell_info);
  38. }
  39. /**
  40. * 获取商品hash值
  41. * @param $user_id 用户id
  42. * @param $name 商品id
  43. * @param $count 收藏数量
  44. * @return string
  45. */
  46. function get_goods_hash($user_id,$name='',$count = 0){
  47. $host = "http://101.200.81.225:9090/contract/call";
  48. //$host = "http://jc.nfrcn.vip:9090/contract/call";
  49. $method = "POST";
  50. $headers = array();
  51. array_push($headers, "Content-Type".":"."application/json; charset=UTF-8");
  52. $bodys = [
  53. 'key' => 'JDchinahgsc20220035',
  54. 'userkey' =>$user_id,
  55. 'product' => json_encode(['name'=>$name,'count'=>$count])
  56. ];
  57. $curl = curl_init();
  58. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  59. curl_setopt($curl, CURLOPT_URL, $host);
  60. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  61. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  62. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  63. curl_setopt($curl, CURLOPT_HEADER, false);
  64. if (1 == strpos("$".$host, "https://"))
  65. {
  66. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  67. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  68. }
  69. curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($bodys));
  70. $res = curl_exec($curl);
  71. if(!$res) return ['hash_str'=>''];
  72. $hash_res = json_decode($res,true);
  73. return [
  74. 'hash_str'=> isset($hash_res['code']) && $hash_res['code'] == 200 ? $hash_res['data']['contentHash']:'',// 哈希
  75. ];
  76. }
  77. /**
  78. * @title 取消订单定时任务
  79. * @desc 十五分钟内未支付的自动取消
  80. */
  81. function cancel_goods_order($user_id = 0)
  82. {
  83. $set_time = intval(sysconf('cancel_time')) ? : 5;// 没设置默认5分钟未支付的自动取消
  84. $sel_time = time() - $set_time * 60 ;
  85. $where = [];
  86. $where[] = ['create_at','< time',date('Y-m-d H:i:s',$sel_time)];
  87. $where[] = ['status','=',0];
  88. $where[] = ['cancel_state','=',0];
  89. if($user_id) $where[] = ['uid','=',$user_id];
  90. $order_data = Db::table('goods_order')
  91. ->where($where)
  92. ->select();
  93. foreach ($order_data as $order_info) {
  94. Db::startTrans();
  95. try {
  96. Db::table('goods_order')->where(['id'=>$order_info['id']])
  97. ->update(['status'=>9,'cancel_state'=>1,'cancel_at'=>date('Y-m-d H:i:s'),'cancel_desc'=>'支付超时!自动取消']);
  98. Db::table('store_goods')->where('id', $order_info['goods_id'])
  99. ->setInc('stock', $order_info['goods_num']);
  100. Db::commit();
  101. }catch (\Exception $e){
  102. Db::rollback();
  103. }
  104. }
  105. }