OrderController.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  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. // surplus value
  70. private function getSurplusValue(User $user)
  71. {
  72. $plan = Plan::find($user->plan_id);
  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. $order->total_amount = 0;
  133. } else {
  134. $order->total_amount = $order->total_amount - $order->surplus_amount;
  135. }
  136. } else if ($user->expired_at > time() && $order->plan_id == $user->plan_id) {
  137. $order->type = 2;
  138. } else {
  139. $order->type = 1;
  140. }
  141. // discount start
  142. // coupon
  143. if (isset($coupon)) {
  144. switch ($coupon->type) {
  145. case 1:
  146. $order->discount_amount = $coupon->value;
  147. break;
  148. case 2:
  149. $order->discount_amount = $order->total_amount * ($coupon->value / 100);
  150. break;
  151. }
  152. if ($coupon->limit_use !== NULL) {
  153. $coupon->limit_use = $coupon->limit_use - 1;
  154. if (!$coupon->save()) {
  155. DB::rollback();
  156. abort(500, '优惠券使用失败');
  157. }
  158. }
  159. }
  160. // user
  161. if ($user->discount) {
  162. $order->discount_amount = $order->discount_amount + ($order->total_amount * ($user->discount / 100));
  163. }
  164. // discount complete
  165. $order->total_amount = $order->total_amount - $order->discount_amount;
  166. // discount end
  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. // free process
  198. if ($order->total_amount <= 0) {
  199. $order->total_amount = 0;
  200. $order->status = 1;
  201. $order->save();
  202. exit();
  203. }
  204. switch ($method) {
  205. // return type => 0: QRCode / 1: URL
  206. case 0:
  207. // alipayF2F
  208. if (!(int)config('v2board.alipay_enable')) {
  209. abort(500, '支付方式不可用');
  210. }
  211. return response([
  212. 'type' => 0,
  213. 'data' => $this->alipayF2F($tradeNo, $order->total_amount)
  214. ]);
  215. case 2:
  216. // stripeAlipay
  217. if (!(int)config('v2board.stripe_alipay_enable')) {
  218. abort(500, '支付方式不可用');
  219. }
  220. return response([
  221. 'type' => 1,
  222. 'data' => $this->stripeAlipay($order)
  223. ]);
  224. case 3:
  225. // stripeWepay
  226. if (!(int)config('v2board.stripe_wepay_enable')) {
  227. abort(500, '支付方式不可用');
  228. }
  229. return response([
  230. 'type' => 0,
  231. 'data' => $this->stripeWepay($order)
  232. ]);
  233. case 4:
  234. // bitpayX
  235. if (!(int)config('v2board.bitpayx_enable')) {
  236. abort(500, '支付方式不可用');
  237. }
  238. return response([
  239. 'type' => 1,
  240. 'data' => $this->bitpayX($order)
  241. ]);
  242. case 5:
  243. if (!(int)config('v2board.paytaro_enable')) {
  244. abort(500, '支付方式不可用');
  245. }
  246. return response([
  247. 'type' => 1,
  248. 'data' => $this->payTaro($order)
  249. ]);
  250. default:
  251. abort(500, '支付方式不存在');
  252. }
  253. }
  254. public function check(Request $request)
  255. {
  256. $tradeNo = $request->input('trade_no');
  257. $order = Order::where('trade_no', $tradeNo)
  258. ->where('user_id', $request->session()->get('id'))
  259. ->first();
  260. if (!$order) {
  261. abort(500, '订单不存在');
  262. }
  263. return response([
  264. 'data' => $order->status
  265. ]);
  266. }
  267. public function getPaymentMethod()
  268. {
  269. $data = [];
  270. if ((int)config('v2board.alipay_enable')) {
  271. $alipayF2F = new \StdClass();
  272. $alipayF2F->name = '支付宝';
  273. $alipayF2F->method = 0;
  274. $alipayF2F->icon = 'alipay';
  275. array_push($data, $alipayF2F);
  276. }
  277. if ((int)config('v2board.stripe_alipay_enable')) {
  278. $stripeAlipay = new \StdClass();
  279. $stripeAlipay->name = '支付宝';
  280. $stripeAlipay->method = 2;
  281. $stripeAlipay->icon = 'alipay';
  282. array_push($data, $stripeAlipay);
  283. }
  284. if ((int)config('v2board.stripe_wepay_enable')) {
  285. $stripeWepay = new \StdClass();
  286. $stripeWepay->name = '微信';
  287. $stripeWepay->method = 3;
  288. $stripeWepay->icon = 'wechat';
  289. array_push($data, $stripeWepay);
  290. }
  291. if ((int)config('v2board.bitpayx_enable')) {
  292. $bitpayX = new \StdClass();
  293. $bitpayX->name = '聚合支付';
  294. $bitpayX->method = 4;
  295. $bitpayX->icon = 'wallet';
  296. array_push($data, $bitpayX);
  297. }
  298. if ((int)config('v2board.paytaro_enable')) {
  299. $obj = new \StdClass();
  300. $obj->name = '聚合支付';
  301. $obj->method = 5;
  302. $obj->icon = 'wallet';
  303. array_push($data, $obj);
  304. }
  305. return response([
  306. 'data' => $data
  307. ]);
  308. }
  309. public function cancel(Request $request)
  310. {
  311. if (empty($request->input('trade_no'))) {
  312. abort(500, '参数有误');
  313. }
  314. $order = Order::where('trade_no', $request->input('trade_no'))
  315. ->where('user_id', $request->session()->get('id'))
  316. ->first();
  317. if (!$order) {
  318. abort(500, '订单不存在');
  319. }
  320. if ($order->status !== 0) {
  321. abort(500, '只可以取消待支付订单');
  322. }
  323. $order->status = 2;
  324. if (!$order->save()) {
  325. abort(500, '取消失败');
  326. }
  327. return response([
  328. 'data' => true
  329. ]);
  330. }
  331. private function alipayF2F($tradeNo, $totalAmount)
  332. {
  333. $gateway = Omnipay::create('Alipay_AopF2F');
  334. $gateway->setSignType('RSA2'); //RSA/RSA2
  335. $gateway->setAppId(config('v2board.alipay_appid'));
  336. $gateway->setPrivateKey(config('v2board.alipay_privkey')); // 可以是路径,也可以是密钥内容
  337. $gateway->setAlipayPublicKey(config('v2board.alipay_pubkey')); // 可以是路径,也可以是密钥内容
  338. $gateway->setNotifyUrl(url('/api/v1/guest/order/alipayNotify'));
  339. $request = $gateway->purchase();
  340. $request->setBizContent([
  341. 'subject' => config('v2board.app_name', 'V2Board') . ' - 订阅',
  342. 'out_trade_no' => $tradeNo,
  343. 'total_amount' => $totalAmount / 100
  344. ]);
  345. /** @var \Omnipay\Alipay\Responses\AopTradePreCreateResponse $response */
  346. $response = $request->send();
  347. $result = $response->getAlipayResponse();
  348. if ($result['code'] !== '10000') {
  349. abort(500, $result['sub_msg']);
  350. }
  351. // 获取收款二维码内容
  352. return $response->getQrCode();
  353. }
  354. private function stripeAlipay($order)
  355. {
  356. $exchange = Helper::exchange('CNY', 'HKD');
  357. if (!$exchange) {
  358. abort(500, '货币转换超时,请稍后再试');
  359. }
  360. Stripe::setApiKey(config('v2board.stripe_sk_live'));
  361. $source = Source::create([
  362. 'amount' => floor($order->total_amount * $exchange),
  363. 'currency' => 'hkd',
  364. 'type' => 'alipay',
  365. 'redirect' => [
  366. 'return_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  367. ]
  368. ]);
  369. if (!$source['redirect']['url']) {
  370. abort(500, '支付网关请求失败');
  371. }
  372. if (!Cache::put($source['id'], $order->trade_no, 3600)) {
  373. abort(500, '订单创建失败');
  374. }
  375. return $source['redirect']['url'];
  376. }
  377. private function stripeWepay($order)
  378. {
  379. $exchange = Helper::exchange('CNY', 'HKD');
  380. if (!$exchange) {
  381. abort(500, '货币转换超时,请稍后再试');
  382. }
  383. Stripe::setApiKey(config('v2board.stripe_sk_live'));
  384. $source = Source::create([
  385. 'amount' => floor($order->total_amount * $exchange),
  386. 'currency' => 'hkd',
  387. 'type' => 'wechat',
  388. 'redirect' => [
  389. 'return_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  390. ]
  391. ]);
  392. if (!$source['wechat']['qr_code_url']) {
  393. abort(500, '支付网关请求失败');
  394. }
  395. if (!Cache::put($source['id'], $order->trade_no, 3600)) {
  396. abort(500, '订单创建失败');
  397. }
  398. return $source['wechat']['qr_code_url'];
  399. }
  400. private function bitpayX($order)
  401. {
  402. $bitpayX = new BitpayX(config('v2board.bitpayx_appsecret'));
  403. $params = [
  404. 'merchant_order_id' => $order->trade_no,
  405. 'price_amount' => $order->total_amount / 100,
  406. 'price_currency' => 'CNY',
  407. 'title' => '支付单号:' . $order->trade_no,
  408. 'description' => '充值:' . $order->total_amount / 100 . ' 元',
  409. 'callback_url' => url('/api/v1/guest/order/bitpayXNotify'),
  410. 'success_url' => config('v2board.app_url', env('APP_URL')) . '/#/order',
  411. 'cancel_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  412. ];
  413. $strToSign = $bitpayX->prepareSignId($params['merchant_order_id']);
  414. $params['token'] = $bitpayX->sign($strToSign);
  415. $result = $bitpayX->mprequest($params);
  416. Log::info('bitpayXSubmit: ' . json_encode($result));
  417. return isset($result['payment_url']) ? $result['payment_url'] : false;
  418. }
  419. private function payTaro($order)
  420. {
  421. $payTaro = new PayTaro(config('v2board.paytaro_app_id'), config('v2board.paytaro_app_secret'));
  422. $result = $payTaro->pay([
  423. 'app_id' => config('v2board.paytaro_app_id'),
  424. 'out_trade_no' => $order->trade_no,
  425. 'total_amount' => $order->total_amount,
  426. 'notify_url' => url('/api/v1/guest/order/payTaroNotify'),
  427. 'return_url' => config('v2board.app_url', env('APP_URL')) . '/#/order'
  428. ]);
  429. return $result;
  430. }
  431. }