Current File : /var/www/prestashop/modules/ps_mbo/src/Module/Workflow/TransitionsManager.php |
<?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 Academic Free License version 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/AFL-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.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
declare(strict_types=1);
namespace PrestaShop\Module\Mbo\Module\Workflow;
use Exception;
use PrestaShop\Module\Mbo\Exception\DownloadModuleException;
use PrestaShop\Module\Mbo\Module\Exception\TransitionFailedException;
use PrestaShop\Module\Mbo\Module\TransitionModule;
use PrestaShop\Module\Mbo\Service\HookExceptionHolder;
use PrestaShop\PrestaShop\Core\Module\ModuleManager;
class TransitionsManager
{
/**
* @var ModuleManager
*/
private $moduleManager;
/**
* @var HookExceptionHolder
*/
private $hookExceptionHolder;
public function __construct(
ModuleManager $moduleManager,
HookExceptionHolder $hookExceptionHolder
) {
$this->moduleManager = $moduleManager;
$this->hookExceptionHolder = $hookExceptionHolder;
}
public function uninstalledToEnabledAndMobileEnabled(TransitionModule $transitionModule, array $context): bool
{
return $this->install($transitionModule, $context);
}
/**
* @throws Exception
*/
public function enabledAndMobileEnabledToEnabledAndMobileDisabled(TransitionModule $transitionModule, array $context): bool
{
return $this->enable($transitionModule, $context) && $this->disableOnMobile($transitionModule);
}
/**
* @throws Exception
*/
public function enabledAndMobileEnabledToDisabledAndMobileEnabled(TransitionModule $transitionModule, array $context): bool
{
return $this->disable($transitionModule, $context) && $this->enableOnMobile($transitionModule);
}
/**
* @throws Exception
*/
public function enabledAndMobileEnabledToReset(TransitionModule $transitionModule, array $context): bool
{
return $this->reset($transitionModule, $context);
}
/**
* @throws Exception
*/
public function enabledAndMobileEnabledToUpgraded(TransitionModule $transitionModule, array $context): bool
{
return $this->upgrade($transitionModule, $context);
}
public function enabledAndMobileEnabledToConfigured(TransitionModule $transitionModule, array $context): bool
{
return true;
}
/**
* @throws Exception
*/
public function enabledAndMobileEnabledToUninstalled(TransitionModule $transitionModule, array $context): bool
{
return $this->uninstall($transitionModule, $context);
}
/**
* @throws Exception
*/
public function enabledAndMobileDisabledToInstalled(TransitionModule $transitionModule, array $context): bool
{
return $this->install($transitionModule, $context);
}
/**
* @throws Exception
*/
public function enabledAndMobileDisabledToEnabledAndMobileEnabled(TransitionModule $transitionModule, array $context): bool
{
return $this->enable($transitionModule, $context) && $this->enableOnMobile($transitionModule);
}
/**
* @throws Exception
*/
public function enabledAndMobileDisabledToDisabledAndMobileDisabled(TransitionModule $transitionModule, array $context): bool
{
return $this->disable($transitionModule, $context) && $this->disableOnMobile($transitionModule);
}
/**
* @throws Exception
*/
public function enabledAndMobileDisabledToReset(TransitionModule $transitionModule, array $context): bool
{
return $this->reset($transitionModule, $context);
}
/**
* @throws Exception
*/
public function disabledAndMobileDisabledToReset(TransitionModule $transitionModule, array $context): bool
{
return $this->reset($transitionModule, $context);
}
/**
* @throws Exception
*/
public function enabledAndMobileDisabledToUpgraded(TransitionModule $transitionModule, array $context): bool
{
return $this->upgrade($transitionModule, $context);
}
public function enabledAndMobileDisabledToConfigured(TransitionModule $transitionModule, array $context): bool
{
return true;
}
/**
* @throws Exception
*/
public function enabledAndMobileDisabledToUninstalled(TransitionModule $transitionModule, array $context): bool
{
return $this->uninstall($transitionModule, $context);
}
/**
* @throws Exception
*/
public function disabledAndMobileEnabledToInstalled(TransitionModule $transitionModule, array $context): bool
{
return $this->install($transitionModule, $context);
}
/**
* @throws Exception
*/
public function disabledAndMobileEnabledToEnabledAndMobileEnabled(TransitionModule $transitionModule, array $context): bool
{
return $this->enable($transitionModule, $context) && $this->enableOnMobile($transitionModule);
}
/**
* @throws Exception
*/
public function disabledAndMobileEnabledToReset(TransitionModule $transitionModule, array $context): bool
{
return $this->reset($transitionModule, $context);
}
/**
* @throws Exception
*/
public function disabledAndMobileEnabledToUpgraded(TransitionModule $transitionModule, array $context): bool
{
return $this->upgrade($transitionModule, $context);
}
public function disabledAndMobileEnabledToConfigured(TransitionModule $transitionModule, array $context): bool
{
return true;
}
/**
* @throws Exception
*/
public function disabledAndMobileEnabledToUninstalled(TransitionModule $transitionModule, array $context): bool
{
return $this->uninstall($transitionModule, $context);
}
/**
* @throws Exception
*/
public function disabledAndMobileDisabledToDisabledAndMobileEnabled(TransitionModule $transitionModule, array $context): bool
{
return $this->enable($transitionModule, $context) && $this->disableOnMobile($transitionModule);
}
/**
* @throws Exception
*/
public function disabledAndMobileDisabledToEnabledAndMobileDisabled(TransitionModule $transitionModule, array $context): bool
{
return $this->enable($transitionModule, $context) && $this->disableOnMobile($transitionModule);
}
/**
* @throws Exception
*/
public function disabledAndMobileDisabledToUpgraded(TransitionModule $transitionModule, array $context): bool
{
return $this->upgrade($transitionModule, $context);
}
/**
* @throws Exception
*/
public function disabledAndMobileDisabledToUninstalled(TransitionModule $transitionModule, array $context): bool
{
return $this->uninstall($transitionModule, $context);
}
/**
* @throws Exception
*/
private function enable(TransitionModule $transitionModule, ?array $context = []): bool
{
if ($transitionModule->isActive()) {
return true;
}
$moduleName = $transitionModule->getName();
return $this->moduleManager->enable($moduleName);
}
/**
* @throws Exception
*/
private function disable(TransitionModule $transitionModule, ?array $context = []): bool
{
if (!$transitionModule->isActive()) {
return true;
}
$moduleName = $transitionModule->getName();
return $this->moduleManager->disable($moduleName);
}
/**
* @throws Exception
*/
private function enableOnMobile(TransitionModule $transitionModule, ?array $context = []): bool
{
if ($transitionModule->isActiveOnMobile()) {
return true;
}
$moduleName = $transitionModule->getName();
return $this->moduleManager->enableMobile($moduleName);
}
/**
* @throws Exception
*/
private function disableOnMobile(TransitionModule $transitionModule, ?array $context = []): bool
{
if (!$transitionModule->isActiveOnMobile()) {
return true;
}
$moduleName = $transitionModule->getName();
return $this->moduleManager->disableMobile($moduleName);
}
/**
* @throws Exception
*/
private function reset(TransitionModule $transitionModule, ?array $context = []): bool
{
$moduleName = $transitionModule->getName();
if ($this->moduleManager->reset($moduleName)) {
return true;
}
$error = $this->moduleManager->getError($moduleName);
if (!empty($error)) {
$transitionName = (new Transition(
$transitionModule->getStatus(),
TransitionInterface::STATUS_RESET
))->getTransitionName();
throw new TransitionFailedException(
$transitionName,
[
'transition' => $transitionName,
'moduleName' => $moduleName,
'moduleVersion' => $transitionModule->getVersion(),
],
new \Exception($error)
);
}
return false;
}
/**
* Calling this action supposed that the source files are already upgraded.
* If not, please call ModuleStatusCommandHandler with "download" as command or
* directly ActionsManager::downloadAndReplaceModuleFiles to upgrade the module files
*
* @throws Exception
*/
private function upgrade(TransitionModule $transitionModule, ?array $context = []): bool
{
$moduleName = $transitionModule->getName();
return $this->moduleManager->upgrade($moduleName);
}
/**
* @throws Exception
*/
private function uninstall(TransitionModule $transitionModule, ?array $context = []): bool
{
$moduleName = $transitionModule->getName();
return $this->moduleManager->uninstall($moduleName);
}
/**
* @throws Exception
*/
private function install(TransitionModule $transitionModule, ?array $context = []): bool
{
$source = null;
if (isset($context['source'])) {
$source = (string) $context['source'];
}
$moduleName = $transitionModule->getName();
$this->hookExceptionHolder->reset();
$this->hookExceptionHolder->listenFor('actionBeforeInstallModule');
if ($this->moduleManager->install($moduleName, $source)) {
return true;
}
$error = $this->moduleManager->getError($moduleName);
if (!empty($error)) {
$transitionName = (new Transition(
$transitionModule->getStatus(),
TransitionInterface::STATUS_ENABLED__MOBILE_ENABLED
))->getTransitionName();
$errorForHook = $this->hookExceptionHolder->getLastException('actionBeforeInstallModule');
throw $errorForHook ?? new TransitionFailedException(
$transitionName,
[
'transition' => $transitionName,
'moduleName' => $moduleName,
'moduleVersion' => $transitionModule->getVersion(),
],
new \Exception($error)
);
}
return false;
}
}