OrderController.php 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <?php
  2. namespace App\Http\Controllers;
  3. use App\Http\Requests\OrderSave;
  4. use Illuminate\Http\Request;
  5. use App\Http\Controllers\Controller;
  6. use App\Models\Order;
  7. use App\Models\Plan;
  8. use App\Models\User;
  9. use App\Utils\Helper;
  10. use Omnipay\Omnipay;
  11. use Stripe\Stripe;
  12. use Stripe\Source;
  13. class OrderController extends Controller
  14. {
  15. public function index (Request $request) {
  16. $order = Order::where('user_id', $request->session()->get('id'))
  17. ->orderBy('created_at', 'DESC')
  18. ->get();
  19. $plan = Plan::get();
  20. for($i = 0; $i < count($order); $i++) {
  21. for($x = 0; $x < count($plan); $x++) {
  22. if ($order[$i]['plan_id'] === $plan[$x]['id']) {
  23. $order[$i]['plan'] = $plan[$x];
  24. }
  25. }
  26. }
  27. return response([
  28. 'data' => $order
  29. ]);
  30. }
  31. public function details (Request $request) {
  32. $order = Order::where('user_id', $request->session()->get('id'))
  33. ->where('trade_no', $request->input('trade_no'))
  34. ->first();
  35. if (!$order) {
  36. abort(500, '订单不存在');
  37. }
  38. $order['plan'] = Plan::find($order->plan_id);
  39. $order['update_fee'] = config('v2board.plan_update_fee', 0.5);
  40. if (!$order['plan']) {
  41. abort(500, '订阅不存在');
  42. }
  43. return response([
  44. 'data' => $order
  45. ]);
  46. }
  47. public function save (OrderSave $request) {
  48. $plan = Plan::find($request->input('plan_id'));
  49. $user = User::find($request->session()->get('id'));
  50. if (!$plan) {
  51. abort(500, '该订阅不存在');
  52. }
  53. if (!($plan->show || $user->plan_id == $plan->id)) {
  54. abort(500, '该订阅已售罄');
  55. }
  56. if (!$plan->show && !$plan->renew) {
  57. abort(500, '该订阅无法续费,请更换其他订阅');
  58. }
  59. $order = new Order();
  60. $order->user_id = $request->session()->get('id');
  61. $order->plan_id = $plan->id;
  62. $order->cycle = $request->input('cycle');
  63. $order->trade_no = Helper::guid();
  64. $order->total_amount = $plan[$request->input('cycle')];
  65. if ($user->expired_at > time() && $order->plan_id !== $user->plan_id) {
  66. $order->type = 3;
  67. if (!(int)config('v2board.plan_is_update', 1)) abort(500, '目前不允许更改订阅,请联系管理员');
  68. $order->total_amount = $order->total_amount + ((($user->expired_at - time()) / 86400) * config('v2board.plan_update_fee', 0.5) * 100);
  69. } else if ($user->expired_at > time() && $order->plan_id == $user->plan_id) {
  70. $order->type = 2;
  71. } else {
  72. $order->type = 1;
  73. }
  74. if ($user->invite_user_id) {
  75. $order->invite_user_id = $user->invite_user_id;
  76. $order->commission_balance = $order->total_amount * (config('v2board.invite_commission', 10) / 100);
  77. }
  78. if (!$order->save()) {
  79. abort(500, '订单创建失败');
  80. }
  81. return response([
  82. 'data' => $order->trade_no
  83. ]);
  84. }
  85. public function checkout (Request $request) {
  86. $tradeNo = $request->input('trade_no');
  87. $method = $request->input('method');
  88. $order = Order::where('trade_no', $tradeNo)
  89. ->where('user_id', $request->session()->get('id'))
  90. ->where('status', 0)
  91. ->first();
  92. if (!$order) {
  93. abort(500, '订单不存在或以支付');
  94. }
  95. switch ($method) {
  96. // return type => 0: QRCode / 1: URL
  97. case 0:
  98. // alipayF2F
  99. if (!(int)config('v2board.alipay_enable')) {
  100. abort(500, '支付方式不可用');
  101. }
  102. return response([
  103. 'type' => 0,
  104. 'data' => $this->alipayF2F($tradeNo, $order->total_amount)
  105. ]);
  106. case 2:
  107. // stripeAlipay
  108. if (!(int)config('v2board.stripe_alipay_enable')) {
  109. abort(500, '支付方式不可用');
  110. }
  111. return response([
  112. 'type' => 1,
  113. 'data' => $this->stripeAlipay($order)
  114. ]);
  115. case 3:
  116. // stripeWepay
  117. if (!(int)config('v2board.stripe_wepay_enable')) {
  118. abort(500, '支付方式不可用');
  119. }
  120. return response([
  121. 'type' => 0,
  122. 'data' => $this->stripeWepay($order)
  123. ]);
  124. default:
  125. abort(500, '支付方式不存在');
  126. }
  127. }
  128. public function check (Request $request) {
  129. $tradeNo = $request->input('trade_no');
  130. $order = Order::where('trade_no', $tradeNo)
  131. ->where('user_id', $request->session()->get('id'))
  132. ->first();
  133. if (!$order) {
  134. abort(500, '订单不存在');
  135. }
  136. return response([
  137. 'data' => $order->status
  138. ]);
  139. }
  140. public function getPaymentMethod () {
  141. $data = [];
  142. if ((int)config('v2board.alipay_enable')) {
  143. $alipayF2F = new \StdClass();
  144. $alipayF2F->name = '支付宝';
  145. $alipayF2F->method = 0;
  146. $alipayF2F->icon = 'alipay';
  147. array_push($data, $alipayF2F);
  148. }
  149. if ((int)config('v2board.stripe_alipay_enable')) {
  150. $stripeAlipay = new \StdClass();
  151. $stripeAlipay->name = '支付宝';
  152. $stripeAlipay->method = 2;
  153. $stripeAlipay->icon = 'alipay';
  154. array_push($data, $stripeAlipay);
  155. }
  156. if ((int)config('v2board.stripe_wepay_enable')) {
  157. $stripeWepay = new \StdClass();
  158. $stripeWepay->name = '微信';
  159. $stripeWepay->method = 3;
  160. $stripeWepay->icon = 'wechat';
  161. array_push($data, $stripeWepay);
  162. }
  163. return response([
  164. 'data' => $data
  165. ]);
  166. }
  167. private function alipayF2F ($tradeNo, $totalAmount) {
  168. $gateway = Omnipay::create('Alipay_AopF2F');
  169. $gateway->setSignType('RSA2'); //RSA/RSA2
  170. $gateway->setAppId(config('v2board.alipay_appid'));
  171. $gateway->setPrivateKey(config('v2board.alipay_privkey')); // 可以是路径,也可以是密钥内容
  172. $gateway->setAlipayPublicKey(config('v2board.alipay_pubkey')); // 可以是路径,也可以是密钥内容
  173. $gateway->setNotifyUrl(config('v2board.app_url', env('APP_URL')) . '/api/v1/guest/order/alipayNotify');
  174. $request = $gateway->purchase();
  175. $request->setBizContent([
  176. 'subject' => config('v2board.app_name', 'V2Board') . ' - 订阅',
  177. 'out_trade_no' => $tradeNo,
  178. 'total_amount' => $totalAmount / 100
  179. ]);
  180. /** @var \Omnipay\Alipay\Responses\AopTradePreCreateResponse $response */
  181. $response = $request->send();
  182. $result = $response->getAlipayResponse();
  183. if ($result['code'] !== '10000') {
  184. abort(500, $result['sub_msg']);
  185. }
  186. // 获取收款二维码内容
  187. return $response->getQrCode();
  188. }
  189. private function stripeAlipay ($order) {
  190. $exchange = Helper::exchange('CNY', 'HKD');
  191. if (!$exchange) {
  192. abort(500, '货币转换超时,请稍后再试');
  193. }
  194. Stripe::setApiKey(config('v2board.stripe_sk_live'));
  195. $source = Source::create([
  196. 'amount' => floor($order->total_amount * $exchange),
  197. 'currency' => 'hkd',
  198. 'type' => 'alipay',
  199. 'redirect' => [
  200. 'return_url' => config('v2board.app_url', env('APP_URL')) . '/api/v1/guest/order/stripeReturn'
  201. ]
  202. ]);
  203. if (!$source['redirect']['url']) {
  204. abort(500, '支付网关请求失败');
  205. }
  206. $order->callback_no = $source['id'];
  207. if (!$order->save()) {
  208. abort(500, '订单更新失败');
  209. }
  210. return $source['redirect']['url'];
  211. }
  212. private function stripeWepay ($order) {
  213. $exchange = Helper::exchange('CNY', 'HKD');
  214. if (!$exchange) {
  215. abort(500, '货币转换超时,请稍后再试');
  216. }
  217. Stripe::setApiKey(config('v2board.stripe_sk_live'));
  218. $source = Source::create([
  219. 'amount' => floor($order->total_amount * $exchange),
  220. 'currency' => 'hkd',
  221. 'type' => 'wechat',
  222. 'redirect' => [
  223. 'return_url' => config('v2board.app_url', env('APP_URL')) . '/api/v1/guest/order/stripeReturn'
  224. ]
  225. ]);
  226. if (!$source['wechat']['qr_code_url']) {
  227. abort(500, '支付网关请求失败');
  228. }
  229. $order->callback_no = $source['id'];
  230. if (!$order->save()) {
  231. abort(500, '订单更新失败');
  232. }
  233. return $source['wechat']['qr_code_url'];
  234. }
  235. }