Spaces:
No application file
No application file
File size: 5,744 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
<?php
declare(strict_types=1);
namespace Mautic\MarketplaceBundle\Controller;
use Doctrine\Persistence\ManagerRegistry;
use Mautic\CoreBundle\Controller\AjaxController as CommonAjaxController;
use Mautic\CoreBundle\Factory\MauticFactory;
use Mautic\CoreBundle\Factory\ModelFactory;
use Mautic\CoreBundle\Helper\CacheHelper;
use Mautic\CoreBundle\Helper\ComposerHelper;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\CoreBundle\Helper\UserHelper;
use Mautic\CoreBundle\Security\Permissions\CorePermissions;
use Mautic\CoreBundle\Service\FlashBag;
use Mautic\CoreBundle\Translation\Translator;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
class AjaxController extends CommonAjaxController
{
public function __construct(
private ComposerHelper $composer,
private CacheHelper $cacheHelper,
private LoggerInterface $logger,
ManagerRegistry $doctrine,
MauticFactory $factory,
ModelFactory $modelFactory,
UserHelper $userHelper,
CoreParametersHelper $coreParametersHelper,
EventDispatcherInterface $dispatcher,
Translator $translator,
FlashBag $flashBag,
RequestStack $requestStack,
CorePermissions $security
) {
parent::__construct($doctrine, $factory, $modelFactory, $userHelper, $coreParametersHelper, $dispatcher, $translator, $flashBag, $requestStack, $security);
}
public function installPackageAction(Request $request): JsonResponse
{
$data = json_decode($request->getContent(), true);
if (empty($data['vendor']) || empty($data['package'])) {
return $this->sendJsonResponse([
'error' => $this->translator->trans('marketplace.package.request.details.missing'),
], 400);
}
$packageName = $data['vendor'].'/'.$data['package'];
if ($this->composer->isInstalled($packageName)) {
return $this->sendJsonResponse([
'error' => $this->translator->trans('marketplace.package.install.already.installed'),
], 400);
}
try {
$installResult = $this->composer->install($packageName);
if (Command::SUCCESS !== $installResult->exitCode) {
return $this->installError(new \Exception($installResult->output));
}
} catch (\Exception $e) {
return $this->installError($e);
}
// Note: do not do anything except returning a response after clearing the cache to prevent errors
$clearCacheResult = $this->clearCacheOrReturnError();
if (null !== $clearCacheResult) {
return $clearCacheResult;
}
return new JsonResponse(['success' => true]);
}
public function removePackageAction(Request $request): JsonResponse
{
$data = json_decode($request->getContent(), true);
if (empty($data['vendor']) || empty($data['package'])) {
return $this->sendJsonResponse([
'error' => $this->translator->trans('marketplace.package.request.details.missing'),
], 400);
}
$packageName = $data['vendor'].'/'.$data['package'];
if (!$this->composer->isInstalled($packageName)) {
return $this->sendJsonResponse([
'error' => $this->translator->trans('marketplace.package.remove.not.installed'),
], 400);
}
try {
$removeResult = $this->composer->remove($packageName);
if (0 !== $removeResult->exitCode) {
return $this->removeError(new \Exception($removeResult->output));
}
} catch (\Exception $e) {
return $this->removeError($e);
}
// Note: do not do anything except returning a response after clearing the cache to prevent errors
$clearCacheResult = $this->clearCacheOrReturnError();
if (null !== $clearCacheResult) {
return $clearCacheResult;
}
return new JsonResponse(['success' => true]);
}
private function clearCacheOrReturnError(): ?JsonResponse
{
try {
$exitCode = $this->cacheHelper->clearSymfonyCache();
if (0 !== $exitCode) {
$this->logger->error('Could not clear Mautic\'s cache. Please try again.');
return $this->sendJsonResponse([
'error' => $this->translator->trans('marketplace.package.cache.clear.failed'),
], 500);
}
} catch (\Exception $e) {
$this->logger->error('Could not clear Mautic\'s cache. Details: '.$e->getMessage());
return $this->sendJsonResponse([
'error' => $this->translator->trans('marketplace.package.cache.clear.failed'),
], 500);
}
return null;
}
private function installError(\Exception $e): JsonResponse
{
$this->logger->error('Installation of plugin through Composer has failed: '.$e->getMessage());
return $this->sendJsonResponse([
'error' => $this->translator->trans('marketplace.package.install.failed'),
], 500);
}
private function removeError(\Exception $e): JsonResponse
{
$this->logger->error('Error while removing package through Composer: '.$e->getMessage());
return $this->sendJsonResponse([
'error' => $this->translator->trans('marketplace.package.remove.failed'),
], 500);
}
}
|