Api.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <?php
  2. namespace addons\epay\controller;
  3. use addons\epay\library\Service;
  4. use addons\epay\library\Wechat;
  5. use addons\third\model\Third;
  6. use app\common\library\Auth;
  7. use app\common\model\Order;
  8. use app\common\model\User;
  9. use think\addons\Controller;
  10. use think\Response;
  11. use think\Session;
  12. use Yansongda\Pay\Exceptions\GatewayException;
  13. use Yansongda\Pay\Pay;
  14. /**
  15. * API接口控制器
  16. *
  17. * @package addons\epay\controller
  18. */
  19. class Api extends Controller
  20. {
  21. protected $layout = 'default';
  22. protected $config = [];
  23. /**
  24. * 默认方法
  25. */
  26. public function index()
  27. {
  28. return;
  29. }
  30. /**
  31. * 外部提交
  32. */
  33. public function submit()
  34. {
  35. $this->request->filter('trim');
  36. $out_trade_no = $this->request->request("out_trade_no");
  37. $title = $this->request->request("title");
  38. $amount = $this->request->request('amount');
  39. $type = $this->request->request('type');
  40. $method = $this->request->request('method', 'web');
  41. $openid = $this->request->request('openid', '');
  42. $auth_code = $this->request->request('auth_code', '');
  43. $notifyurl = $this->request->request('notifyurl', '');
  44. $returnurl = $this->request->request('returnurl', '');
  45. if (!$amount || $amount < 0) {
  46. $this->error("支付金额必须大于0");
  47. }
  48. if (!$type || !in_array($type, ['alipay', 'wechat'])) {
  49. $this->error("支付类型错误");
  50. }
  51. $params = [
  52. 'type' => $type,
  53. 'out_trade_no' => $out_trade_no,
  54. 'title' => $title,
  55. 'amount' => $amount,
  56. 'method' => $method,
  57. 'openid' => $openid,
  58. 'auth_code' => $auth_code,
  59. 'notifyurl' => $notifyurl,
  60. 'returnurl' => $returnurl,
  61. ];
  62. return Service::submitOrder($params);
  63. }
  64. /**
  65. * 微信支付(公众号支付&PC扫码支付)
  66. * @return string
  67. */
  68. public function wechat()
  69. {
  70. $config = Service::getConfig('wechat');
  71. $isWechat = stripos($this->request->server('HTTP_USER_AGENT'), 'MicroMessenger') !== false;
  72. $isMobile = $this->request->isMobile();
  73. $this->view->assign("isWechat", $isWechat);
  74. $this->view->assign("isMobile", $isMobile);
  75. //发起PC支付(Scan支付)(PC扫码模式)
  76. if ($this->request->isAjax()) {
  77. $pay = Pay::wechat($config);
  78. $orderid = $this->request->post("orderid");
  79. try {
  80. $result = $pay->find($orderid, 'scan');
  81. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  82. $this->success("", "", ['status' => $result['trade_state']]);
  83. } else {
  84. $this->error("查询失败");
  85. }
  86. } catch (GatewayException $e) {
  87. $this->error("查询失败");
  88. }
  89. }
  90. $orderData = Session::get("wechatorderdata");
  91. if (!$orderData) {
  92. $this->error("请求参数错误");
  93. }
  94. if ($isWechat && $isMobile) {
  95. //发起公众号(jsapi支付),openid必须
  96. //如果没有openid,则自动去获取openid
  97. if (!isset($orderData['openid']) || !$orderData['openid']) {
  98. $orderData['openid'] = Service::getOpenid();
  99. }
  100. $orderData['method'] = 'mp';
  101. $type = 'jsapi';
  102. $payData = Service::submitOrder($orderData);
  103. if (!isset($payData['paySign'])) {
  104. $this->error("创建订单失败,请返回重试", "");
  105. }
  106. } else {
  107. $orderData['method'] = 'scan';
  108. $type = 'pc';
  109. $payData = Service::submitOrder($orderData);
  110. if (!isset($payData['code_url'])) {
  111. $this->error("创建订单失败,请返回重试", "");
  112. }
  113. }
  114. $this->view->assign("orderData", $orderData);
  115. $this->view->assign("payData", $payData);
  116. $this->view->assign("type", $type);
  117. $this->view->assign("title", "微信支付");
  118. return $this->view->fetch();
  119. }
  120. /**
  121. * 支付宝支付(PC扫码支付)
  122. * @return string
  123. */
  124. public function alipay()
  125. {
  126. $config = Service::getConfig('alipay');
  127. $isWechat = stripos($this->request->server('HTTP_USER_AGENT'), 'MicroMessenger') !== false;
  128. $isMobile = $this->request->isMobile();
  129. $this->view->assign("isWechat", $isWechat);
  130. $this->view->assign("isMobile", $isMobile);
  131. if ($this->request->isAjax()) {
  132. $orderid = $this->request->post("orderid");
  133. $pay = Pay::alipay($config);
  134. try {
  135. $result = $pay->find($orderid, 'scan');
  136. if ($result['code'] == '10000' && $result['trade_status'] == 'TRADE_SUCCESS') {
  137. $this->success("", "", ['status' => $result['trade_status']]);
  138. } else {
  139. $this->error("查询失败");
  140. }
  141. } catch (GatewayException $e) {
  142. $this->error("查询失败");
  143. }
  144. }
  145. //发起PC支付(Scan支付)(PC扫码模式)
  146. $orderData = Session::get("alipayorderdata");
  147. if (!$orderData) {
  148. $this->error("请求参数错误");
  149. }
  150. $orderData['method'] = 'scan';
  151. $payData = Service::submitOrder($orderData);
  152. if (!isset($payData['qr_code'])) {
  153. $this->error("创建订单失败,请返回重试");
  154. }
  155. $type = 'pc';
  156. $this->view->assign("orderData", $orderData);
  157. $this->view->assign("payData", $payData);
  158. $this->view->assign("type", $type);
  159. $this->view->assign("title", "支付宝支付");
  160. return $this->view->fetch();
  161. }
  162. /**
  163. * 支付成功回调
  164. */
  165. public function notifyx()
  166. {
  167. $type = $this->request->param('type');
  168. $orderid = $this->request->param('orderid');
  169. $pay = \addons\epay\library\Service::checkNotify($type);
  170. if (!$pay) {
  171. echo '签名错误';
  172. return;
  173. }
  174. $data = $pay->verify();
  175. $order = Order::get(['orderid'=>$orderid]);
  176. $order->save(['status'=>1]);
  177. if($order['type']==1){
  178. User::money($order['money'],$order['uid'],'狗粮充值');
  179. }elseif ($order['type']==2){
  180. User::score($order['money'],$order['uid'],'喜欢额度充值');
  181. }
  182. return $pay->success()->send();
  183. }
  184. /**
  185. * 支付成功返回
  186. */
  187. public function returnx()
  188. {
  189. $type = $this->request->param('type');
  190. if (Service::checkReturn($type)) {
  191. echo '签名错误';
  192. return;
  193. }
  194. //你可以在这里定义你的提示信息,但切记不可在此编写逻辑
  195. $this->success("恭喜你!支付成功!", addon_url("epay/index/index"));
  196. }
  197. }