Recharge.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\RechargeModel;
  4. use app\api\model\UsersModel;
  5. use app\common\controller\Api;
  6. use app\common\lib\WxPay;
  7. /**
  8. * 充值接口
  9. */
  10. class Recharge extends Api
  11. {
  12. protected $noNeedLogin = '*';
  13. /**
  14. * 充值页面
  15. *
  16. * @ApiTitle (充值页面)
  17. * @ApiSummary (充值页面)
  18. * @ApiMethod (POST)
  19. * @ApiRoute (/api/recharge/rechargePage)
  20. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  21. */
  22. public function rechargePage()
  23. {
  24. $userId = $this->request->post('user_id');
  25. if (!$userId) {
  26. $this->result('参数错误', [], 100);
  27. }
  28. if (!UsersModel::checkUserExist($userId)) {
  29. $this->result('用户不存在', [], 100);
  30. }
  31. $user = UsersModel::get($userId);
  32. $this->result('ok', ['quota' => $user->vip_discount_quota], 200);
  33. }
  34. /**
  35. * 话费充值
  36. *
  37. * @ApiTitle (话费充值)
  38. * @ApiSummary (话费充值)
  39. * @ApiMethod (POST)
  40. * @ApiRoute (/api/recharge/recharge)
  41. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  42. * @ApiParams (name="price", type="int", required=true, description="充值面额")
  43. * @ApiParams (name="tel", type="string", required=true, description="充值手机号")
  44. * @ApiParams (name="pay_type", type="int", required=true, description="支付方式 1-微信 2-支付宝")
  45. */
  46. public function recharge()
  47. {
  48. $userId = $this->request->post('user_id');
  49. $price = $this->request->post('price');
  50. $tel = $this->request->post('tel');
  51. $payType = $this->request->post('pay_type');
  52. if (!$userId || !$price || !$tel || !$payType) {
  53. $this->result('参数错误', [], 100);
  54. }
  55. $user = UsersModel::get($userId);
  56. if (!$user) {
  57. $this->result('用户不存在', [], 100);
  58. }
  59. if ($user->user_level == 1) {
  60. $this->result('您还不是VIP用户,不能进行充值', [], 100);
  61. }
  62. // 检测手机号是否可以充值
  63. $url = 'http://op.juhe.cn/ofpay/mobile/telcheck?phoneno='.$tel.'&cardnum='.$price.'&key=f5ff49671fede25118a6b01131ff88a4';
  64. $res = $this->sendRequest($url);
  65. if ($res['error_code'] != 0) {
  66. $this->result('充值错误,请检查手机号码是否正确', [], 100);
  67. }
  68. $final_fee = $price * 0.88;
  69. // 生成充值订单
  70. $out_trade_no = createOutTradeNo();
  71. $orderInfo = array(
  72. 'uid' => $userId,
  73. 'tel' => $tel,
  74. 'price' => $price,
  75. 'create_time' => date('Y-m-d H:i:s', time()),
  76. 'pay_type' => $payType,
  77. 'out_trade_no' => $out_trade_no,
  78. 'final_fee' => $final_fee
  79. );
  80. $add = RechargeModel::create($orderInfo);
  81. if ($add) {
  82. if ($payType == 1) {
  83. $notify_url = config('site.httpurl').'/api/recharge/recharge_wx_notify';
  84. $payObj = new WxPay();
  85. $getPrePayInfo = $payObj->getPrePayOrder('话费充值', $out_trade_no, ($final_fee * 100), $notify_url);
  86. $getPayInfo = $payObj->getOrder($getPrePayInfo['prepay_id']);
  87. $this->result('订单创建成功', $getPayInfo, 200);
  88. }
  89. if ($payType == 2) {
  90. $this->result('订单创建成功', [], 200);
  91. }
  92. } else {
  93. $this->result('订单创建失败', [], 200);
  94. }
  95. }
  96. /**
  97. * 1
  98. * @ApiInternal
  99. */
  100. public function sendRequest($url)
  101. {
  102. $ch = curl_init();
  103. curl_setopt($ch, CURLOPT_URL, $url);
  104. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  105. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  106. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  107. $output = curl_exec($ch);
  108. curl_close($ch);
  109. return json_decode($output, true);
  110. }
  111. /**
  112. * 话费充值微信支付异步回调
  113. * @ApiInternal
  114. */
  115. public function recharge_wx_notify()
  116. {
  117. }
  118. }