From 8a203a329c1bfae84e7204bd0fda452c6ad11903 Mon Sep 17 00:00:00 2001 From: Sean Molenaar Date: Fri, 9 Oct 2020 21:17:40 +0200 Subject: Fix minor issues, prepare for foreign keys and check feeds Signed-off-by: Sean Molenaar --- lib/Migration/MigrateConfig.php | 14 ++++- lib/Migration/Version150004Date20201009183830.php | 74 +++++++++++++++++++++++ 2 files changed, 85 insertions(+), 3 deletions(-) create mode 100644 lib/Migration/Version150004Date20201009183830.php (limited to 'lib') diff --git a/lib/Migration/MigrateConfig.php b/lib/Migration/MigrateConfig.php index 50d335892..9f3b32291 100644 --- a/lib/Migration/MigrateConfig.php +++ b/lib/Migration/MigrateConfig.php @@ -30,6 +30,13 @@ class MigrateConfig implements IRepairStep */ private $iConfig; + /** + * Array of defaults + * + * @var array + */ + private $defaults; + /** * @param LegacyConfig $config * @param IConfig $iConfig @@ -39,6 +46,7 @@ class MigrateConfig implements IRepairStep { $this->config = $config; $this->iConfig = $iConfig; + $this->defaults = $application::DEFAULT_SETTINGS; } public function getName() @@ -53,15 +61,15 @@ class MigrateConfig implements IRepairStep return; } - $app_keys = $this->iConfig->getAppKeys(Application::NAME); + $app_keys = $this->iConfig->getAppKeys('news'); foreach ($this->config as $key => $value) { - if (!isset(Application::DEFAULT_SETTINGS[$key])) { + if (!isset($this->defaults[$key])) { continue; } if (in_array($key, $app_keys)) { continue; } - $this->iConfig->setAppValue(Application::NAME, $key, $value); + $this->iConfig->setAppValue('news', $key, $value); } } } diff --git a/lib/Migration/Version150004Date20201009183830.php b/lib/Migration/Version150004Date20201009183830.php new file mode 100644 index 000000000..c6267ac04 --- /dev/null +++ b/lib/Migration/Version150004Date20201009183830.php @@ -0,0 +1,74 @@ +connection = $connection; + } + + /** + * @param IOutput $output + * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` + * @param array $options + */ + public function preSchemaChange(IOutput $output, Closure $schemaClosure, array $options) { + } + + /** + * @param IOutput $output + * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` + * @param array $options + * @return null|ISchemaWrapper + */ + public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { + /** @var ISchemaWrapper $schema */ + $schema = $schemaClosure(); + + if ($schema->hasTable('news_items') && + $schema->getTable('news_items')->hasColumn('feed_id')) { + $schema->getTable('news_items') + ->getColumn('feed_id') + ->setNotnull(true) + ->setUnsigned(true); + } + if ($schema->hasTable('news_feeds') && + $schema->getTable('news_feeds')->hasColumn('folder_id')) { + $schema->getTable('news_feeds') + ->getColumn('folder_id') + ->setUnsigned(true) + ->setNotnull(false) + ->setDefault(null); + } + + return $schema; + } + + /** + * @param IOutput $output + * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` + * @param array $options + */ + public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options) { + $item_name = $this->connection->getQueryBuilder()->getTableName('news_items'); + $feed_name = $this->connection->getQueryBuilder()->getTableName('news_feeds'); + + $items_query = "DELETE FROM ${item_name} WHERE ${item_name}.`feed_id` NOT IN (SELECT DISTINCT id FROM ${feed_name})"; + $this->connection->executeQuery($items_query); + } +} -- cgit v1.2.3