]> source.dussan.org Git - nextcloud-server.git/commitdiff
Migrate missing column database check to new API
authorCôme Chilliet <come.chilliet@nextcloud.com>
Tue, 14 Nov 2023 14:14:14 +0000 (15:14 +0100)
committerCôme Chilliet <91878298+come-nc@users.noreply.github.com>
Mon, 27 Nov 2023 14:23:52 +0000 (15:23 +0100)
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
apps/settings/composer/composer/autoload_classmap.php
apps/settings/composer/composer/autoload_static.php
apps/settings/lib/AppInfo/Application.php
apps/settings/lib/Controller/CheckSetupController.php
apps/settings/lib/SetupChecks/DatabaseHasMissingColumns.php [new file with mode: 0644]
apps/settings/tests/Controller/CheckSetupControllerTest.php
core/js/setupchecks.js
core/js/tests/specs/setupchecksSpec.js
lib/private/DB/MissingColumnInformation.php

index e6d1f3ff83f5de042b55213e7c7fed945204d25e..c3ce86504438fbecb6e48cde70ffe30df257595e 100644 (file)
@@ -75,6 +75,7 @@ return array(
     'OCA\\Settings\\Settings\\Personal\\ServerDevNotice' => $baseDir . '/../lib/Settings/Personal/ServerDevNotice.php',
     'OCA\\Settings\\SetupChecks\\BruteForceThrottler' => $baseDir . '/../lib/SetupChecks/BruteForceThrottler.php',
     'OCA\\Settings\\SetupChecks\\CheckUserCertificates' => $baseDir . '/../lib/SetupChecks/CheckUserCertificates.php',
+    'OCA\\Settings\\SetupChecks\\DatabaseHasMissingColumns' => $baseDir . '/../lib/SetupChecks/DatabaseHasMissingColumns.php',
     'OCA\\Settings\\SetupChecks\\DefaultPhoneRegionSet' => $baseDir . '/../lib/SetupChecks/DefaultPhoneRegionSet.php',
     'OCA\\Settings\\SetupChecks\\EmailTestSuccessful' => $baseDir . '/../lib/SetupChecks/EmailTestSuccessful.php',
     'OCA\\Settings\\SetupChecks\\FileLocking' => $baseDir . '/../lib/SetupChecks/FileLocking.php',
index 1a95f65119ac36dbcb9cd037c49f04b1ae5767b8..fe123d74d8197f4aba99362ee14369bf24dfd780 100644 (file)
@@ -90,6 +90,7 @@ class ComposerStaticInitSettings
         'OCA\\Settings\\Settings\\Personal\\ServerDevNotice' => __DIR__ . '/..' . '/../lib/Settings/Personal/ServerDevNotice.php',
         'OCA\\Settings\\SetupChecks\\BruteForceThrottler' => __DIR__ . '/..' . '/../lib/SetupChecks/BruteForceThrottler.php',
         'OCA\\Settings\\SetupChecks\\CheckUserCertificates' => __DIR__ . '/..' . '/../lib/SetupChecks/CheckUserCertificates.php',
+        'OCA\\Settings\\SetupChecks\\DatabaseHasMissingColumns' => __DIR__ . '/..' . '/../lib/SetupChecks/DatabaseHasMissingColumns.php',
         'OCA\\Settings\\SetupChecks\\DefaultPhoneRegionSet' => __DIR__ . '/..' . '/../lib/SetupChecks/DefaultPhoneRegionSet.php',
         'OCA\\Settings\\SetupChecks\\EmailTestSuccessful' => __DIR__ . '/..' . '/../lib/SetupChecks/EmailTestSuccessful.php',
         'OCA\\Settings\\SetupChecks\\FileLocking' => __DIR__ . '/..' . '/../lib/SetupChecks/FileLocking.php',
index d694e650b4871c04a256d3f879abfd5a8e757a02..d73961968f8bf22ad19c304dc73d6df6fe243b39 100644 (file)
@@ -50,6 +50,7 @@ use OCA\Settings\Search\SectionSearch;
 use OCA\Settings\Search\UserSearch;
 use OCA\Settings\SetupChecks\BruteForceThrottler;
 use OCA\Settings\SetupChecks\CheckUserCertificates;
+use OCA\Settings\SetupChecks\DatabaseHasMissingColumns;
 use OCA\Settings\SetupChecks\DefaultPhoneRegionSet;
 use OCA\Settings\SetupChecks\EmailTestSuccessful;
 use OCA\Settings\SetupChecks\FileLocking;
@@ -160,6 +161,7 @@ class Application extends App implements IBootstrap {
                });
                $context->registerSetupCheck(BruteForceThrottler::class);
                $context->registerSetupCheck(CheckUserCertificates::class);
