123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2013-2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-only
- */
- use OC\Core\Command;
- use OCP\IConfig;
- use OCP\Server;
- use Stecman\Component\Symfony\Console\BashCompletion\CompletionCommand;
- $application->add(new CompletionCommand());
- $application->add(Server::get(Command\Status::class));
- $application->add(Server::get(Command\Check::class));
- $application->add(Server::get(Command\L10n\CreateJs::class));
- $application->add(Server::get(Command\Integrity\SignApp::class));
- $application->add(Server::get(Command\Integrity\SignCore::class));
- $application->add(Server::get(Command\Integrity\CheckApp::class));
- $application->add(Server::get(Command\Integrity\CheckCore::class));
- $config = Server::get(IConfig::class);
- if ($config->getSystemValueBool('installed', false)) {
- $application->add(Server::get(Command\App\Disable::class));
- $application->add(Server::get(Command\App\Enable::class));
- $application->add(Server::get(Command\App\Install::class));
- $application->add(Server::get(Command\App\GetPath::class));
- $application->add(Server::get(Command\App\ListApps::class));
- $application->add(Server::get(Command\App\Remove::class));
- $application->add(Server::get(Command\App\Update::class));
- $application->add(Server::get(Command\TwoFactorAuth\Cleanup::class));
- $application->add(Server::get(Command\TwoFactorAuth\Enforce::class));
- $application->add(Server::get(Command\TwoFactorAuth\Enable::class));
- $application->add(Server::get(Command\TwoFactorAuth\Disable::class));
- $application->add(Server::get(Command\TwoFactorAuth\State::class));
- $application->add(Server::get(Command\Background\Mode::class));
- $application->add(Server::get(Command\Background\Job::class));
- $application->add(Server::get(Command\Background\ListCommand::class));
- $application->add(Server::get(Command\Background\Delete::class));
- $application->add(Server::get(Command\Background\JobWorker::class));
- $application->add(Server::get(Command\Broadcast\Test::class));
- $application->add(Server::get(Command\Config\App\DeleteConfig::class));
- $application->add(Server::get(Command\Config\App\GetConfig::class));
- $application->add(Server::get(Command\Config\App\SetConfig::class));
- $application->add(Server::get(Command\Config\Import::class));
- $application->add(Server::get(Command\Config\ListConfigs::class));
- $application->add(Server::get(Command\Config\System\DeleteConfig::class));
- $application->add(Server::get(Command\Config\System\GetConfig::class));
- $application->add(Server::get(Command\Config\System\SetConfig::class));
- $application->add(Server::get(Command\Info\File::class));
- $application->add(Server::get(Command\Info\Space::class));
- $application->add(Server::get(Command\Db\ConvertType::class));
- $application->add(Server::get(Command\Db\ConvertMysqlToMB4::class));
- $application->add(Server::get(Command\Db\ConvertFilecacheBigInt::class));
- $application->add(Server::get(Command\Db\AddMissingColumns::class));
- $application->add(Server::get(Command\Db\AddMissingIndices::class));
- $application->add(Server::get(Command\Db\AddMissingPrimaryKeys::class));
- $application->add(Server::get(Command\Db\ExpectedSchema::class));
- $application->add(Server::get(Command\Db\ExportSchema::class));
- $application->add(Server::get(Command\Db\Migrations\GenerateMetadataCommand::class));
- $application->add(Server::get(Command\Db\Migrations\PreviewCommand::class));
- if ($config->getSystemValueBool('debug', false)) {
- $application->add(Server::get(Command\Db\Migrations\StatusCommand::class));
- $application->add(Server::get(Command\Db\Migrations\MigrateCommand::class));
- $application->add(Server::get(Command\Db\Migrations\GenerateCommand::class));
- $application->add(Server::get(Command\Db\Migrations\ExecuteCommand::class));
- }
- $application->add(Server::get(Command\Encryption\Disable::class));
- $application->add(Server::get(Command\Encryption\Enable::class));
- $application->add(Server::get(Command\Encryption\ListModules::class));
- $application->add(Server::get(Command\Encryption\SetDefaultModule::class));
- $application->add(Server::get(Command\Encryption\Status::class));
- $application->add(Server::get(Command\Encryption\EncryptAll::class));
- $application->add(Server::get(Command\Encryption\DecryptAll::class));
- $application->add(Server::get(Command\Log\Manage::class));
- $application->add(Server::get(Command\Log\File::class));
- $application->add(Server::get(Command\Encryption\ChangeKeyStorageRoot::class));
- $application->add(Server::get(Command\Encryption\ShowKeyStorageRoot::class));
- $application->add(Server::get(Command\Encryption\MigrateKeyStorage::class));
- $application->add(Server::get(Command\Maintenance\DataFingerprint::class));
- $application->add(Server::get(Command\Maintenance\Mimetype\UpdateDB::class));
- $application->add(Server::get(Command\Maintenance\Mimetype\UpdateJS::class));
- $application->add(Server::get(Command\Maintenance\Mode::class));
- $application->add(Server::get(Command\Maintenance\UpdateHtaccess::class));
- $application->add(Server::get(Command\Maintenance\UpdateTheme::class));
- $application->add(Server::get(Command\Upgrade::class));
- $application->add(Server::get(Command\Maintenance\Repair::class));
- $application->add(Server::get(Command\Maintenance\RepairShareOwnership::class));
- $application->add(Server::get(Command\Preview\Cleanup::class));
- $application->add(Server::get(Command\Preview\Generate::class));
- $application->add(Server::get(Command\Preview\Repair::class));
- $application->add(Server::get(Command\Preview\ResetRenderedTexts::class));
- $application->add(Server::get(Command\User\Add::class));
- $application->add(Server::get(Command\User\Delete::class));
- $application->add(Server::get(Command\User\Disable::class));
- $application->add(Server::get(Command\User\Enable::class));
- $application->add(Server::get(Command\User\LastSeen::class));
- $application->add(Server::get(Command\User\Report::class));
- $application->add(Server::get(Command\User\ResetPassword::class));
- $application->add(Server::get(Command\User\Setting::class));
- $application->add(Server::get(Command\User\ListCommand::class));
- $application->add(Server::get(Command\User\ClearGeneratedAvatarCacheCommand::class));
- $application->add(Server::get(Command\User\Info::class));
- $application->add(Server::get(Command\User\SyncAccountDataCommand::class));
- $application->add(Server::get(Command\User\AuthTokens\Add::class));
- $application->add(Server::get(Command\User\AuthTokens\ListCommand::class));
- $application->add(Server::get(Command\User\AuthTokens\Delete::class));
- $application->add(Server::get(Command\User\Keys\Verify::class));
- $application->add(Server::get(Command\User\Welcome::class));
- $application->add(Server::get(Command\Group\Add::class));
- $application->add(Server::get(Command\Group\Delete::class));
- $application->add(Server::get(Command\Group\ListCommand::class));
- $application->add(Server::get(Command\Group\AddUser::class));
- $application->add(Server::get(Command\Group\RemoveUser::class));
- $application->add(Server::get(Command\Group\Info::class));
- $application->add(Server::get(Command\SystemTag\ListCommand::class));
- $application->add(Server::get(Command\SystemTag\Delete::class));
- $application->add(Server::get(Command\SystemTag\Add::class));
- $application->add(Server::get(Command\SystemTag\Edit::class));
- $application->add(Server::get(Command\Security\ListCertificates::class));
- $application->add(Server::get(Command\Security\ExportCertificates::class));
- $application->add(Server::get(Command\Security\ImportCertificate::class));
- $application->add(Server::get(Command\Security\RemoveCertificate::class));
- $application->add(Server::get(Command\Security\BruteforceAttempts::class));
- $application->add(Server::get(Command\Security\BruteforceResetAttempts::class));
- $application->add(Server::get(Command\SetupChecks::class));
- $application->add(Server::get(Command\FilesMetadata\Get::class));
- $application->add(Server::get(Command\TaskProcessing\GetCommand::class));
- $application->add(Server::get(Command\TaskProcessing\ListCommand::class));
- $application->add(Server::get(Command\TaskProcessing\Statistics::class));
- $application->add(Server::get(Command\Memcache\RedisCommand::class));
- } else {
- $application->add(Server::get(Command\Maintenance\Install::class));
- }
|