Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Q1-480: Inventory performance improvement. #123

Merged
merged 1 commit into from
Sep 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 30 additions & 59 deletions Model/Quote/GetQuoteInventoryData.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

declare(strict_types=1);

namespace Bold\Checkout\Model\Quote;
Expand All @@ -7,12 +8,15 @@
use Bold\Checkout\Api\Data\Quote\Inventory\Result\InventoryDataInterfaceFactory;
use Bold\Checkout\Api\Data\Quote\Inventory\ResultInterface;
use Bold\Checkout\Api\Data\Quote\Inventory\ResultInterfaceFactory;
use Magento\Bundle\Model\Product\Type as Bundle;
use Bold\Checkout\Api\Quote\GetQuoteInventoryDataInterface;
use Bold\Checkout\Model\Http\Client\Request\Validator\ShopIdValidator;
use Exception;
use Magento\Bundle\Model\Product\Type as Bundle;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Module\Manager;
use Magento\Framework\ObjectManagerInterface;
use Magento\InventorySalesApi\Api\IsProductSalableForRequestedQtyInterface;
use Magento\InventorySalesApi\Api\StockResolverInterface;
use Magento\Quote\Api\CartRepositoryInterface;
use Magento\Quote\Api\Data\CartItemInterface;
use Magento\Store\Model\StoreManagerInterface;
Expand Down Expand Up @@ -58,6 +62,16 @@ class GetQuoteInventoryData implements GetQuoteInventoryDataInterface
*/
private $storeManager;

/**
* @var Manager
*/
private $moduleManager;

/**
* @var IsProductSalableForRequestedQtyInterface
*/
private $isProductSalableForRequestedQty;

/**
* @param CartRepositoryInterface $cartRepository
* @param ShopIdValidator $shopIdValidator
Expand All @@ -66,6 +80,8 @@ class GetQuoteInventoryData implements GetQuoteInventoryDataInterface
* @param ErrorInterfaceFactory $errorFactory
* @param InventoryDataInterfaceFactory $inventoryDataFactory
* @param StoreManagerInterface $storeManager
* @param Manager $moduleManager
* @param IsProductSalableForRequestedQtyInterface $isProductSalableForRequestedQty
*/
public function __construct(
CartRepositoryInterface $cartRepository,
Expand All @@ -74,7 +90,9 @@ public function __construct(
ResultInterfaceFactory $resultFactory,
ErrorInterfaceFactory $errorFactory,
InventoryDataInterfaceFactory $inventoryDataFactory,
StoreManagerInterface $storeManager
StoreManagerInterface $storeManager,
Manager $moduleManager,
IsProductSalableForRequestedQtyInterface $isProductSalableForRequestedQty
) {
$this->cartRepository = $cartRepository;
$this->shopIdValidator = $shopIdValidator;
Expand All @@ -83,6 +101,8 @@ public function __construct(
$this->inventoryDataFactory = $inventoryDataFactory;
$this->objectManager = $objectManager;
$this->storeManager = $storeManager;
$this->moduleManager = $moduleManager;
$this->isProductSalableForRequestedQty = $isProductSalableForRequestedQty;
}

/**
Expand Down Expand Up @@ -158,84 +178,35 @@ private function isProductSalable(CartItemInterface $item): bool
}

try {
if (!$this->moduleManager->isEnabled('Magento_InventorySalesApi')) {
return (bool)$item->getProduct()->isSalable();
}
$stockResolver = $this->getStockResolverService();
$productSalableForRequestedQtyService = $this->getProductSalableForRequestedQtyService();
$sku = $item['product']['sku'];
$requestedQty = $item->getParentItem() ? (float)$item->getParentItem()->getQty() : (float)$item->getQty();
$request = $this->getRequest(
(string)$sku,
$requestedQty
);
if (!$request || !$stockResolver || !$productSalableForRequestedQtyService) {
return (bool)$item->getProduct()->isSalable();
}
$websiteId = (int)$this->storeManager->getStore($item->getStoreId())->getWebsiteId();
$websiteCode = $this->storeManager->getWebsite($websiteId)->getCode();
$stockId = $stockResolver->execute('website', $websiteCode)->getStockId();
$result = current($productSalableForRequestedQtyService->execute([$request], $stockId));
$result = $this->isProductSalableForRequestedQty->execute($sku, $stockId, $requestedQty);

return $result->isSalable();
} catch (Exception $e) {
return false;
}
}

/**
* Try to build \Magento\InventorySalesApi\Api\AreProductsSalableForRequestedQtyInterface. If it's not possible, return null.
*
* @return \Magento\InventorySalesApi\Api\AreProductsSalableForRequestedQtyInterface|null
*/
private function getProductSalableForRequestedQtyService(): ?\Magento\InventorySalesApi\Api\AreProductsSalableForRequestedQtyInterface
{
try {
$areProductsSalable = $this->objectManager->get(
\Magento\InventorySalesApi\Api\AreProductsSalableForRequestedQtyInterface::class
);
} catch (Throwable $e) {
$areProductsSalable = null;
}
return $areProductsSalable;
}

/**
* Try to build \Magento\InventorySalesApi\Api\StockResolverInterface. If it's not possible, return null.
*
* @return \Magento\InventorySalesApi\Api\StockResolverInterface|null
* @return StockResolverInterface|null
*/
private function getStockResolverService(): ?\Magento\InventorySalesApi\Api\StockResolverInterface
private function getStockResolverService(): ?StockResolverInterface
{
try {
$stockResolver = $this->objectManager->get(\Magento\InventorySalesApi\Api\StockResolverInterface::class);
$stockResolver = $this->objectManager->get(StockResolverInterface::class);
} catch (Throwable $e) {
$stockResolver = null;
}
return $stockResolver;
}

/**
* Try to build \Magento\InventorySalesApi\Api\Data\IsProductSalableForRequestedQtyRequestInterface.
* If it's not possible, return null.
*
* @param string $sku
* @param float $qty
* @return \Magento\InventorySalesApi\Api\Data\IsProductSalableForRequestedQtyRequestInterface|null
*/
private function getRequest(
string $sku,
float $qty
): ?\Magento\InventorySalesApi\Api\Data\IsProductSalableForRequestedQtyRequestInterface {
try {
$requestFactory = $this->objectManager->get(
\Magento\InventorySalesApi\Api\Data\IsProductSalableForRequestedQtyRequestInterfaceFactory::class
);
$request = $requestFactory->create(
[
'sku' => $sku,
'qty' => $qty,
]
);
} catch (Throwable $e) {
$request = null;
}
return $request;
}
}