OrderController.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. <?php
  2. namespace App\Http\Controllers\User;
  3. use App\Http\Controllers\Controller;
  4. use App\Http\Requests\User\OrderSave;
  5. use App\Services\CouponService;
  6. use App\Services\OrderService;
  7. use App\Services\UserService;
  8. use Illuminate\Http\Request;
  9. use Illuminate\Support\Facades\Cache;
  10. use Illuminate\Support\Facades\Log;
  11. use Illuminate\Support\Facades\DB;
  12. use App\Models\Order;
  13. use App\Models\Plan;
  14. use App\Models\User;
  15. use App\Models\Coupon;
  16. use App\Utils\Helper;
  17. use Omnipay\Omnipay;
  18. use Stripe\Stripe;
  19. use Stripe\Source;
  20. use Library\BitpayX;
  21. use Library\PayTaro;
  22. class OrderController extends Controller
  23. {
  24. public function fetch(Request $request)
  25. {
  26. $model = Order::where('user_id', $request->session()->get('id'))
  27. ->orderBy('created_at', 'DESC');
  28. if ($request->input('status') !== null) {
  29. $model->where('status', $request->input('status'));
  30. }
  31. $order = $model->get();
  32. $plan = Plan::get();
  33. for ($i = 0; $i < count($order); $i++) {
  34. for ($x = 0; $x < count($plan); $x++) {
  35. if ($order[$i]['plan_id'] === $plan[$x]['id']) {
  36. $order[$i]['plan'] = $plan[$x];
  37. }
  38. }
  39. }
  40. return response([
  41. 'data' => $order
  42. ]);
  43. }
  44. public function details(Request $request)
  45. {
  46. $order = Order::where('user_id', $request->session()->get('id'))
  47. ->where('trade_no', $request->input('trade_no'))
  48. ->first();
  49. if (!$order) {
  50. abort(500, '订单不存在');
  51. }
  52. $order['plan'] = Plan::find($order->plan_id);
  53. $order['try_out_plan_id'] = (int)config('v2board.try_out_plan_id');
  54. if (!$order['plan']) {
  55. abort(500, '订阅不存在');
  56. }
  57. return response([
  58. 'data' => $order
  59. ]);
  60. }
  61. public function save(OrderSave $request)
  62. {
  63. $userService = new UserService();
  64. if ($userService->isNotCompleteOrderByUserId($request->session()->get('id'))) {
  65. abort(500, '存在未付款订单,请取消后再试');
  66. }
  67. $plan = Plan::find($request->input('plan_id'));
  68. $user = User::find($request->session()->get('id'));
  69. if (!$plan) {
  70. abort(500, '该订阅不存在');
  71. }
  72. if ((!$plan->show && !$plan->renew) || (!$plan->show && $user->plan_id !== $plan->id)) {
  73. abort(500, '该订阅已售罄');
  74. }
  75. if (!$plan->renew && $user->plan_id == $plan->id) {
  76. abort(500, '该订阅无法续费,请更换其他订阅');
  77. }
  78. if ($plan[$request->input('cycle')] === NULL) {
  79. abort(500, '该订阅周期无法进行购买,请选择其他周期');
  80. }
  81. if ($request->input('cycle') === 'reset_price' && !$user->plan_id) {
  82. abort(500, '必须存在订阅才可以购买流量重置包');
  83. }
  84. DB::beginTransaction();
  85. $order = new Order();
  86. $orderService = new OrderService($order);
  87. $order->user_id = $request->session()->get('id');
  88. $order->plan_id = $plan->id;
  89. $order->cycle = $request->input('cycle');
  90. $order->trade_no = Helper::guid();
  91. $order->total_amount = $plan[$request->input('cycle')];
  92. if ($request->input('coupon_code')) {
  93. $couponService = new CouponService($request->input('coupon_code'));
  94. if (!$couponService->use($order)) {
  95. DB::rollBack();
  96. abort(500, '优惠券使用失败');
  97. }
  98. }
  99. $orderService->setVipDiscount($user);
  100. $orderService->setOrderType($user);
  101. $orderService->setInvite($user);
  102. if ($user->balance && $order->total_amount > 0) {
  103. $remainingBalance = $user->balance - $order->total_amount;
  104. $userService = new UserService();
  105. if ($remainingBalance > 0) {
  106. if (!$userService->addBalance($order->user_id, - $order->total_amount)) {
  107. DB::rollBack();
  108. abort(500, '余额不足');
  109. }
  110. $order->balance_amount = $order->total_amount;
  111. $order->total_amount = 0;
  112. } else {
  113. if (!$userService->addBalance($order->user_id, - $user->balance)) {
  114. DB::rollBack();
  115. abort(500, '余额不足');
  116. }
  117. $order->balance_amount = $user->balance;
  118. $order->total_amount = $order->total_amount - $user->balance;
  119. }
  120. }
  121. if (!$order->save()) {
  122. DB::rollback();
  123. abort(500, '订单创建失败');
  124. }
  125. DB::commit();
  126. return response([
  127. 'data' => $order->trade_no
  128. ]);
  129. }
  130. public function checkout(Request $request)
  131. {
  132. $tradeNo = $request->input('trade_no');
  133. $method = $request->input('method');
  134. $order = Order::where('trade_no', $tradeNo)
  135. ->where('user_id', $request->session()->get('id'))
  136. ->where('status', 0)
  137. ->first();
  138. if (!$order) {
  139. abort(500, '订单不存在或已支付');
  140. }
  141. // free process
  142. if ($order->total_amount <= 0) {
  143. $order->total_amount = 0;
  144. $order->status = 1;
  145. $order->save();
  146. exit();
  147. }
  148. switch ($method) {
  149. // return type => 0: QRCode / 1: URL
  150. case 0:
  151. // alipayF2F
  152. if (!(int)config('v2board.alipay_enable')) {
  153. abort(500, '支付方式不可用');
  154. }
  155. return response([
  156. 'type' => 0,
  157. 'data' => $this->alipayF2F($tradeNo, $order->total_amount)
  158. ]);
  159. case 2:
  160. // stripeAlipay
  161. if (!(int)config('v2board.stripe_alipay_enable')) {
  162. abort(500, '支付方式不可用');
  163. }
  164. return response([
  165. 'type' => 1,
  166. 'data' => $this->stripeAlipay($order)
  167. ]);
  168. case 3:
  169. // stripeWepay
  170. if (!(int)config('v2board.stripe_wepay_enable')) {
  171. abort(500, '支付方式不可用');
  172. }
  173. return response([
  174. 'type' => 0,
  175. 'data' => $this->stripeWepay($order)
  176. ]);
  177. case 4:
  178. // bitpayX
  179. if (!(int)config('v2board.bitpayx_enable')) {
  180. abort(500, '支付方式不可用');
  181. }
  182. return response([
  183. 'type' => 1,
  184. 'data' => $this->bitpayX($order)
  185. ]);
  186. case 5:
  187. if (!(int)config('v2board.paytaro_enable')) {
  188. abort(500, '支付方式不可用');
  189. }
  190. return response([
  191. 'type' => 1,
  192. 'data' => $this->payTaro($order)
  193. ]);
  194. default:
  195. abort(500, '支付方式不存在');
  196. }
  197. }
  198. public function check(Request $request)
  199. {
  200. $tradeNo = $request->input('trade_no');
  201. $order = Order::where('trade_no', $tradeNo)
  202. ->where('user_id', $request->session()->get('id'))
  203. ->first();
  204. if (!$order) {
  205. abort(500, '订单不存在');
  206. }
  207. return response([
  208. 'data' => $order->status
  209. ]);
  210. }
  211. public function getPaymentMethod()
  212. {
  213. $data = [];
  214. if ((int)config('v2board.alipay_enable')) {
  215. $alipayF2F = new \StdClass();
  216. $alipayF2F->name = '支付宝';
  217. $alipayF2F->method = 0;
  218. $alipayF2F->icon = 'alipay';
  219. array_push($data, $alipayF2F);
  220. }
  221. if ((int)config('v2board.stripe_alipay_enable')) {
  222. $stripeAlipay = new \StdClass();
  223. $stripeAlipay->name = '支付宝';
  224. $stripeAlipay->method = 2;
  225. $stripeAlipay->icon = 'alipay';
  226. array_push($data, $stripeAlipay);
  227. }
  228. if ((int)config('v2board.stripe_wepay_enable')) {
  229. $stripeWepay = new \StdClass();
  230. $stripeWepay->name = '微信';
  231. $stripeWepay->method = 3;
  232. $stripeWepay->icon = 'wechat';
  233. array_push($data, $stripeWepay);
  234. }
  235. if ((int)config('v2board.bitpayx_enable')) {
  236. $bitpayX = new \StdClass();
  237. $bitpayX->name = '聚合支付';
  238. $bitpayX->method = 4;
  239. $bitpayX->icon = 'wallet';
  240. array_push($data, $bitpayX);
  241. }
  242. if ((int)config('v2board.paytaro_enable')) {
  243. $obj = new \StdClass();
  244. $obj->name = '聚合支付';
  245. $obj->method = 5;
  246. $obj->icon = 'wallet';
  247. array_push($data, $obj);
  248. }
  249. return response([
  250. 'data' => $data
  251. ]);
  252. }
  253. public function cancel(Request $request)
  254. {
  255. if (empty($request->input('trade_no'))) {
  256. abort(500, '参数有误');
  257. }
  258. $order = Order::where('trade_no', $request->input('trade_no'))
  259. ->where('user_id', $request->session()->get('id'))
  260. ->first();
  261. if (!$order) {
  262. abort(500, '订单不存在');
  263. }
  264. if ($order->status !== 0) {
  265. abort(500, '只可以取消待支付订单');
  266. }
  267. $orderService = new OrderService($order);
  268. if (!$orderService->cancel()) {
  269. abort(500, '取消失败');
  270. }
  271. return response([
  272. 'data' => true
  273. ]);
  274. }
  275. private function alipayF2F($tradeNo, $totalAmount)
  276. {
  277. $gateway = Omnipay::create('Alipay_AopF2F');
  278. $gateway->setSignType('RSA2'); //RSA/RSA2
  279. $gateway->setAppId(config('v2board.alipay_appid'));
  280. $gateway->setPrivateKey(config('v2board.alipay_privkey')); // 可以是路径,也可以是密钥内容
  281. $gateway->setAlipayPublicKey(config('v2board.alipay_pubkey')); // 可以是路径,也可以是密钥内容
  282. $gateway->setNotifyUrl(url('/api/v1/guest/order/alipayNotify'));
  283. $request = $gateway->purchase();
  284. $request->setBizContent([
  285. 'subject' => config('v2board.app_name', 'V2Board') . ' - 订阅',
  286. 'out_trade_no' => $tradeNo,
  287. 'total_amount' => $totalAmount / 100
  288. ]);
  289. /** @var \Omnipay\Alipay\Responses\AopTradePreCreateResponse $response */
  290. $response = $request->send();
  291. $result = $response->getAlipayResponse();
  292. if ($result['code'] !== '10000') {
  293. abort(500, $result['sub_msg']);
  294. }
  295. // 获取收款二维码内容
  296. return $response->getQrCode();
  297. }
  298. private function stripeAlipay($order)
  299. {
  300. $currency = config('v2board.stripe_currency', 'hkd');
  301. $exchange = Helper::exchange('CNY', strtoupper($currency));
  302. if (!$exchange) {
  303. abort(500, '货币转换超时,请稍后再试');
  304. }
  305. Stripe::setApiKey(config('v2board.stripe_sk_live'));
  306. $source = Source::create([
  307. 'amount' => floor($order->total_amount * $exchange),
  308. 'currency' => $currency,
  309. 'type' => 'alipay',
  310. 'statement_descriptor' => $order->trade_no,
  311. 'metadata' => [
  312. 'user_id' => $order->user_id,
  313. 'invoice_id' => $order->trade_no,
  314. 'identifier' => ''
  315. ],
  316. 'redirect' => [
  317. 'return_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  318. ]
  319. ]);
  320. if (!$source['redirect']['url']) {
  321. abort(500, '支付网关请求失败');
  322. }
  323. if (!Cache::put($source['id'], $order->trade_no, 3600)) {
  324. abort(500, '订单创建失败');
  325. }
  326. return $source['redirect']['url'];
  327. }
  328. private function stripeWepay($order)
  329. {
  330. $currency = config('v2board.stripe_currency', 'hkd');
  331. $exchange = Helper::exchange('CNY', strtoupper($currency));
  332. if (!$exchange) {
  333. abort(500, '货币转换超时,请稍后再试');
  334. }
  335. Stripe::setApiKey(config('v2board.stripe_sk_live'));
  336. $source = Source::create([
  337. 'amount' => floor($order->total_amount * $exchange),
  338. 'currency' => $currency,
  339. 'type' => 'wechat',
  340. 'metadata' => [
  341. 'user_id' => $order->user_id,
  342. 'invoice_id' => $order->trade_no,
  343. 'identifier' => ''
  344. ],
  345. 'redirect' => [
  346. 'return_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  347. ]
  348. ]);
  349. if (!$source['wechat']['qr_code_url']) {
  350. abort(500, '支付网关请求失败');
  351. }
  352. if (!Cache::put($source['id'], $order->trade_no, 3600)) {
  353. abort(500, '订单创建失败');
  354. }
  355. return $source['wechat']['qr_code_url'];
  356. }
  357. private function bitpayX($order)
  358. {
  359. $bitpayX = new BitpayX(config('v2board.bitpayx_appsecret'));
  360. $params = [
  361. 'merchant_order_id' => $order->trade_no,
  362. 'price_amount' => $order->total_amount / 100,
  363. 'price_currency' => 'CNY',
  364. 'title' => '支付单号:' . $order->trade_no,
  365. 'description' => '充值:' . $order->total_amount / 100 . ' 元',
  366. 'callback_url' => url('/api/v1/guest/order/bitpayXNotify'),
  367. 'success_url' => config('v2board.app_url', env('APP_URL')) . '/#/order',
  368. 'cancel_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  369. ];
  370. $strToSign = $bitpayX->prepareSignId($params['merchant_order_id']);
  371. $params['token'] = $bitpayX->sign($strToSign);
  372. $result = $bitpayX->mprequest($params);
  373. // Log::info('bitpayXSubmit: ' . json_encode($result));
  374. return isset($result['payment_url']) ? $result['payment_url'] : false;
  375. }
  376. private function payTaro($order)
  377. {
  378. $payTaro = new PayTaro(config('v2board.paytaro_app_id'), config('v2board.paytaro_app_secret'));
  379. $result = $payTaro->pay([
  380. 'app_id' => config('v2board.paytaro_app_id'),
  381. 'out_trade_no' => $order->trade_no,
  382. 'total_amount' => $order->total_amount,
  383. 'notify_url' => url('/api/v1/guest/order/payTaroNotify'),
  384. 'return_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  385. ]);
  386. return $result;
  387. }
  388. }