123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- <?php
- namespace App\Http\Controllers;
- use App\Models\Coupon;
- use App\Models\Goods;
- use App\Models\Order;
- use App\Models\Payment;
- use App\Services\CouponService;
- use App\Utils\Helpers;
- use App\Utils\Library\Templates\Gateway;
- use App\Utils\Payments\CodePay;
- use App\Utils\Payments\EPay;
- use App\Utils\Payments\F2Fpay;
- use App\Utils\Payments\Local;
- use App\Utils\Payments\Manual;
- use App\Utils\Payments\PayBeaver;
- use App\Utils\Payments\PayJs;
- use App\Utils\Payments\PayPal;
- use App\Utils\Payments\Stripe;
- use App\Utils\Payments\THeadPay;
- use Exception;
- use Illuminate\Contracts\View\View;
- use Illuminate\Http\JsonResponse;
- use Illuminate\Http\Request;
- use Log;
- class PaymentController extends Controller
- {
- public static string $method;
- public static function notify(Request $request)
- {
- self::$method = $request->query('method') ?: $request->input('method');
- Log::notice('[{method}] '.trans('admin.menu.log.payment_callback').': {body}', ['method' => self::$method, 'body' => var_export($request->all(), true)]);
- return self::getClient()->notify($request);
- }
- public static function getClient(): Gateway
- {
- // Mapping of payment methods to their respective classes
- $paymentMethods = [
- 'credit' => Local::class,
- 'f2fpay' => F2Fpay::class,
- 'codepay' => CodePay::class,
- 'payjs' => PayJs::class,
- 'paypal' => PayPal::class,
- 'epay' => EPay::class,
- 'stripe' => Stripe::class,
- 'paybeaver' => PayBeaver::class,
- 'theadpay' => THeadPay::class,
- 'manual' => Manual::class,
- ];
- // Check if the method exists in the mapping
- if (isset($paymentMethods[self::$method])) {
- // Instantiate and return the corresponding class
- return new $paymentMethods[self::$method];
- }
- // Log an emergency message and exit if the method is unknown
- Log::emergency(trans('user.payment.order_creation.unknown_payment').': '.self::$method);
- exit(404);
- }
- public static function getStatus(Request $request): JsonResponse
- {
- $payment = Payment::whereTradeNo($request->input('trade_no'))->first();
- if ($payment) {
- if ($payment->status === 1) {
- return response()->json(['status' => 'success', 'message' => trans('common.success_item', ['attribute' => trans('user.pay')])]);
- }
- if ($payment->status === -1) {
- return response()->json(['status' => 'error', 'message' => trans('user.payment.order_creation.order_timeout')]);
- }
- return response()->json(['status' => 'fail', 'message' => trans('common.status.payment_pending')]);
- }
- return response()->json(['status' => 'error', 'message' => trans('user.payment.order_creation.unknown_order')]);
- }
- public function purchase(Request $request): JsonResponse
- { // 创建支付订单
- $goods_id = $request->input('goods_id');
- $coupon_sn = $request->input('coupon_sn');
- $coupon = null;
- self::$method = $request->input('method');
- $credit = $request->input('amount');
- $pay_type = $request->input('pay_type');
- $amount = 0;
- // 充值余额
- if ($credit) {
- if (! is_numeric($credit) || $credit <= 0) {
- return response()->json(['status' => 'fail', 'message' => trans('user.payment.error')]);
- }
- $amount = $credit;
- } elseif ($goods_id && self::$method) { // 购买服务
- $goods = Goods::find($goods_id);
- if (! $goods || ! $goods->status) {
- return response()->json(['status' => 'fail', 'message' => trans('user.payment.order_creation.product_unavailable')]);
- }
- $amount = $goods->price;
- // 是否有生效的套餐
- $activePlan = Order::userActivePlan()->doesntExist();
- // 无生效套餐,禁止购买加油包
- if ($goods->type === 1 && $activePlan) {
- return response()->json(['status' => 'fail', 'message' => trans('user.payment.order_creation.plan_required')]);
- }
- // 单个商品限购
- if ($goods->limit_num) {
- $count = Order::uid()->where('status', '>=', 0)->whereGoodsId($goods_id)->count();
- if ($count >= $goods->limit_num) {
- return response()->json(['status' => 'fail', 'message' => trans('user.payment.order_creation.order_limit', ['limit_num' => $goods->limit_num, 'count' => $count])]);
- }
- }
- // 使用优惠券
- if ($coupon_sn) {
- $coupon = (new CouponService($coupon_sn))->search($goods); // 检查券合规性
- if (! $coupon instanceof Coupon) {
- return $coupon;
- }
- // 计算实际应支付总价
- $amount = $coupon->type === 2 ? $goods->price * $coupon->value / 100 : $goods->price - $coupon->value;
- $amount = $amount > 0 ? round($amount, 2) : 0; // 四舍五入保留2位小数,避免无法正常创建订单
- }
- //非余额付款下,检查在线支付是否开启
- if (self::$method !== 'credit') {
- // 判断是否开启在线支付
- if (! sysConfig('is_onlinePay') && ! sysConfig('wechat_qrcode') && ! sysConfig('alipay_qrcode')) {
- return response()->json(['status' => 'fail', 'message' => trans('user.payment.order_creation.payment_disabled')]);
- }
- // 判断是否存在同个商品的未支付订单
- if (Order::uid()->whereStatus(0)->exists()) {
- return response()->json(['status' => 'fail', 'message' => trans('user.payment.order_creation.pending_order')]);
- }
- } elseif (auth()->user()->credit < $amount) { // 验证账号余额是否充足
- return response()->json(['status' => 'fail', 'message' => trans('user.payment.insufficient_balance')]);
- }
- // 价格异常判断
- if ($amount < 0) {
- return response()->json(['status' => 'fail', 'message' => trans('user.payment.order_creation.price_issue')]);
- }
- if ($amount === 0 && self::$method !== 'credit') {
- return response()->json(['status' => 'fail', 'message' => trans('user.payment.order_creation.price_zero')]);
- }
- }
- // 生成订单
- try {
- $newOrder = Order::create([
- 'sn' => date('ymdHis').random_int(100000, 999999),
- 'user_id' => auth()->id(),
- 'goods_id' => $credit ? null : $goods_id,
- 'coupon_id' => $coupon?->id,
- 'origin_amount' => $credit ?: ($goods->price ?? 0),
- 'amount' => $amount,
- 'pay_type' => $pay_type,
- 'pay_way' => self::$method,
- ]);
- // 使用优惠券,减少可使用次数
- if ($coupon !== null) {
- if ($coupon->usable_times > 0) {
- $coupon->decrement('usable_times');
- }
- Helpers::addCouponLog('Coupon used in order.', $coupon->id, $goods_id, $newOrder->id);
- }
- $request->merge(['id' => $newOrder->id, 'type' => $pay_type, 'amount' => $amount]);
- // 生成支付单
- return self::getClient()->purchase($request);
- } catch (Exception $e) {
- Log::emergency(trans('common.failed_action_item', ['action' => trans('common.create'), 'attribute' => trans('model.order.attribute')]).': '.$e->getMessage());
- }
- return response()->json(['status' => 'fail', 'message' => trans('common.failed_action_item', ['action' => trans('common.create'), 'attribute' => trans('model.order.attribute')])]);
- }
- public function close(Order $order): JsonResponse
- {
- if (! $order->close()) {
- return response()->json(['status' => 'fail', 'message' => trans('common.failed_action_item', ['action' => trans('common.close'), 'attribute' => trans('model.order.attribute')])]);
- }
- return response()->json(['status' => 'success', 'message' => trans('common.success_action_item', ['action' => trans('common.close'), 'attribute' => trans('model.order.attribute')])]);
- }
- public function detail(string $trade_no): View
- { // 支付单详情
- $payment = Payment::uid()->with(['order', 'order.goods'])->whereTradeNo($trade_no)->firstOrFail();
- $goods = $payment->order->goods;
- return view('user.components.payment.default', [
- 'payment' => $payment,
- 'name' => $goods->name ?? trans('user.recharge_credit'),
- 'days' => $goods->days ?? 0,
- 'pay_type' => $payment->order->pay_type_label ?: 0,
- 'pay_type_icon' => $payment->order->pay_type_icon,
- ]);
- }
- }
|