Index.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\library\Sms as Smslib;
  5. use app\common\model\Ad;
  6. use app\common\model\Mobile;
  7. use app\common\model\MobileOrder;
  8. use app\common\model\User;
  9. use think\Hook;
  10. use app\service\GantanhaoService;
  11. use app\common\model\LogisticsCompany;
  12. /**
  13. * 首页
  14. * @inheritdoc
  15. */
  16. class Index extends Api
  17. {
  18. protected $noNeedLogin = '*';
  19. protected $noNeedRight = '*';
  20. /**
  21. * 敢探号订单异步通知
  22. */
  23. public function gantanhaoNotify(){
  24. $data = request()->param();
  25. user_log('gantanhaoNotify', $data);
  26. if(isset($data['msg']) && $data['msg'] == 'success'){
  27. die('SUCCESS');
  28. }
  29. elseif(GantanhaoService::checkSignNotify($data)){
  30. $order = MobileOrder::where('order_no', $data['outer_id'])->find();
  31. if($order){
  32. if(in_array($data['status'], ['-120', '-200', '-460'])){
  33. $order->status = 110;
  34. }
  35. //已发货
  36. elseif($data['status'] == '550'){
  37. $order->status = 23;
  38. //$id = LogisticsCompany::where('name', 'like', '%'.$data['tracking_company'].'%')->value('id');
  39. $id = LogisticsCompany::where('gth_name',$data['tracking_company'])->value('id');
  40. $order->trans_name = $data['tracking_company'];
  41. $order->trans_id = $id ?: null;
  42. $order->trans_no = $data['tracking_number'];
  43. $order->send_time= time();
  44. }
  45. //订单终止
  46. elseif($data['status'] == '0'){
  47. $order->status = 50;
  48. }
  49. $order->gantanhao_data_notify = json_encode($data);
  50. $order->save();
  51. die('SUCCESS');
  52. }
  53. }
  54. }
  55. }