OrderController.php 15 KB

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