* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Adapter\Currency\CommandHandler; use Configuration; use Currency; use PrestaShop\PrestaShop\Core\Domain\Currency\Command\DeleteCurrencyCommand; use PrestaShop\PrestaShop\Core\Domain\Currency\CommandHandler\DeleteCurrencyHandlerInterface; use PrestaShop\PrestaShop\Core\Domain\Currency\Exception\CannotDeleteCurrencyException; use PrestaShop\PrestaShop\Core\Domain\Currency\Exception\CannotDeleteDefaultCurrencyException; use PrestaShop\PrestaShop\Core\Domain\Currency\Exception\CurrencyException; use PrestaShop\PrestaShop\Core\Domain\Currency\Exception\CurrencyNotFoundException; use PrestaShop\PrestaShop\Core\Domain\Currency\Exception\DefaultCurrencyInMultiShopException; use PrestaShopException; use Shop; /** * Class DeleteCurrencyHandler is responsible for handling the deletion of currency logic. * * @internal */ final class DeleteCurrencyHandler implements DeleteCurrencyHandlerInterface { /** * @var int */ private $defaultCurrencyId; /** * @param int $defaultCurrencyId */ public function __construct($defaultCurrencyId) { $this->defaultCurrencyId = (int) $defaultCurrencyId; } /** * {@inheritdoc} * * @throws CurrencyException */ public function handle(DeleteCurrencyCommand $command) { $entity = new Currency($command->getCurrencyId()->getValue()); if (0 >= $entity->id) { throw new CurrencyNotFoundException(sprintf('Currency object with id "%s" has not been found for deletion.', $command->getCurrencyId()->getValue())); } $this->assertDefaultCurrencyIsNotBeingRemoved($command->getCurrencyId()->getValue()); $this->assertDefaultCurrencyIsNotBeingRemovedFromAnyShop($entity); try { if (false === $entity->delete()) { throw new CannotDeleteCurrencyException(sprintf('Unable to delete currency object with id "%s"', $command->getCurrencyId()->getValue())); } } catch (PrestaShopException $e) { throw new CurrencyException(sprintf('An error occurred when deleting Currency object with id "%s"', $command->getCurrencyId()->getValue()), 0, $e); } } /** * @param int $currencyId * * @throws CannotDeleteDefaultCurrencyException */ private function assertDefaultCurrencyIsNotBeingRemoved($currencyId) { if ($currencyId === $this->defaultCurrencyId) { throw new CannotDeleteDefaultCurrencyException(sprintf('Currency with id "%s" is the default currency and cannot be deleted.', $currencyId)); } } /** * Prevents from removing the currency from any shop context. * * @param Currency $currency * * @throws DefaultCurrencyInMultiShopException */ private function assertDefaultCurrencyIsNotBeingRemovedFromAnyShop(Currency $currency) { $allShopIds = Shop::getShops(false, null, true); foreach ($allShopIds as $shopId) { $shopDefaultCurrencyId = (int) Configuration::get( 'PS_CURRENCY_DEFAULT', null, null, $shopId ); if ((int) $currency->id !== $shopDefaultCurrencyId) { continue; } $shop = new Shop($shopId); throw new DefaultCurrencyInMultiShopException($currency->name, $shop->name, sprintf('Currency with id %s cannot be removed from shop with id %s because its the default currency.', $currency->id, $shopId), DefaultCurrencyInMultiShopException::CANNOT_REMOVE_CURRENCY); } } }