From 5cbeea8119d141bfff034ee99be876ee98f28e42 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Fri, 5 Dec 2025 11:18:57 +0200 Subject: [PATCH] upgrade check --- upgrades/9.3/data.json | 3 + upgrades/9.3/scripts/BeforeUpgrade.php | 95 ++++++++++++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100644 upgrades/9.3/data.json create mode 100644 upgrades/9.3/scripts/BeforeUpgrade.php diff --git a/upgrades/9.3/data.json b/upgrades/9.3/data.json new file mode 100644 index 0000000000..3d74c7fbee --- /dev/null +++ b/upgrades/9.3/data.json @@ -0,0 +1,3 @@ +{ + "manifest": {} +} diff --git a/upgrades/9.3/scripts/BeforeUpgrade.php b/upgrades/9.3/scripts/BeforeUpgrade.php new file mode 100644 index 0000000000..a94a7b1755 --- /dev/null +++ b/upgrades/9.3/scripts/BeforeUpgrade.php @@ -0,0 +1,95 @@ +. + * + * The interactive user interfaces in modified source and object code versions + * of this program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU Affero General Public License version 3. + * + * In accordance with Section 7(b) of the GNU Affero General Public License version 3, + * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. + ************************************************************************/ + +use Espo\Core\Container; +use Espo\Entities\Extension; +use Espo\ORM\EntityManager; + +/** @noinspection PhpMultipleClassDeclarationsInspection */ +class BeforeUpgrade +{ + private ?Container $container = null; + + /** + * @throws Exception + */ + public function run(Container $container): void + { + $this->container = $container; + + $this->processCheckExtensions(); + } + + /** + * @throws Error + */ + private function processCheckExtensions(): void + { + $errorMessageList = []; + + $this->processCheckExtension('Google Integration', '1.8.3', $errorMessageList); + $this->processCheckExtension('Outlook Integration', '1.6.12', $errorMessageList); + + if (!count($errorMessageList)) { + return; + } + + $message = implode("\n\n", $errorMessageList); + + throw new Error($message); + } + + private function processCheckExtension(string $name, string $minVersion, array &$errorMessageList): void + { + $em = $this->container->getByClass(EntityManager::class); + + $extension = $em->getRDBRepository(Extension::ENTITY_TYPE) + ->where([ + 'name' => $name, + 'isInstalled' => true, + ]) + ->findOne(); + + if (!$extension) { + return; + } + + $version = $extension->get('version'); + + if (version_compare($version, $minVersion, '>=')) { + return; + } + + $message = + "EspoCRM 9.3 is not compatible with '$name' extension of versions lower than $minVersion. " . + "You need to upgrade the extension."; + + $errorMessageList[] = $message; + } +}