OrderController.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  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. private function isNotCompleteOrderByUserId($userId)
  62. {
  63. $order = Order::whereIn('status', [0, 1])
  64. ->where('user_id', $userId)
  65. ->first();
  66. if (!$order) {
  67. return false;
  68. }
  69. return true;
  70. }
  71. // surplus value
  72. private function getSurplusValue(User $user, Order $order)
  73. {
  74. if ($user->expired_at === NULL) {
  75. $this->getSurplusValueByOneTime($user);
  76. } else {
  77. $this->getSurplusValueByCycle($user, $order);
  78. }
  79. }
  80. private function getSurplusValueByOneTime(User $user)
  81. {
  82. $plan = Plan::find($user->plan_id);
  83. $trafficUnitPrice = $plan->onetime_price / $plan->transfer_enable;
  84. if ($user->discount && $trafficUnitPrice) {
  85. $trafficUnitPrice = $trafficUnitPrice - ($trafficUnitPrice * $user->discount / 100);
  86. }
  87. $notUsedTrafficPrice = $plan->transfer_enable - (($user->u + $user->d) / 1073741824);
  88. $result = $trafficUnitPrice * $notUsedTrafficPrice;
  89. return $result > 0 ? $result : 0;
  90. }
  91. private function getSurplusValueByCycle(User $user, Order $order)
  92. {
  93. $strToMonth = [
  94. 'month_price' => 1,
  95. 'quarter_price' => 3,
  96. 'half_year_price' => 6,
  97. 'year_price' => 12
  98. ];
  99. $orderModel = Order::where('user_id', $user->id)->where('status', 3);
  100. $totalValue = $orderModel->sum('total_amount') + $orderModel->sum('balance_amount');
  101. if ($totalValue <= 0) {
  102. return;
  103. }
  104. $totalMonth = 0;
  105. foreach ($orderModel->get() as $item) {
  106. $totalMonth = $totalMonth + $strToMonth[$item->cycle];
  107. }
  108. $unitPrice = $totalValue / $totalMonth;
  109. $remainingMonth = ($user->expired_at - time()) / 2678400;
  110. $result = $unitPrice * $remainingMonth;
  111. $order->surplus_amount = $result > 0 ? $result : 0;
  112. $order->surplus_order_ids = json_encode(array_map(function ($v) { return $v['id'];}, $orderModel->get()->toArray()));
  113. }
  114. public function save(OrderSave $request)
  115. {
  116. if ($this->isNotCompleteOrderByUserId($request->session()->get('id'))) {
  117. abort(500, '存在未付款订单,请取消后再试');
  118. }
  119. $plan = Plan::find($request->input('plan_id'));
  120. $user = User::find($request->session()->get('id'));
  121. if (!$plan) {
  122. abort(500, '该订阅不存在');
  123. }
  124. if ((!$plan->show && !$plan->renew) || (!$plan->show && $user->plan_id !== $plan->id)) {
  125. abort(500, '该订阅已售罄');
  126. }
  127. if (!$plan->renew && $user->plan_id == $plan->id) {
  128. abort(500, '该订阅无法续费,请更换其他订阅');
  129. }
  130. if ($plan[$request->input('cycle')] === NULL) {
  131. abort(500, '该订阅周期无法进行购买,请选择其他周期');
  132. }
  133. DB::beginTransaction();
  134. $order = new Order();
  135. $order->user_id = $request->session()->get('id');
  136. $order->plan_id = $plan->id;
  137. $order->cycle = $request->input('cycle');
  138. $order->trade_no = Helper::guid();
  139. $order->total_amount = $plan[$request->input('cycle')];
  140. // coupon start
  141. if ($request->input('coupon_code')) {
  142. $couponService = new CouponService($request->input('coupon_code'));
  143. if (!$couponService->use($order)) {
  144. DB::rollBack();
  145. abort(500, '优惠券使用失败');
  146. }
  147. }
  148. // coupon complete
  149. // discount start
  150. if ($user->discount) {
  151. $order->discount_amount = $order->discount_amount + ($order->total_amount * ($user->discount / 100));
  152. }
  153. // discount end
  154. $order->total_amount = $order->total_amount - $order->discount_amount;
  155. // renew and change subscribe process
  156. if ($user->plan_id !== NULL && $order->plan_id !== $user->plan_id) {
  157. if (!(int)config('v2board.plan_change_enable', 1)) abort(500, '目前不允许更改订阅,请联系客服或提交工单');
  158. $order->type = 3;
  159. $this->getSurplusValue($user, $order);
  160. if ($order->surplus_amount >= $order->total_amount) {
  161. $order->refund_amount = $order->surplus_amount - $order->total_amount;
  162. $order->total_amount = 0;
  163. } else {
  164. $order->total_amount = $order->total_amount - $order->surplus_amount;
  165. }
  166. } else if ($user->expired_at > time() && $order->plan_id == $user->plan_id) {
  167. $order->type = 2;
  168. } else {
  169. $order->type = 1;
  170. }
  171. // invite process
  172. if ($user->invite_user_id && $order->total_amount > 0) {
  173. $order->invite_user_id = $user->invite_user_id;
  174. $commissionFirstTime = (int)config('v2board.commission_first_time_enable', 1);
  175. if (!$commissionFirstTime || ($commissionFirstTime && !Order::where('user_id', $user->id)->where('status', 3)->first())) {
  176. $inviter = User::find($user->invite_user_id);
  177. if ($inviter && $inviter->commission_rate) {
  178. $order->commission_balance = $order->total_amount * ($inviter->commission_rate / 100);
  179. } else {
  180. $order->commission_balance = $order->total_amount * (config('v2board.invite_commission', 10) / 100);
  181. }
  182. }
  183. }
  184. // use balance
  185. if ($user->balance && $order->total_amount > 0) {
  186. $remainingBalance = $user->balance - $order->total_amount;
  187. $userService = new UserService();
  188. if ($remainingBalance > 0) {
  189. if (!$userService->addBalance($order->user_id, - $order->total_amount)) {
  190. DB::rollBack();
  191. abort(500, '余额不足');
  192. }
  193. $order->balance_amount = $order->total_amount;
  194. $order->total_amount = 0;
  195. } else {
  196. if (!$userService->addBalance($order->user_id, - $user->balance)) {
  197. DB::rollBack();
  198. abort(500, '余额不足');
  199. }
  200. $order->balance_amount = $user->balance;
  201. $order->total_amount = $order->total_amount - $user->balance;
  202. }
  203. }
  204. if (!$order->save()) {
  205. DB::rollback();
  206. abort(500, '订单创建失败');
  207. }
  208. DB::commit();
  209. return response([
  210. 'data' => $order->trade_no
  211. ]);
  212. }
  213. public function checkout(Request $request)
  214. {
  215. $tradeNo = $request->input('trade_no');
  216. $method = $request->input('method');
  217. $order = Order::where('trade_no', $tradeNo)
  218. ->where('user_id', $request->session()->get('id'))
  219. ->where('status', 0)
  220. ->first();
  221. if (!$order) {
  222. abort(500, '订单不存在或已支付');
  223. }
  224. // free process
  225. if ($order->total_amount <= 0) {
  226. $order->total_amount = 0;
  227. $order->status = 1;
  228. $order->save();
  229. exit();
  230. }
  231. switch ($method) {
  232. // return type => 0: QRCode / 1: URL
  233. case 0:
  234. // alipayF2F
  235. if (!(int)config('v2board.alipay_enable')) {
  236. abort(500, '支付方式不可用');
  237. }
  238. return response([
  239. 'type' => 0,
  240. 'data' => $this->alipayF2F($tradeNo, $order->total_amount)
  241. ]);
  242. case 2:
  243. // stripeAlipay
  244. if (!(int)config('v2board.stripe_alipay_enable')) {
  245. abort(500, '支付方式不可用');
  246. }
  247. return response([
  248. 'type' => 1,
  249. 'data' => $this->stripeAlipay($order)
  250. ]);
  251. case 3:
  252. // stripeWepay
  253. if (!(int)config('v2board.stripe_wepay_enable')) {
  254. abort(500, '支付方式不可用');
  255. }
  256. return response([
  257. 'type' => 0,
  258. 'data' => $this->stripeWepay($order)
  259. ]);
  260. case 4:
  261. // bitpayX
  262. if (!(int)config('v2board.bitpayx_enable')) {
  263. abort(500, '支付方式不可用');
  264. }
  265. return response([
  266. 'type' => 1,
  267. 'data' => $this->bitpayX($order)
  268. ]);
  269. case 5:
  270. if (!(int)config('v2board.paytaro_enable')) {
  271. abort(500, '支付方式不可用');
  272. }
  273. return response([
  274. 'type' => 1,
  275. 'data' => $this->payTaro($order)
  276. ]);
  277. default:
  278. abort(500, '支付方式不存在');
  279. }
  280. }
  281. public function check(Request $request)
  282. {
  283. $tradeNo = $request->input('trade_no');
  284. $order = Order::where('trade_no', $tradeNo)
  285. ->where('user_id', $request->session()->get('id'))
  286. ->first();
  287. if (!$order) {
  288. abort(500, '订单不存在');
  289. }
  290. return response([
  291. 'data' => $order->status
  292. ]);
  293. }
  294. public function getPaymentMethod()
  295. {
  296. $data = [];
  297. if ((int)config('v2board.alipay_enable')) {
  298. $alipayF2F = new \StdClass();
  299. $alipayF2F->name = '支付宝';
  300. $alipayF2F->method = 0;
  301. $alipayF2F->icon = 'alipay';
  302. array_push($data, $alipayF2F);
  303. }
  304. if ((int)config('v2board.stripe_alipay_enable')) {
  305. $stripeAlipay = new \StdClass();
  306. $stripeAlipay->name = '支付宝';
  307. $stripeAlipay->method = 2;
  308. $stripeAlipay->icon = 'alipay';
  309. array_push($data, $stripeAlipay);
  310. }
  311. if ((int)config('v2board.stripe_wepay_enable')) {
  312. $stripeWepay = new \StdClass();
  313. $stripeWepay->name = '微信';
  314. $stripeWepay->method = 3;
  315. $stripeWepay->icon = 'wechat';
  316. array_push($data, $stripeWepay);
  317. }
  318. if ((int)config('v2board.bitpayx_enable')) {
  319. $bitpayX = new \StdClass();
  320. $bitpayX->name = '聚合支付';
  321. $bitpayX->method = 4;
  322. $bitpayX->icon = 'wallet';
  323. array_push($data, $bitpayX);
  324. }
  325. if ((int)config('v2board.paytaro_enable')) {
  326. $obj = new \StdClass();
  327. $obj->name = '聚合支付';
  328. $obj->method = 5;
  329. $obj->icon = 'wallet';
  330. array_push($data, $obj);
  331. }
  332. return response([
  333. 'data' => $data
  334. ]);
  335. }
  336. public function cancel(Request $request)
  337. {
  338. if (empty($request->input('trade_no'))) {
  339. abort(500, '参数有误');
  340. }
  341. $order = Order::where('trade_no', $request->input('trade_no'))
  342. ->where('user_id', $request->session()->get('id'))
  343. ->first();
  344. if (!$order) {
  345. abort(500, '订单不存在');
  346. }
  347. if ($order->status !== 0) {
  348. abort(500, '只可以取消待支付订单');
  349. }
  350. $orderService = new OrderService($order);
  351. if (!$orderService->cancel()) {
  352. abort(500, '取消失败');
  353. }
  354. return response([
  355. 'data' => true
  356. ]);
  357. }
  358. private function alipayF2F($tradeNo, $totalAmount)
  359. {
  360. $gateway = Omnipay::create('Alipay_AopF2F');
  361. $gateway->setSignType('RSA2'); //RSA/RSA2
  362. $gateway->setAppId(config('v2board.alipay_appid'));
  363. $gateway->setPrivateKey(config('v2board.alipay_privkey')); // 可以是路径,也可以是密钥内容
  364. $gateway->setAlipayPublicKey(config('v2board.alipay_pubkey')); // 可以是路径,也可以是密钥内容
  365. $gateway->setNotifyUrl(url('/api/v1/guest/order/alipayNotify'));
  366. $request = $gateway->purchase();
  367. $request->setBizContent([
  368. 'subject' => config('v2board.app_name', 'V2Board') . ' - 订阅',
  369. 'out_trade_no' => $tradeNo,
  370. 'total_amount' => $totalAmount / 100
  371. ]);
  372. /** @var \Omnipay\Alipay\Responses\AopTradePreCreateResponse $response */
  373. $response = $request->send();
  374. $result = $response->getAlipayResponse();
  375. if ($result['code'] !== '10000') {
  376. abort(500, $result['sub_msg']);
  377. }
  378. // 获取收款二维码内容
  379. return $response->getQrCode();
  380. }
  381. private function stripeAlipay($order)
  382. {
  383. $currency = config('v2board.stripe_currency', 'hkd');
  384. $exchange = Helper::exchange('CNY', strtoupper($currency));
  385. if (!$exchange) {
  386. abort(500, '货币转换超时,请稍后再试');
  387. }
  388. Stripe::setApiKey(config('v2board.stripe_sk_live'));
  389. $source = Source::create([
  390. 'amount' => floor($order->total_amount * $exchange),
  391. 'currency' => $currency,
  392. 'type' => 'alipay',
  393. 'statement_descriptor' => $order->trade_no,
  394. 'metadata' => [
  395. 'user_id' => $order->user_id,
  396. 'invoice_id' => $order->trade_no,
  397. 'identifier' => ''
  398. ],
  399. 'redirect' => [
  400. 'return_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  401. ]
  402. ]);
  403. if (!$source['redirect']['url']) {
  404. abort(500, '支付网关请求失败');
  405. }
  406. if (!Cache::put($source['id'], $order->trade_no, 3600)) {
  407. abort(500, '订单创建失败');
  408. }
  409. return $source['redirect']['url'];
  410. }
  411. private function stripeWepay($order)
  412. {
  413. $currency = config('v2board.stripe_currency', 'hkd');
  414. $exchange = Helper::exchange('CNY', strtoupper($currency));
  415. if (!$exchange) {
  416. abort(500, '货币转换超时,请稍后再试');
  417. }
  418. Stripe::setApiKey(config('v2board.stripe_sk_live'));
  419. $source = Source::create([
  420. 'amount' => floor($order->total_amount * $exchange),
  421. 'currency' => $currency,
  422. 'type' => 'wechat',
  423. 'metadata' => [
  424. 'user_id' => $order->user_id,
  425. 'invoice_id' => $order->trade_no,
  426. 'identifier' => ''
  427. ],
  428. 'redirect' => [
  429. 'return_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  430. ]
  431. ]);
  432. if (!$source['wechat']['qr_code_url']) {
  433. abort(500, '支付网关请求失败');
  434. }
  435. if (!Cache::put($source['id'], $order->trade_no, 3600)) {
  436. abort(500, '订单创建失败');
  437. }
  438. return $source['wechat']['qr_code_url'];
  439. }
  440. private function bitpayX($order)
  441. {
  442. $bitpayX = new BitpayX(config('v2board.bitpayx_appsecret'));
  443. $params = [
  444. 'merchant_order_id' => $order->trade_no,
  445. 'price_amount' => $order->total_amount / 100,
  446. 'price_currency' => 'CNY',
  447. 'title' => '支付单号:' . $order->trade_no,
  448. 'description' => '充值:' . $order->total_amount / 100 . ' 元',
  449. 'callback_url' => url('/api/v1/guest/order/bitpayXNotify'),
  450. 'success_url' => config('v2board.app_url', env('APP_URL')) . '/#/order',
  451. 'cancel_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  452. ];
  453. $strToSign = $bitpayX->prepareSignId($params['merchant_order_id']);
  454. $params['token'] = $bitpayX->sign($strToSign);
  455. $result = $bitpayX->mprequest($params);
  456. // Log::info('bitpayXSubmit: ' . json_encode($result));
  457. return isset($result['payment_url']) ? $result['payment_url'] : false;
  458. }
  459. private function payTaro($order)
  460. {
  461. $payTaro = new PayTaro(config('v2board.paytaro_app_id'), config('v2board.paytaro_app_secret'));
  462. $result = $payTaro->pay([
  463. 'app_id' => config('v2board.paytaro_app_id'),
  464. 'out_trade_no' => $order->trade_no,
  465. 'total_amount' => $order->total_amount,
  466. 'notify_url' => url('/api/v1/guest/order/payTaroNotify'),
  467. 'return_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  468. ]);
  469. return $result;
  470. }
  471. }