common.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. * 获取系统配置
  79. * @param $array
  80. * @return array
  81. * @throws \think\db\exception\DataNotFoundException
  82. * @throws \think\db\exception\ModelNotFoundException
  83. * @throws \think\exception\DbException
  84. */
  85. function getConfig($array){
  86. $set = Db::table('system_config')->where('name','in',$array)->select();
  87. $ret = [];
  88. foreach ($set as $value) {
  89. $ret[$value['name']]=$value['value'];
  90. }
  91. return $ret;
  92. }
  93. /**
  94. * @title 取消订单定时任务
  95. * @desc 十五分钟内未支付的自动取消
  96. */
  97. function cancel_goods_order($user_id = 0)
  98. {
  99. $set_time = intval(sysconf('cancel_time')) ? : 5;// 没设置默认5分钟未支付的自动取消
  100. $sel_time = time() - $set_time * 60 ;
  101. $where = [];
  102. $where[] = ['create_at','< time',date('Y-m-d H:i:s',$sel_time)];
  103. $where[] = ['status','=',0];
  104. $where[] = ['cancel_state','=',0];
  105. if($user_id) $where[] = ['uid','=',$user_id];
  106. $order_data = Db::table('goods_order')
  107. ->where($where)
  108. ->select();
  109. foreach ($order_data as $order_info) {
  110. Db::startTrans();
  111. try {
  112. Db::table('goods_order')->where(['id'=>$order_info['id']])
  113. ->update(['status'=>9,'cancel_state'=>1,'cancel_at'=>date('Y-m-d H:i:s'),'cancel_desc'=>'支付超时!自动取消']);
  114. Db::table('store_goods')->where('id', $order_info['goods_id'])
  115. ->setInc('stock', $order_info['goods_num']);
  116. Db::commit();
  117. }catch (\Exception $e){
  118. Db::rollback();
  119. }
  120. }
  121. }