OrderController.php 16 KB

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