+               $context->registerSetupCheck(DatabaseHasMissingColumns::class);
                $context->registerSetupCheck(DefaultPhoneRegionSet::class);
                $context->registerSetupCheck(EmailTestSuccessful::class);
                $context->registerSetupCheck(FileLocking::class);
index 13e54063d8ac9291e383e75f312c03b17ec00b70..1fa6a658878aa157071e38be8971c03e63dde2fc 100644 (file)
@@ -51,7 +51,6 @@ use GuzzleHttp\Exception\ClientException;
 use OC;
 use OC\AppFramework\Http;
 use OC\DB\Connection;
-use OC\DB\MissingColumnInformation;
 use OC\DB\MissingIndexInformation;
 use OC\DB\MissingPrimaryKeyInformation;
 use OC\DB\SchemaWrapper;
@@ -62,7 +61,6 @@ use OCP\AppFramework\Http\Attribute\IgnoreOpenAPI;
 use OCP\AppFramework\Http\DataDisplayResponse;
 use OCP\AppFramework\Http\DataResponse;
 use OCP\AppFramework\Http\RedirectResponse;
-use OCP\DB\Events\AddMissingColumnsEvent;
 use OCP\DB\Events\AddMissingIndicesEvent;
 use OCP\DB\Events\AddMissingPrimaryKeyEvent;
 use OCP\DB\Types;
@@ -464,28 +462,6 @@ Raw output
                return $info->getListOfMissingPrimaryKeys();
        }
 
-       protected function hasMissingColumns(): array {
-               $columnInfo = new MissingColumnInformation();
-               // Dispatch event so apps can also hint for pending column updates if needed
-               $event = new AddMissingColumnsEvent();
-               $this->dispatcher->dispatchTyped($event);
-               $missingColumns = $event->getMissingColumns();
-
-               if (!empty($missingColumns)) {
-                       $schema = new SchemaWrapper(\OCP\Server::get(Connection::class));
-                       foreach ($missingColumns as $missingColumn) {
-                               if ($schema->hasTable($missingColumn['tableName'])) {
-                                       $table = $schema->getTable($missingColumn['tableName']);
-                                       if (!$table->hasColumn($missingColumn['columnName'])) {
-                                               $columnInfo->addHintForMissingColumn($missingColumn['tableName'], $missingColumn['columnName']);
-                                       }
-                               }
-                       }
-               }
-
-               return $columnInfo->getListOfMissingColumns();
-       }
-
        protected function isSqliteUsed() {
                return str_contains($this->config->getSystemValue('dbtype'), 'sqlite');
        }
@@ -704,7 +680,6 @@ Raw output
                                'isSettimelimitAvailable' => $this->isSettimelimitAvailable(),
                                'missingPrimaryKeys' => $this->hasMissingPrimaryKeys(),
                                'missingIndexes' => $this->hasMissingIndexes(),
-                               'missingColumns' => $this->hasMissingColumns(),
                                'isSqliteUsed' => $this->isSqliteUsed(),
                                'databaseConversionDocumentation' => $this->urlGenerator->linkToDocs('admin-db-conversion'),
                                'appDirsWithDifferentOwner' => $this->getAppDirsWithDifferentOwner(),
