JEMBOT MAWOT Bypass Shell
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
declare(strict_types=1);
namespace PrestaShop\PrestaShop\Adapter\Product\Combination\Validate;
use Combination;
use PrestaShop\PrestaShop\Adapter\AbstractObjectModelValidator;
use PrestaShop\PrestaShop\Core\Domain\Product\Exception\ProductConstraintException;
use PrestaShop\PrestaShop\Core\Exception\CoreException;
/**
* Validates Combination properties using legacy object model
*/
class CombinationValidator extends AbstractObjectModelValidator
{
/**
* @param Combination $combination
*/
public function validate(Combination $combination): void
{
$this->validateDetails($combination);
$this->validatePrices($combination);
$this->validateStock($combination);
}
/**
* @param Combination $combination
*
* @throws CoreException
* @throws ProductConstraintException
*/
private function validateDetails(Combination $combination): void
{
$this->validateCombinationProperty($combination, 'ean13', ProductConstraintException::INVALID_EAN_13);
$this->validateCombinationProperty($combination, 'isbn', ProductConstraintException::INVALID_ISBN);
$this->validateCombinationProperty($combination, 'mpn', ProductConstraintException::INVALID_MPN);
$this->validateCombinationProperty($combination, 'reference', ProductConstraintException::INVALID_REFERENCE);
$this->validateCombinationProperty($combination, 'upc', ProductConstraintException::INVALID_UPC);
$this->validateCombinationProperty($combination, 'weight', ProductConstraintException::INVALID_WEIGHT);
}
/**
* @param Combination $combination
*
* @throws CoreException
* @throws ProductConstraintException
*/
private function validatePrices(Combination $combination): void
{
$this->validateCombinationProperty($combination, 'price', ProductConstraintException::INVALID_PRICE);
$this->validateCombinationProperty($combination, 'ecotax', ProductConstraintException::INVALID_ECOTAX);
$this->validateCombinationProperty($combination, 'unit_price_impact', ProductConstraintException::INVALID_UNIT_PRICE);
$this->validateCombinationProperty($combination, 'wholesale_price', ProductConstraintException::INVALID_WHOLESALE_PRICE);
}
/**
* @param Combination $combination
*
* @throws CoreException
* @throws ProductConstraintException
*/
private function validateStock(Combination $combination): void
{
$this->validateCombinationProperty($combination, 'minimal_quantity', ProductConstraintException::INVALID_MINIMAL_QUANTITY);
$this->validateCombinationProperty($combination, 'low_stock_threshold', ProductConstraintException::INVALID_LOW_STOCK_THRESHOLD);
$this->validateCombinationProperty($combination, 'low_stock_alert', ProductConstraintException::INVALID_LOW_STOCK_ALERT);
$this->validateCombinationProperty($combination, 'available_date', ProductConstraintException::INVALID_AVAILABLE_DATE);
$this->validateCombinationLocalizedProperty($combination, 'available_later', ProductConstraintException::INVALID_AVAILABLE_LATER);
$this->validateCombinationLocalizedProperty($combination, 'available_now', ProductConstraintException::INVALID_AVAILABLE_NOW);
}
/**
* @param Combination $combination
* @param string $property
* @param int $errorCode
*
* @throws CoreException
* @throws ProductConstraintException
*/
private function validateCombinationProperty(Combination $combination, string $property, int $errorCode): void
{
$this->validateObjectModelProperty($combination, $property, ProductConstraintException::class, $errorCode);
}
/**
* @param Combination $combination
* @param string $property
* @param int $errorCode
*
* @throws ProductConstraintException
*/
private function validateCombinationLocalizedProperty(Combination $combination, string $property, int $errorCode = 0): void
{
$this->validateObjectModelLocalizedProperty(
$combination,
$property,
ProductConstraintException::class,
$errorCode
);
}
}
xxxxx1.0, XXX xxxx