# fluent-cart/1.3.25/app/Hooks/Handlers/CustomCheckout/CustomCheckout.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.3.25. 193 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.3.25/code/app/Hooks/Handlers/CustomCheckout/CustomCheckout.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.3.25/raw/app/Hooks/Handlers/CustomCheckout/CustomCheckout.php
- Modified: 2026-04-07T13:41:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.3.25/code/app/Hooks/Handlers/CustomCheckout/CustomCheckout.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Hooks\Handlers\CustomCheckout;

use FluentCart\Api\StoreSettings;
use FluentCart\App\Helpers\CartHelper;
use FluentCart\App\Helpers\Status;
use FluentCart\App\Models\Cart;
use FluentCart\App\Models\Order;
use FluentCart\App\Services\ProductItemService;
use FluentCart\Framework\Support\Arr;

class CustomCheckout
{
    public function register()
    {
        add_action('fluent_cart_action_custom_checkout', [$this, 'handleCustomCheckoutRedirect'], 10, 1);
    }

    /*
     * 1. validation
     * 2. create cart
     *      - subscription
     *          discount, signup etc.
     *      - onetime
     * 3. redirect to the checkout with cart
     */
    public function handleCustomCheckoutRedirect($data)
    {
        $orderHash = sanitize_text_field(Arr::get($data, 'order_hash', ''));
        $order = Order::query()->where('uuid', $orderHash)->first();
        if (!$order) {
            die('Invalid order!');
        }

        if ($order->payment_status === Status::PAYMENT_PAID || $order->status === Status::ORDER_COMPLETED) {
            die('Order already completed!');
        }

        $totalDue = $order->total_amount - $order->paid;

        if ($totalDue <= 0) {
            die('No due amount found!');
        }

        if ($order->type === Status::ORDER_TYPE_SUBSCRIPTION) {
            $orderItem = $order->order_items->filter(function ($item) {
                return !in_array($item->payment_type, ['signup_fee', 'fee']);
            })->first();

            if (!$orderItem) {
                die('Subscription order item not found!');
            }

            $subscriptionItemData = ProductItemService::getItem([
                'order_id'     => $orderItem->order_id,
                'product_id'   => $orderItem->post_id,
                'variation_id' => $orderItem->object_id,
            ]);

            if (!$subscriptionItemData || !$subscriptionItemData->variation) {
                die('Failed to load product data for custom checkout!');
            }

            $newItem = $subscriptionItemData->variation->toArray();
            $isCustom = $subscriptionItemData->is_custom;

            Arr::set($newItem, 'item_price', $orderItem->unit_price);

            // Keep the variation's other_info as-is (trial_days, signup_fee, repeat_interval, times).
            // The variation's other_info has the clean product-level config that CheckoutProcessor
            // expects when processing the cart.

            if ($isCustom) {
                Arr::set($newItem, 'post_title', $subscriptionItemData->variation->post_title);
                Arr::set($newItem, 'variation_type', $subscriptionItemData->variation->variation_type);
            } else {
                Arr::set($newItem, 'post_title', $subscriptionItemData->variation->product->post_title);
                Arr::set($newItem, 'variation_type', $subscriptionItemData->variation->product_detail->variation_type);
            }

            if ($order->coupon_discount_total > 0 || $order->manual_discount_total > 0) {
                Arr::set($newItem, 'coupon_discount', (int) $order->coupon_discount_total);
                Arr::set($newItem, 'manual_discount', (int) $order->manual_discount_total);
            }

            $instantCart = CartHelper::generateCartFromCustomVariation($newItem, $orderItem->quantity);

        } else {
            $items = [];
            $productItems = $order->order_items->filter(function ($orderItem) {
                return !in_array($orderItem->payment_type, ['fee', 'signup_fee']);
            });
            foreach ($productItems as $orderItem) {
                $itemData = ProductItemService::getItem([
                    'order_id'         => $orderItem->order_id,
                    'product_id'       => $orderItem->post_id,
                    'variation_id'     => $orderItem->object_id,
                ]);
                if (!$itemData || !$itemData->variation) {
                    die('Failed to load product data for custom checkout!');
                }
                $item = $itemData->variation->toArray();


                Arr::set($item, 'coupon_discount', (string)($orderItem->discount_total)); // item discount total is always coupon discount + manual discount
                Arr::set($item, 'tax_amount', $orderItem->tax_amount);
                Arr::set($item, 'post_title', $orderItem->post_title);

                if ($order->manual_discount_total) {
                    $subtotal = Arr::get($orderItem, 'subtotal');
                    $manualDiscount = ($subtotal * $order->manual_discount_total) / $order->subtotal;
                    $couponDiscount = max(0, $orderItem->discount_total - $manualDiscount);
                    Arr::set($item, 'manual_discount', $manualDiscount);
                    Arr::set($item, 'coupon_discount', $couponDiscount);
                }

                $items[] = CartHelper::generateCartItemCustomItem($item, $orderItem->quantity);
            }

            $instantCart = new Cart();
            $instantCart->cart_data = $items;
        }

        $primaryBillingAddress = [];
        if ($order->billing_address) {
            $primaryBillingAddress = $order->billing_address
                ->getFormattedDataForCheckout('billing_');
        }
        $instantCart->cart_group = 'instant';
        $instantCart->first_name = $order->customer->first_name;
        $instantCart->last_name = $order->customer->last_name;
        $instantCart->email = $order->customer->email;
        $instantCart->customer_id = $order->customer->customer_id;
        $instantCart->user_id = $order->customer->user_id;
        $instantCart->order_id = $order->id;
        $instantCart->cart_hash = md5('custom_payment_cart_' . wp_generate_uuid4() . time());

        // Preserve original order fees so the custom payment checkout
        // shows exactly what was charged, not whatever the current filter returns
        $originalFees = [];
        $feeOrderItems = $order->order_items->filter(function ($item) {
            return $item->payment_type === 'fee';
        });

        foreach ($feeOrderItems as $feeItem) {
            $otherInfo = $feeItem->other_info ?? [];
            $originalFees[] = [
                'key'     => Arr::get($otherInfo, 'fee_key', ''),
                'label'   => $feeItem->title,
                'amount'  => (int) $feeItem->unit_price,
                'source'  => Arr::get($otherInfo, 'source', 'custom'),
                'taxable' => !empty(Arr::get($otherInfo, 'taxable')),
                'meta'    => Arr::get($otherInfo, 'meta', []),
            ];
        }

        $instantCart->checkout_data = [
            'is_locked' => 'yes',
            'disable_coupons' => 'yes',
            'custom_checkout' => 'yes',
            'form_data' => $primaryBillingAddress,
            'fees' => $originalFees,
            'custom_checkout_data' => [
                'coupon_discount_total' => $order->coupon_discount_total,
                'manual_discount_total' => $order->manual_discount_total,
                'discount_total' => $order->coupon_discount_total + $order->manual_discount_total,
                'shipping_total' => $order->shipping_total,
            ],
            '__cart_notices' => [
                [
                    'id' => 'custom_payment_notice',
                    'type' => 'info',
                    'content' => 'You are making payment for your order (#' . $order->uuid . ').',
                ]
            ]
        ];

        $instantCart->save();

        $cartHash = $instantCart->cart_hash;

        $checkoutUrl = add_query_arg(
            [
                'fct_cart_hash' => $cartHash,
            ],
            (new StoreSettings())->getCheckoutPage()
        );

        wp_redirect($checkoutUrl);
        exit();
    }
}
```