diff --git a/apps/settings/lib/SetupChecks/DatabaseHasMissingColumns.php b/apps/settings/lib/SetupChecks/DatabaseHasMissingColumns.php
new file mode 100644 (file)
index 0000000..946f357
--- /dev/null
@@ -0,0 +1,89 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @copyright Copyright (c) 2023 Côme Chilliet <come.chilliet@nextcloud.com>
+ *
+ * @author Côme Chilliet <come.chilliet@nextcloud.com>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+namespace OCA\Settings\SetupChecks;
+
+use OC\DB\Connection;
+use OC\DB\MissingColumnInformation;
+use OC\DB\SchemaWrapper;
+use OCP\DB\Events\AddMissingColumnsEvent;
+use OCP\EventDispatcher\IEventDispatcher;
+use OCP\IL10N;
+use OCP\SetupCheck\ISetupCheck;
+use OCP\SetupCheck\SetupResult;
+
+class DatabaseHasMissingColumns implements ISetupCheck {
+       public function __construct(
+               private IL10N $l10n,
+               private Connection $connection,
+               private IEventDispatcher $dispatcher,
+       ) {
+       }
+
+       public function getCategory(): string {
+               return 'database';
+       }
+
+       public function getName(): string {
+               return $this->l10n->t('Database missing columns');
+       }
+
+       private function getMissingColumns(): array {
+               $columnInfo = new MissingColumnInformation();
+               // Dispatch event so apps can also hint for pending column updates if needed
+               $event = new AddMissingColumnsEvent();
+               $this->dispatcher->dispatchTyped($event);
+               $missingColumns = $event->getMissingColumns();
+
+               if (!empty($missingColumns)) {
+                       $schema = new SchemaWrapper($this->connection);
+                       foreach ($missingColumns as $missingColumn) {
+                               if ($schema->hasTable($missingColumn['tableName'])) {
+                                       $table = $schema->getTable($missingColumn['tableName']);
+                                       if (!$table->hasColumn($missingColumn['columnName'])) {
+                                               $columnInfo->addHintForMissingColumn($missingColumn['tableName'], $missingColumn['columnName']);
+                                       }
+                               }
+                       }
+               }
+
+               return $columnInfo->getListOfMissingColumns();
+       }
+
+       public function run(): SetupResult {
+               $missingColumns = $this->getMissingColumns();
+               if (empty($missingColumns)) {
+                       return SetupResult::success('None');
+               } else {
+                       $list = '';
+                       foreach ($missingColumns as $missingColumn) {
+                               $list .= "\n".$this->l10n->t('Missing optional column "%s" in table "%s".', [$missingColumn['columnName'], $missingColumn['tableName']]);
+                       }
+                       return SetupResult::info(
+                               $this->l10n->t('The database is missing some optional columns. Due to the fact that adding columns on big tables could take some time they were not added automatically when they can be optional. By running "occ db:add-missing-columns" those missing columns could be added manually while the instance keeps running. Once the columns are added some features might improve responsiveness or usability.').$list
+                       );
+               }
+       }
+}
index fb2aa1a975dd4db10807c0441b7de40cb4121c11..e5db2d52e3c05f59ee13fb647774bc2b08d2fb0f 100644 (file)
@@ -339,7 +339,6 @@ class CheckSetupControllerTest extends TestCase {
                                'databaseConversionDocumentation' => 'http://docs.example.org/server/go.php?to=admin-db-conversion',
                                'missingIndexes' => [],
                                'missingPrimaryKeys' => [],
-                               'missingColumns' => [],
                                'appDirsWithDifferentOwner' => [],
                                'isImagickEnabled' => false,
                                'areWebauthnExtensionsEnabled' => false,
index 1d64acf01ea86768b217e0a947ed9f4907eb14c9..5cd2cadaa2d081a0bb9a03d1f00314abfd8a2d08 100644 (file)
                                                        type: OC.SetupChecks.MESSAGE_TYPE_INFO
                                                })
                                        }
-                                       if (data.missingColumns.length > 0) {
-                                               var listOfMissingColumns = "";
-                                               data.missingColumns.forEach(function(element){
-                                                       listOfMissingColumns += '<li>';
-                                                       listOfMissingColumns += t('core', 'Missing optional column "{columnName}" in table "{tableName}".', element);
-                                                       listOfMissingColumns += '</li>';
-                                               });
-                                               messages.push({
-                                                       msg: t('core', 'The database is missing some optional columns. Due to the fact that adding columns on big tables could take some time they were not added automatically when they can be optional. By running "occ db:add-missing-columns" those missing columns could be added manually while the instance keeps running. Once the columns are added some features might improve responsiveness or usability.') + '<ul>' + listOfMissingColumns + '</ul>',
-                                                       type: OC.SetupChecks.MESSAGE_TYPE_INFO
-                                               })
-                                       }
                                        if (!data.isImagickEnabled) {
                                                messages.push({
                                                        msg: t(
index d9124cfc84d9d5103e5d396d78939e8b969ea56b..9cba013bb87d74b6543fbbfafa4481269e845013 100644 (file)
@@ -231,7 +231,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -284,7 +283,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -337,7 +335,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -390,7 +387,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -441,7 +437,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -495,7 +490,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: false,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -547,7 +541,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -630,7 +623,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -688,7 +680,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -739,7 +730,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -794,7 +784,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -846,7 +835,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -895,7 +883,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -947,7 +934,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -999,7 +985,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -1050,7 +1035,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
@@ -1108,7 +1092,6 @@ describe('OC.SetupChecks tests', function() {
                                        isSettimelimitAvailable: true,
                                        missingIndexes: [],
                                        missingPrimaryKeys: [],
-                                       missingColumns: [],
                                        cronErrors: [],
                                        cronInfo: {
                                                diffInSeconds: 0
index f651546b4b374f7e7de615b62873fe7af0060aac..919f8923a26da5a87160cb84a338fac8cb94b587 100644 (file)
@@ -26,7 +26,7 @@ declare(strict_types=1);
 namespace OC\DB;
 
 class MissingColumnInformation {
-       private $listOfMissingColumns = [];
+       private array $listOfMissingColumns = [];
 
        public function addHintForMissingColumn(string $tableName, string $columnName): void {
                $this->listOfMissingColumns[] = [