Recharge.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\library\Shande;
  4. use think\Db;
  5. use think\Exception;
  6. /**
  7. * @title 余额充值
  8. * @controller Recharge
  9. * @group base
  10. */
  11. class Recharge extends Base
  12. {
  13. public function initialize(){
  14. parent::initialize();
  15. parent::check_login();
  16. }
  17. /**
  18. * @title 余额充值
  19. * @desc 余额充值
  20. * @author Qc
  21. * @url /api/Recharge/voucher
  22. * @method POST
  23. * @header name:Authorization require:1 desc:Token
  24. * @param name:money type:int require:1 default:1 desc:充值金额
  25. * @return name:order_no type:string default:0 desc:支付单号
  26. * @return name:id type:int default:0 desc:支付订单id
  27. * @return name:extend type:int default:0 desc:用户id
  28. * @return name:pay type:array default:0 desc:支付信息
  29. * @return name:pay.body type:array default:0 desc:支付信息
  30. * @return name:pay.totalAmount type:string default:0 desc:支付金额【000000010000是100元】
  31. * @return name:pay.orderCode type:string default:0 desc:支付单号
  32. * @return name:pay.credential type:string default:0 desc:正书
  33. */
  34. public function voucher()
  35. {
  36. if (redisSetNx($this->request->action().$this->uid,3)) {
  37. $money = input('post.money',0);
  38. if($money <=0 ) $this->error('充值金额有误!');
  39. $money = bcadd($money,0,2);
  40. $user = Db::name('store_member')->where('id',$this->uid)->find();
  41. Db::startTrans();
  42. try{
  43. $voucher_order = [
  44. 'mid' => $this->uid ,
  45. 'total_price' => $money,
  46. 'order_no' =>get_order_sn(),
  47. 'pay_no' =>get_order_sn(),
  48. 'create_at' => date("Y-m-d H:i:s"),
  49. 'pay_type' => 'sd'
  50. ];
  51. $order_id = Db::table('store_recharge_order')->insertGetId($voucher_order);
  52. $notify_url = $this->request->root(true) . '/api/Pay/walletNotify';
  53. $client = new Shande();
  54. $total_fee = $money*100;
  55. $lenth = strlen($total_fee);
  56. $total_fee = get0number($lenth).$total_fee;
  57. $result = $client->orderPay($voucher_order['pay_no'],$total_fee,'订单充值',$notify_url,'https://'.$_SERVER['HTTP_HOST'].'/h5/pages/mine/mine',$user['bank_num']);
  58. $retrun_data['order_no'] = $voucher_order['pay_no'];
  59. $retrun_data['extend'] = $this->uid;
  60. $retrun_data['pay'] = json_decode($result['data'],true);
  61. if( $retrun_data['pay']['head']['respCode'] != '00000')$this->error($retrun_data['pay']['head']['respMsg'].'请重新下单');
  62. Db::commit();
  63. }catch (\Exception $e){
  64. Db::rollback();
  65. DelRedisSetNx($this->request->action().$this->uid);
  66. $this->error($e->getMessage());
  67. }
  68. DelRedisSetNx($this->request->action().$this->uid);
  69. $this->success('ok',$retrun_data);
  70. }else{
  71. $this->error('服务器繁忙');
  72. }
  73. }
  74. }