2018-03-24 14:39:13 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Core\Console;
|
|
|
|
|
|
|
|
use Friendica\Core;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-03-24 14:39:13 -04:00
|
|
|
use Friendica\Database\DBStructure;
|
2018-07-19 22:15:21 -04:00
|
|
|
use RuntimeException;
|
2018-03-24 14:39:13 -04:00
|
|
|
|
|
|
|
require_once 'boot.php';
|
|
|
|
require_once 'include/dba.php';
|
|
|
|
|
|
|
|
/**
|
2018-08-29 09:06:56 -04:00
|
|
|
* @brief Performs database updates from the command line
|
2018-03-24 14:39:13 -04:00
|
|
|
*
|
2018-09-15 19:28:38 -04:00
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-03-24 14:39:13 -04:00
|
|
|
*/
|
|
|
|
class DatabaseStructure extends \Asika\SimpleConsole\Console
|
|
|
|
{
|
|
|
|
protected $helpOptions = ['h', 'help', '?'];
|
|
|
|
|
|
|
|
protected function getHelp()
|
|
|
|
{
|
|
|
|
$help = <<<HELP
|
2018-08-29 09:06:56 -04:00
|
|
|
console dbstructure - Performs database updates
|
2018-03-24 14:39:13 -04:00
|
|
|
Usage
|
|
|
|
bin/console dbstructure <command> [-h|--help|-?] [-v]
|
|
|
|
|
|
|
|
Commands
|
|
|
|
dryrun Show database update schema queries without running them
|
|
|
|
update Update database schema
|
|
|
|
dumpsql Dump database schema
|
|
|
|
toinnodb Convert all tables from MyISAM to InnoDB
|
|
|
|
|
|
|
|
Options
|
|
|
|
-h|--help|-? Show help information
|
|
|
|
-v Show more debug information.
|
|
|
|
HELP;
|
|
|
|
return $help;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function doExecute()
|
|
|
|
{
|
2018-03-26 16:58:34 -04:00
|
|
|
$a = get_app();
|
|
|
|
|
2018-03-24 14:39:13 -04:00
|
|
|
if ($this->getOption('v')) {
|
|
|
|
$this->out('Class: ' . __CLASS__);
|
|
|
|
$this->out('Arguments: ' . var_export($this->args, true));
|
|
|
|
$this->out('Options: ' . var_export($this->options, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($this->args) == 0) {
|
|
|
|
$this->out($this->getHelp());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($this->args) > 1) {
|
|
|
|
throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
|
|
|
|
}
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
if (!DBA::connected()) {
|
2018-07-19 22:15:21 -04:00
|
|
|
throw new RuntimeException('Unable to connect to database');
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Core\Config::load();
|
|
|
|
|
|
|
|
switch ($this->getArgument(0)) {
|
|
|
|
case "dryrun":
|
|
|
|
$output = DBStructure::update(true, false);
|
|
|
|
break;
|
|
|
|
case "update":
|
|
|
|
$build = Core\Config::get('system', 'build');
|
|
|
|
if (empty($build)) {
|
|
|
|
Core\Config::set('system', 'build', DB_UPDATE_VERSION);
|
|
|
|
$build = DB_UPDATE_VERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
$stored = intval($build);
|
|
|
|
$current = intval(DB_UPDATE_VERSION);
|
|
|
|
|
2018-07-20 15:47:16 -04:00
|
|
|
// run the pre_update_nnnn functions in update.php
|
|
|
|
for ($x = $stored; $x < $current; $x ++) {
|
|
|
|
$r = run_update_function($x, 'pre_update');
|
|
|
|
if (!$r) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$output = DBStructure::update(true, true);
|
|
|
|
|
|
|
|
// run the update_nnnn functions in update.php
|
2018-03-24 14:39:13 -04:00
|
|
|
for ($x = $stored; $x < $current; $x ++) {
|
2018-07-20 15:47:16 -04:00
|
|
|
$r = run_update_function($x, 'update');
|
2018-03-24 14:39:13 -04:00
|
|
|
if (!$r) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Core\Config::set('system', 'build', DB_UPDATE_VERSION);
|
|
|
|
break;
|
|
|
|
case "dumpsql":
|
|
|
|
ob_start();
|
|
|
|
DBStructure::printStructure();
|
|
|
|
$output = ob_get_clean();
|
|
|
|
break;
|
|
|
|
case "toinnodb":
|
|
|
|
ob_start();
|
|
|
|
DBStructure::convertToInnoDB();
|
|
|
|
$output = ob_get_clean();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->out($output);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|