OrderController.php 16 KB

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