3 * @copyright Copyright (C) 2010-2021, the Friendica project
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Console;
24 use Friendica\Core\Config\Cache;
25 use Friendica\Core\Update;
26 use Friendica\Database\Database;
27 use Friendica\Database\DBStructure;
31 * Performs database updates from the command line
33 class DatabaseStructure extends \Asika\SimpleConsole\Console
35 protected $helpOptions = ['h', 'help', '?'];
46 protected function getHelp()
49 console dbstructure - Performs database updates
51 bin/console dbstructure <command> [options]
54 drop Show tables that aren't in use by Friendica anymore and can be dropped
55 -e|--execute Execute the dropping
57 update Update database schema
58 -f|--force Force the update command (Even if the database structure matches)
59 -o|--override Override running or stalling updates
61 dryrun Show database update schema queries without running them
62 dumpsql Dump database schema
63 toinnodb Convert all tables from MyISAM or InnoDB in the Antelope file format to InnoDB in the Barracuda file format
64 initial Set needed initial values in the tables
65 version Set the database to a given number
68 -h|--help|-? Show help information
69 -v Show more debug information.
74 public function __construct(Database $dba, Cache $configCache, $argv = null)
76 parent::__construct($argv);
79 $this->configCache = $configCache;
82 protected function doExecute()
84 if ($this->getOption('v')) {
85 $this->out('Class: ' . __CLASS__);
86 $this->out('Arguments: ' . var_export($this->args, true));
87 $this->out('Options: ' . var_export($this->options, true));
90 if (count($this->args) == 0) {
91 $this->out($this->getHelp());
95 if ((count($this->args) > 1) && ($this->getArgument(0) != 'version')) {
96 throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
97 } elseif ((count($this->args) != 2) && ($this->getArgument(0) == 'version')) {
98 throw new \Asika\SimpleConsole\CommandArgsException('This command needs two arguments');
101 if (!$this->dba->isConnected()) {
102 throw new RuntimeException('Unable to connect to database');
105 $basePath = $this->configCache->get('system', 'basepath');
107 switch ($this->getArgument(0)) {
109 $output = DBStructure::dryRun();
112 $force = $this->getOption(['f', 'force'], false);
113 $override = $this->getOption(['o', 'override'], false);
114 $output = Update::run($basePath, $force, $override,true, false);
117 $execute = $this->getOption(['e', 'execute'], false);
119 DBStructure::dropTables($execute);
120 $output = ob_get_clean();
123 DBStructure::writeStructure();
125 DBStructure::printStructure($basePath);
126 $output = ob_get_clean();
130 DBStructure::convertToInnoDB();
131 $output = ob_get_clean();
135 DBStructure::setDatabaseVersion($this->getArgument(1));
136 $output = ob_get_clean();
140 DBStructure::checkInitialValues(true);
141 $output = ob_get_clean();
144 $output = 'Unknown command: ' . $this->getArgument(0);
147 $this->out(trim($output));