Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /** * Copyright Magento, Inc. All rights reserved. * See COPYING.txt for license ..

Decoded Output download

<?php
/**
 * Copyright  Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Catalog\Model\Product\Price\Validation;

/**
 * Class is responsible to detect list of invalid SKU values from list of provided skus and allowed product types.
 */
class InvalidSkuProcessor
{
    /**
     * @var \Magento\Catalog\Model\ProductIdLocatorInterface
     */
    private $productIdLocator;

    /**
     * @var \Magento\Catalog\Api\ProductRepositoryInterface
     */
    private $productRepository;

    /**
     * @param \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator
     * @param \Magento\Catalog\Api\ProductRepositoryInterface $productRepository
     */
    public function __construct(
        \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator,
        \Magento\Catalog\Api\ProductRepositoryInterface $productRepository
    ) {
        $this->productIdLocator = $productIdLocator;
        $this->productRepository = $productRepository;
    }

    /**
     * Retrieve not found or invalid SKUs which product types are included to allowed types list.
     *
     * @param array $skus
     * @param array $allowedProductTypes
     * @param int|null $allowedPriceTypeValue
     * @return array
     */
    public function retrieveInvalidSkuList(array $skus, array $allowedProductTypes, $allowedPriceTypeValue = null)
    {
        $idsBySku = $this->productIdLocator->retrieveProductIdsBySkus($skus);
        $existingSkus = array_keys($idsBySku);
        $skuDiff = array_udiff(
            $skus,
            $existingSkus,
            'strcasecmp'
        );

        foreach ($idsBySku as $sku => $ids) {
            foreach ($ids as $type) {
                $valueTypeIsAllowed = false;

                if ($allowedPriceTypeValue
                    && $type == \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE
                    && $this->productRepository->get($sku)->getPriceType() != $allowedPriceTypeValue
                ) {
                    $valueTypeIsAllowed = true;
                }

                if (!in_array($type, $allowedProductTypes) || $valueTypeIsAllowed) {
                    $skuDiff[] = $sku;
                    break;
                }
            }
        }

        return $skuDiff;
    }

    /**
     * Filter invalid values in SKUs list.
     *
     * @param array $skus
     * @param array $allowedProductTypes
     * @param int|null $allowedPriceTypeValue
     * @return array
     */
    public function filterSkuList(array $skus, array $allowedProductTypes, $allowedPriceTypeValue = null)
    {
        $failedItems = $this->retrieveInvalidSkuList($skus, $allowedProductTypes, $allowedPriceTypeValue);
        return array_diff($skus, $failedItems);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Copyright  Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Catalog\Model\Product\Price\Validation;

/**
 * Class is responsible to detect list of invalid SKU values from list of provided skus and allowed product types.
 */
class InvalidSkuProcessor
{
    /**
     * @var \Magento\Catalog\Model\ProductIdLocatorInterface
     */
    private $productIdLocator;

    /**
     * @var \Magento\Catalog\Api\ProductRepositoryInterface
     */
    private $productRepository;

    /**
     * @param \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator
     * @param \Magento\Catalog\Api\ProductRepositoryInterface $productRepository
     */
    public function __construct(
        \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator,
        \Magento\Catalog\Api\ProductRepositoryInterface $productRepository
    ) {
        $this->productIdLocator = $productIdLocator;
        $this->productRepository = $productRepository;
    }

    /**
     * Retrieve not found or invalid SKUs which product types are included to allowed types list.
     *
     * @param array $skus
     * @param array $allowedProductTypes
     * @param int|null $allowedPriceTypeValue
     * @return array
     */
    public function retrieveInvalidSkuList(array $skus, array $allowedProductTypes, $allowedPriceTypeValue = null)
    {
        $idsBySku = $this->productIdLocator->retrieveProductIdsBySkus($skus);
        $existingSkus = array_keys($idsBySku);
        $skuDiff = array_udiff(
            $skus,
            $existingSkus,
            'strcasecmp'
        );

        foreach ($idsBySku as $sku => $ids) {
            foreach ($ids as $type) {
                $valueTypeIsAllowed = false;

                if ($allowedPriceTypeValue
                    && $type == \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE
                    && $this->productRepository->get($sku)->getPriceType() != $allowedPriceTypeValue
                ) {
                    $valueTypeIsAllowed = true;
                }

                if (!in_array($type, $allowedProductTypes) || $valueTypeIsAllowed) {
                    $skuDiff[] = $sku;
                    break;
                }
            }
        }

        return $skuDiff;
    }

    /**
     * Filter invalid values in SKUs list.
     *
     * @param array $skus
     * @param array $allowedProductTypes
     * @param int|null $allowedPriceTypeValue
     * @return array
     */
    public function filterSkuList(array $skus, array $allowedProductTypes, $allowedPriceTypeValue = null)
    {
        $failedItems = $this->retrieveInvalidSkuList($skus, $allowedProductTypes, $allowedPriceTypeValue);
        return array_diff($skus, $failedItems);
    }
}

Function Calls

None

Variables

None

Stats

MD5 f90739329a974397737d4a5b1d5b0000
Eval Count 0
Decode Time 107 ms