<?php declare(strict_types=1);
namespace Neno\HeroSlider;
use Doctrine\DBAL\Connection;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
class NenoHeroSlider extends Plugin
{
public function install(InstallContext $installContext): void
{
if ($this->isCategorySlideColumnExisting()) {
// This fixes a cross-compatibility bug with ConfiguratorTheme
/**
* @var Connection $connection
*/
$connection = $this->container->get(Connection::class);
$connection->executeUpdate('ALTER TABLE `category` DROP COLUMN `heroSliderSlides`');
}
parent::install($installContext);
}
public function postInstall(InstallContext $installContext): void
{
parent::postInstall($installContext);
if (!$this->isCategorySlideColumnExisting()) {
// See install method:
// we are not sure if we only partially migrated,
// so we need to monkey patch category.heroSliderSlides back in
// if it does not exist
/**
* @var Connection $connection
*/
$connection = $this->container->get(Connection::class);
$connection->executeUpdate('ALTER TABLE `category` ADD COLUMN `heroSliderSlides` binary(16) NULL');
}
}
public function uninstall(UninstallContext $context): void
{
parent::uninstall($context);
$connection = $this->container->get(Connection::class);
if ($this->isCategorySlideColumnExisting()) {
$connection->executeUpdate('ALTER TABLE `category` DROP COLUMN `heroSliderSlides`');
}
if ($context->keepUserData()) {
return;
}
$connection->executeUpdate('DROP TABLE IF EXISTS `neno_hero_slider_slide_category`');
$connection->executeUpdate('DROP TABLE IF EXISTS `neno_hero_slider_slide_translation`');
$connection->executeUpdate('DROP TABLE IF EXISTS `neno_hero_slider_slide`');
}
private function isCategorySlideColumnExisting() {
/**
* @var Connection $connection
*/
$connection = $this->container->get(Connection::class);
$sm = $connection->getSchemaManager();
$categoryColumns = $sm->listTableColumns('category');
$exists = false;
foreach ($categoryColumns as $column) {
if ($column->getName() === 'heroSliderSlides') {
$exists = true;
break;
}
}
return $exists;
}
}