2014-04-28 17:55:47 -04:00
|
|
|
<?php
|
2017-12-01 18:13:39 -05:00
|
|
|
/**
|
2021-03-29 02:40:20 -04:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 09:45:36 -05:00
|
|
|
*
|
|
|
|
* @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 <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-12-01 18:13:39 -05:00
|
|
|
*/
|
2018-12-23 15:32:23 -05:00
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
namespace Friendica\Database;
|
|
|
|
|
2018-07-19 22:15:21 -04:00
|
|
|
use Exception;
|
2018-10-21 01:58:10 -04:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2020-01-19 10:29:55 -05:00
|
|
|
use Friendica\DI;
|
2020-05-16 02:12:28 -04:00
|
|
|
use Friendica\Model\Item;
|
|
|
|
use Friendica\Model\User;
|
2018-07-21 08:25:11 -04:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2017-03-19 18:58:35 -04:00
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
/**
|
|
|
|
* This class contains functions that doesn't need to know if pdo, mysqli or whatever is used.
|
2017-04-22 17:36:01 -04:00
|
|
|
*/
|
2018-01-22 09:54:13 -05:00
|
|
|
class DBStructure
|
|
|
|
{
|
2018-10-14 07:19:37 -04:00
|
|
|
const UPDATE_NOT_CHECKED = 0; // Database check wasn't executed before
|
|
|
|
const UPDATE_SUCCESSFUL = 1; // Database check was successful
|
|
|
|
const UPDATE_FAILED = 2; // Database check failed
|
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
const RENAME_COLUMN = 0;
|
|
|
|
const RENAME_PRIMARY_KEY = 1;
|
|
|
|
|
2018-10-21 01:56:58 -04:00
|
|
|
/**
|
2018-11-25 01:07:31 -05:00
|
|
|
* Database structure definition loaded from config/dbstructure.config.php
|
2018-10-21 01:56:58 -04:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $definition = [];
|
|
|
|
|
2020-09-13 11:57:24 -04:00
|
|
|
/**
|
|
|
|
* Set a database version to trigger update functions
|
|
|
|
*
|
|
|
|
* @param string $version
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function setDatabaseVersion(string $version)
|
|
|
|
{
|
|
|
|
if (!is_numeric($version)) {
|
|
|
|
throw new \Asika\SimpleConsole\CommandArgsException('The version number must be numeric');
|
|
|
|
}
|
|
|
|
|
|
|
|
DI::config()->set('system', 'build', $version);
|
|
|
|
echo DI::l10n()->t('The database version had been set to %s.', $version);
|
|
|
|
}
|
|
|
|
|
2020-12-20 09:01:46 -05:00
|
|
|
/**
|
|
|
|
* Drop unused tables
|
|
|
|
*
|
|
|
|
* @param boolean $execute
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function dropTables(bool $execute)
|
|
|
|
{
|
2021-01-30 17:03:53 -05:00
|
|
|
$postupdate = DI::config()->get("system", "post_update_version", PostUpdate::VERSION);
|
|
|
|
if ($postupdate < PostUpdate::VERSION) {
|
|
|
|
echo DI::l10n()->t('The post update is at version %d, it has to be at %d to safely drop the tables.', $postupdate, PostUpdate::VERSION);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-03-24 15:47:55 -04:00
|
|
|
$old_tables = ['fserver', 'gcign', 'gcontact', 'gcontact-relation', 'gfollower' ,'glink', 'item-delivery-data',
|
2021-02-02 01:28:51 -05:00
|
|
|
'item-activity', 'item-content', 'item_id', 'participation', 'poll', 'poll_result', 'queue', 'retriever_rule',
|
2021-04-07 08:10:54 -04:00
|
|
|
'deliverq', 'dsprphotoq', 'ffinder', 'sign', 'spam', 'term', 'user-item', 'thread', 'item'];
|
2020-12-20 09:01:46 -05:00
|
|
|
|
|
|
|
$tables = DBA::selectToArray(['INFORMATION_SCHEMA' => 'TABLES'], ['TABLE_NAME'],
|
|
|
|
['TABLE_SCHEMA' => DBA::databaseName(), 'TABLE_TYPE' => 'BASE TABLE']);
|
|
|
|
|
|
|
|
if (empty($tables)) {
|
|
|
|
echo DI::l10n()->t('No unused tables found.');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$execute) {
|
|
|
|
echo DI::l10n()->t('These tables are not used for friendica and will be deleted when you execute "dbstructure drop -e":') . "\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($tables as $table) {
|
|
|
|
if (in_array($table['TABLE_NAME'], $old_tables)) {
|
|
|
|
if ($execute) {
|
|
|
|
$sql = 'DROP TABLE ' . DBA::quoteIdentifier($table['TABLE_NAME']) . ';';
|
|
|
|
echo $sql . "\n";
|
|
|
|
|
|
|
|
$result = DBA::e($sql);
|
|
|
|
if (!DBA::isResult($result)) {
|
|
|
|
self::printUpdateError($sql);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
echo $table['TABLE_NAME'] . "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-19 05:10:53 -05:00
|
|
|
/**
|
2020-04-01 14:11:06 -04:00
|
|
|
* Converts all tables from MyISAM/InnoDB Antelope to InnoDB Barracuda
|
2017-12-14 16:14:02 -05:00
|
|
|
*/
|
2018-12-23 15:32:23 -05:00
|
|
|
public static function convertToInnoDB()
|
|
|
|
{
|
2019-07-28 23:00:29 -04:00
|
|
|
$tables = DBA::selectToArray(
|
|
|
|
['information_schema' => 'tables'],
|
|
|
|
['table_name'],
|
|
|
|
['engine' => 'MyISAM', 'table_schema' => DBA::databaseName()]
|
|
|
|
);
|
2017-12-14 16:14:02 -05:00
|
|
|
|
2020-04-01 14:11:06 -04:00
|
|
|
$tables = array_merge($tables, DBA::selectToArray(
|
|
|
|
['information_schema' => 'tables'],
|
|
|
|
['table_name'],
|
|
|
|
['engine' => 'InnoDB', 'ROW_FORMAT' => ['COMPACT', 'REDUNDANT'], 'table_schema' => DBA::databaseName()]
|
|
|
|
));
|
|
|
|
|
2019-07-28 23:00:29 -04:00
|
|
|
if (!DBA::isResult($tables)) {
|
2020-04-01 14:11:06 -04:00
|
|
|
echo DI::l10n()->t('There are no tables on MyISAM or InnoDB with the Antelope file format.') . "\n";
|
2017-12-14 16:14:02 -05:00
|
|
|
return;
|
|
|
|
}
|
2017-04-22 17:36:01 -04:00
|
|
|
|
2019-07-28 23:00:29 -04:00
|
|
|
foreach ($tables AS $table) {
|
2020-04-01 14:11:06 -04:00
|
|
|
$sql = "ALTER TABLE " . DBA::quoteIdentifier($table['table_name']) . " ENGINE=InnoDB ROW_FORMAT=DYNAMIC;";
|
2018-12-23 15:32:23 -05:00
|
|
|
echo $sql . "\n";
|
2017-12-14 16:14:02 -05:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
$result = DBA::e($sql);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($result)) {
|
2017-12-14 16:14:02 -05:00
|
|
|
self::printUpdateError($sql);
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 17:36:01 -04:00
|
|
|
}
|
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Print out database error messages
|
2018-12-23 15:32:23 -05:00
|
|
|
*
|
|
|
|
* @param string $message Message to be added to the error message
|
|
|
|
*
|
|
|
|
* @return string Error message
|
|
|
|
*/
|
|
|
|
private static function printUpdateError($message)
|
|
|
|
{
|
2020-01-18 14:52:34 -05:00
|
|
|
echo DI::l10n()->t("\nError %d occurred during database update:\n%s\n",
|
2018-12-23 15:32:23 -05:00
|
|
|
DBA::errorNo(), DBA::errorMessage());
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
return DI::l10n()->t('Errors encountered performing database changes: ') . $message . EOL;
|
2018-12-23 15:32:23 -05:00
|
|
|
}
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2019-02-03 16:46:50 -05:00
|
|
|
public static function printStructure($basePath)
|
2018-12-23 15:32:23 -05:00
|
|
|
{
|
2019-02-03 16:46:50 -05:00
|
|
|
$database = self::definition($basePath, false);
|
2017-04-14 03:58:56 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
echo "-- ------------------------------------------\n";
|
|
|
|
echo "-- " . FRIENDICA_PLATFORM . " " . FRIENDICA_VERSION . " (" . FRIENDICA_CODENAME, ")\n";
|
|
|
|
echo "-- DB_UPDATE_VERSION " . DB_UPDATE_VERSION . "\n";
|
|
|
|
echo "-- ------------------------------------------\n\n\n";
|
|
|
|
foreach ($database AS $name => $structure) {
|
|
|
|
echo "--\n";
|
|
|
|
echo "-- TABLE $name\n";
|
|
|
|
echo "--\n";
|
|
|
|
self::createTable($name, $structure, true, false);
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
echo "\n";
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2020-04-23 02:19:44 -04:00
|
|
|
|
2020-04-24 04:48:34 -04:00
|
|
|
View::printStructure($basePath);
|
2018-12-23 15:32:23 -05:00
|
|
|
}
|
2017-04-14 03:58:56 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
/**
|
2020-04-25 14:36:58 -04:00
|
|
|
* Loads the database structure definition from the static/dbstructure.config.php file.
|
2018-12-23 15:32:23 -05:00
|
|
|
* On first pass, defines DB_UPDATE_VERSION constant.
|
|
|
|
*
|
2019-06-23 13:56:21 -04:00
|
|
|
* @see static/dbstructure.config.php
|
2018-12-23 15:32:23 -05:00
|
|
|
* @param boolean $with_addons_structure Whether to tack on addons additional tables
|
2019-02-03 16:46:50 -05:00
|
|
|
* @param string $basePath The base path of this application
|
2018-12-23 15:32:23 -05:00
|
|
|
* @return array
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2019-02-03 16:46:50 -05:00
|
|
|
public static function definition($basePath, $with_addons_structure = true)
|
2018-12-23 15:32:23 -05:00
|
|
|
{
|
|
|
|
if (!self::$definition) {
|
2017-04-14 03:58:56 -04:00
|
|
|
|
2019-06-23 13:56:21 -04:00
|
|
|
$filename = $basePath . '/static/dbstructure.config.php';
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
if (!is_readable($filename)) {
|
2019-06-23 13:56:21 -04:00
|
|
|
throw new Exception('Missing database structure config file static/dbstructure.config.php');
|
2018-12-23 15:32:23 -05:00
|
|
|
}
|
2016-10-01 23:29:30 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
$definition = require $filename;
|
2017-10-25 00:44:45 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
if (!$definition) {
|
2019-06-23 13:56:21 -04:00
|
|
|
throw new Exception('Corrupted database structure config file static/dbstructure.config.php');
|
2016-12-22 10:50:40 -05:00
|
|
|
}
|
2018-12-23 15:32:23 -05:00
|
|
|
|
|
|
|
self::$definition = $definition;
|
|
|
|
} else {
|
|
|
|
$definition = self::$definition;
|
2014-04-28 17:55:47 -04:00
|
|
|
}
|
2018-01-14 10:13:00 -05:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
if ($with_addons_structure) {
|
|
|
|
Hook::callAll('dbstructure_definition', $definition);
|
|
|
|
}
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
return $definition;
|
|
|
|
}
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2020-11-17 17:33:44 -05:00
|
|
|
/**
|
|
|
|
* Get field data for the given table
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param array $data data fields
|
|
|
|
* @return array fields for the given
|
|
|
|
*/
|
|
|
|
public static function getFieldsForTable(string $table, array $data = [])
|
|
|
|
{
|
|
|
|
$definition = DBStructure::definition('', false);
|
|
|
|
if (empty($definition[$table])) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$fieldnames = array_keys($definition[$table]['fields']);
|
|
|
|
|
|
|
|
$fields = [];
|
|
|
|
|
|
|
|
// Assign all field that are present in the table
|
|
|
|
foreach ($fieldnames as $field) {
|
|
|
|
if (isset($data[$field])) {
|
|
|
|
$fields[$field] = $data[$field];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
private static function createTable($name, $structure, $verbose, $action)
|
|
|
|
{
|
|
|
|
$r = true;
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
$engine = "";
|
|
|
|
$comment = "";
|
|
|
|
$sql_rows = [];
|
|
|
|
$primary_keys = [];
|
2020-05-10 10:55:03 -04:00
|
|
|
$foreign_keys = [];
|
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
foreach ($structure["fields"] AS $fieldname => $field) {
|
|
|
|
$sql_rows[] = "`" . DBA::escape($fieldname) . "` " . self::FieldCommand($field);
|
|
|
|
if (!empty($field['primary'])) {
|
|
|
|
$primary_keys[] = $fieldname;
|
2016-12-22 10:50:40 -05:00
|
|
|
}
|
2020-05-10 10:55:03 -04:00
|
|
|
if (!empty($field['foreign'])) {
|
|
|
|
$foreign_keys[$fieldname] = $field;
|
|
|
|
}
|
2014-04-28 17:55:47 -04:00
|
|
|
}
|
2018-12-23 15:32:23 -05:00
|
|
|
|
|
|
|
if (!empty($structure["indexes"])) {
|
|
|
|
foreach ($structure["indexes"] AS $indexname => $fieldnames) {
|
|
|
|
$sql_index = self::createIndex($indexname, $fieldnames, "");
|
|
|
|
if (!is_null($sql_index)) {
|
|
|
|
$sql_rows[] = $sql_index;
|
|
|
|
}
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2017-04-14 03:58:56 -04:00
|
|
|
}
|
|
|
|
|
2020-05-10 10:55:03 -04:00
|
|
|
foreach ($foreign_keys AS $fieldname => $parameters) {
|
|
|
|
$sql_rows[] = self::foreignCommand($name, $fieldname, $parameters);
|
|
|
|
}
|
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
if (isset($structure["engine"])) {
|
|
|
|
$engine = " ENGINE=" . $structure["engine"];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($structure["comment"])) {
|
|
|
|
$comment = " COMMENT='" . DBA::escape($structure["comment"]) . "'";
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql = implode(",\n\t", $sql_rows);
|
|
|
|
|
|
|
|
$sql = sprintf("CREATE TABLE IF NOT EXISTS `%s` (\n\t", DBA::escape($name)) . $sql .
|
|
|
|
"\n)" . $engine . " DEFAULT COLLATE utf8mb4_general_ci" . $comment;
|
|
|
|
if ($verbose) {
|
|
|
|
echo $sql . ";\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($action) {
|
|
|
|
$r = DBA::e($sql);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $r;
|
2014-04-28 17:55:47 -04:00
|
|
|
}
|
2017-04-16 09:21:49 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
private static function FieldCommand($parameters, $create = true)
|
|
|
|
{
|
|
|
|
$fieldstruct = $parameters["type"];
|
2017-12-14 17:22:44 -05:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
if (isset($parameters["Collation"])) {
|
|
|
|
$fieldstruct .= " COLLATE " . $parameters["Collation"];
|
|
|
|
}
|
2017-12-14 16:14:02 -05:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
if (isset($parameters["not null"])) {
|
|
|
|
$fieldstruct .= " NOT NULL";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($parameters["default"])) {
|
|
|
|
if (strpos(strtolower($parameters["type"]), "int") !== false) {
|
|
|
|
$fieldstruct .= " DEFAULT " . $parameters["default"];
|
|
|
|
} else {
|
|
|
|
$fieldstruct .= " DEFAULT '" . $parameters["default"] . "'";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isset($parameters["extra"])) {
|
|
|
|
$fieldstruct .= " " . $parameters["extra"];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($parameters["comment"])) {
|
|
|
|
$fieldstruct .= " COMMENT '" . DBA::escape($parameters["comment"]) . "'";
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2018-12-23 15:32:23 -05:00
|
|
|
|
|
|
|
/*if (($parameters["primary"] != "") && $create)
|
|
|
|
$fieldstruct .= " PRIMARY KEY";*/
|
|
|
|
|
|
|
|
return ($fieldstruct);
|
2016-12-22 10:50:40 -05:00
|
|
|
}
|
2016-10-02 09:52:52 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
private static function createIndex($indexname, $fieldnames, $method = "ADD")
|
|
|
|
{
|
|
|
|
$method = strtoupper(trim($method));
|
|
|
|
if ($method != "" && $method != "ADD") {
|
|
|
|
throw new Exception("Invalid parameter 'method' in self::createIndex(): '$method'");
|
|
|
|
}
|
|
|
|
|
2018-12-23 15:40:49 -05:00
|
|
|
if (in_array($fieldnames[0], ["UNIQUE", "FULLTEXT"])) {
|
|
|
|
$index_type = array_shift($fieldnames);
|
|
|
|
$method .= " " . $index_type;
|
2018-12-23 15:32:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$names = "";
|
|
|
|
foreach ($fieldnames AS $fieldname) {
|
|
|
|
if ($names != "") {
|
|
|
|
$names .= ",";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches)) {
|
|
|
|
$names .= "`" . DBA::escape($matches[1]) . "`(" . intval($matches[2]) . ")";
|
|
|
|
} else {
|
|
|
|
$names .= "`" . DBA::escape($fieldname) . "`";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($indexname == "PRIMARY") {
|
|
|
|
return sprintf("%s PRIMARY KEY(%s)", $method, $names);
|
|
|
|
}
|
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql = sprintf("%s INDEX `%s` (%s)", $method, DBA::escape($indexname), $names);
|
|
|
|
return ($sql);
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2021-01-30 08:31:59 -05:00
|
|
|
/**
|
|
|
|
* Perform a database structure dryrun (means: just simulating)
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public static function dryRun()
|
|
|
|
{
|
|
|
|
self::update(DI::app()->getBasePath(), true, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates DB structure and returns eventual errors messages
|
|
|
|
*
|
|
|
|
* @param bool $enable_maintenance_mode Set the maintenance mode
|
|
|
|
* @param bool $verbose Display the SQL commands
|
|
|
|
*
|
|
|
|
* @return string Empty string if the update is successful, error messages otherwise
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public static function performUpdate(bool $enable_maintenance_mode = true, bool $verbose = false)
|
|
|
|
{
|
|
|
|
if ($enable_maintenance_mode) {
|
|
|
|
DI::config()->set('system', 'maintenance', 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
$status = self::update(DI::app()->getBasePath(), $verbose, true);
|
|
|
|
|
|
|
|
if ($enable_maintenance_mode) {
|
|
|
|
DI::config()->set('system', 'maintenance', 0);
|
|
|
|
DI::config()->set('system', 'maintenance_reason', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates DB structure from the installation and returns eventual errors messages
|
|
|
|
*
|
|
|
|
* @param string $basePath The base path of this application
|
|
|
|
*
|
|
|
|
* @return string Empty string if the update is successful, error messages otherwise
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public static function install(string $basePath)
|
|
|
|
{
|
|
|
|
return self::update($basePath, false, true, true);
|
|
|
|
}
|
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
/**
|
|
|
|
* Updates DB structure and returns eventual errors messages
|
|
|
|
*
|
2019-02-03 16:46:50 -05:00
|
|
|
* @param string $basePath The base path of this application
|
|
|
|
* @param bool $verbose
|
|
|
|
* @param bool $action Whether to actually apply the update
|
|
|
|
* @param bool $install Is this the initial update during the installation?
|
|
|
|
* @param array $tables An array of the database tables
|
|
|
|
* @param array $definition An array of the definition tables
|
2018-01-04 19:42:48 -05:00
|
|
|
* @return string Empty string if the update is successful, error messages otherwise
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws Exception
|
2018-01-04 19:42:48 -05:00
|
|
|
*/
|
2021-01-30 08:31:59 -05:00
|
|
|
private static function update($basePath, $verbose, $action, $install = false, array $tables = null, array $definition = null)
|
2018-12-23 15:32:23 -05:00
|
|
|
{
|
2021-01-30 08:31:59 -05:00
|
|
|
$in_maintenance_mode = DI::config()->get('system', 'maintenance');
|
2021-01-30 02:50:20 -05:00
|
|
|
|
2021-01-30 08:31:59 -05:00
|
|
|
if ($action && !$install && self::isUpdating()) {
|
|
|
|
return DI::l10n()->t('Another database update is currently running.');
|
|
|
|
}
|
2020-05-16 04:15:51 -04:00
|
|
|
|
2021-01-30 08:31:59 -05:00
|
|
|
if ($in_maintenance_mode) {
|
2020-01-19 15:21:53 -05:00
|
|
|
DI::config()->set('system', 'maintenance_reason', DI::l10n()->t('%s: Database update', DateTimeFormat::utcNow() . ' ' . date('e')));
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2014-09-03 18:58:52 -04:00
|
|
|
|
2020-05-15 13:49:07 -04:00
|
|
|
// ensure that all initial values exist. This test has to be done prior and after the structure check.
|
|
|
|
// Prior is needed if the specific tables already exists - after is needed when they had been created.
|
|
|
|
self::checkInitialValues();
|
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
$errors = '';
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2020-11-18 04:14:12 -05:00
|
|
|
Logger::info('updating structure');
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
// Get the current structure
|
2018-01-15 08:05:12 -05:00
|
|
|
$database = [];
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
if (is_null($tables)) {
|
2020-05-10 10:55:03 -04:00
|
|
|
$tables = DBA::toArray(DBA::p("SHOW TABLES"));
|
2017-04-14 03:58:56 -04:00
|
|
|
}
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($tables)) {
|
2017-12-14 16:14:02 -05:00
|
|
|
foreach ($tables AS $table) {
|
|
|
|
$table = current($table);
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2020-11-18 04:14:12 -05:00
|
|
|
Logger::info('updating structure', ['table' => $table]);
|
2017-12-14 16:14:02 -05:00
|
|
|
$database[$table] = self::tableStructure($table);
|
2015-12-03 10:39:20 -05:00
|
|
|
}
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the definition
|
|
|
|
if (is_null($definition)) {
|
2019-02-03 16:46:50 -05:00
|
|
|
$definition = self::definition($basePath);
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements
|
2018-07-20 22:04:43 -04:00
|
|
|
if ((version_compare(DBA::serverInfo(), '5.7.4') >= 0) &&
|
|
|
|
!(strpos(DBA::serverInfo(), 'MariaDB') !== false)) {
|
2017-12-14 16:14:02 -05:00
|
|
|
$ignore = '';
|
2014-06-15 04:47:20 -04:00
|
|
|
} else {
|
2017-12-14 16:14:02 -05:00
|
|
|
$ignore = ' IGNORE';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compare it
|
|
|
|
foreach ($definition AS $name => $structure) {
|
2018-02-14 00:05:00 -05:00
|
|
|
$is_new_table = false;
|
2017-12-14 16:14:02 -05:00
|
|
|
$group_by = "";
|
|
|
|
$sql3 = "";
|
2018-02-14 00:05:00 -05:00
|
|
|
$is_unique = false;
|
|
|
|
$temp_name = $name;
|
2017-12-14 16:14:02 -05:00
|
|
|
if (!isset($database[$name])) {
|
2018-06-02 01:03:23 -04:00
|
|
|
$r = self::createTable($name, $structure, $verbose, $action);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 16:14:02 -05:00
|
|
|
$errors .= self::printUpdateError($name);
|
2017-01-15 18:30:43 -05:00
|
|
|
}
|
2018-02-14 00:05:00 -05:00
|
|
|
$is_new_table = true;
|
2017-12-14 16:14:02 -05:00
|
|
|
} else {
|
|
|
|
foreach ($structure["indexes"] AS $indexname => $fieldnames) {
|
|
|
|
if (isset($database[$name]["indexes"][$indexname])) {
|
2018-12-23 15:32:23 -05:00
|
|
|
$current_index_definition = implode(",", $database[$name]["indexes"][$indexname]);
|
2017-12-14 16:14:02 -05:00
|
|
|
} else {
|
|
|
|
$current_index_definition = "__NOT_SET__";
|
|
|
|
}
|
2018-12-23 15:32:23 -05:00
|
|
|
$new_index_definition = implode(",", $fieldnames);
|
2017-12-14 16:14:02 -05:00
|
|
|
if ($current_index_definition != $new_index_definition) {
|
|
|
|
if ($fieldnames[0] == "UNIQUE") {
|
|
|
|
$is_unique = true;
|
|
|
|
if ($ignore == "") {
|
2018-12-23 15:32:23 -05:00
|
|
|
$temp_name = "temp-" . $name;
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2017-01-29 12:31:20 -05:00
|
|
|
}
|
2017-01-15 18:30:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
/*
|
|
|
|
* Drop the index if it isn't present in the definition
|
|
|
|
* or the definition differ from current status
|
|
|
|
* and index name doesn't start with "local_"
|
|
|
|
*/
|
|
|
|
foreach ($database[$name]["indexes"] as $indexname => $fieldnames) {
|
2018-12-23 15:32:23 -05:00
|
|
|
$current_index_definition = implode(",", $fieldnames);
|
2017-12-14 16:14:02 -05:00
|
|
|
if (isset($structure["indexes"][$indexname])) {
|
2018-12-23 15:32:23 -05:00
|
|
|
$new_index_definition = implode(",", $structure["indexes"][$indexname]);
|
2016-12-22 10:50:40 -05:00
|
|
|
} else {
|
2017-12-14 16:14:02 -05:00
|
|
|
$new_index_definition = "__NOT_SET__";
|
2016-12-22 10:50:40 -05:00
|
|
|
}
|
2017-12-14 16:14:02 -05:00
|
|
|
if ($current_index_definition != $new_index_definition && substr($indexname, 0, 6) != 'local_') {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql2 = self::dropIndex($indexname);
|
2017-12-14 16:14:02 -05:00
|
|
|
if ($sql3 == "") {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
|
2017-12-14 16:14:02 -05:00
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 .= ", " . $sql2;
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2016-12-22 10:50:40 -05:00
|
|
|
}
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
|
|
|
// Compare the field structure field by field
|
|
|
|
foreach ($structure["fields"] AS $fieldname => $parameters) {
|
|
|
|
if (!isset($database[$name]["fields"][$fieldname])) {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql2 = self::addTableField($fieldname, $parameters);
|
2016-12-22 10:50:40 -05:00
|
|
|
if ($sql3 == "") {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
|
2016-12-22 10:50:40 -05:00
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 .= ", " . $sql2;
|
2016-12-22 10:50:40 -05:00
|
|
|
}
|
2017-12-14 16:14:02 -05:00
|
|
|
} else {
|
|
|
|
// Compare the field definition
|
|
|
|
$field_definition = $database[$name]["fields"][$fieldname];
|
|
|
|
|
|
|
|
// Remove the relation data that is used for the referential integrity
|
|
|
|
unset($parameters['relation']);
|
2020-05-10 10:55:03 -04:00
|
|
|
unset($parameters['foreign']);
|
2017-12-14 16:14:02 -05:00
|
|
|
|
|
|
|
// We change the collation after the indexes had been changed.
|
|
|
|
// This is done to avoid index length problems.
|
|
|
|
// So here we always ensure that there is no need to change it.
|
|
|
|
unset($parameters['Collation']);
|
|
|
|
unset($field_definition['Collation']);
|
|
|
|
|
2018-01-14 10:13:00 -05:00
|
|
|
// Only update the comment when it is defined
|
|
|
|
if (!isset($parameters['comment'])) {
|
|
|
|
$parameters['comment'] = "";
|
|
|
|
}
|
|
|
|
|
2018-07-20 21:59:17 -04:00
|
|
|
$current_field_definition = DBA::cleanQuery(implode(",", $field_definition));
|
|
|
|
$new_field_definition = DBA::cleanQuery(implode(",", $parameters));
|
2017-12-14 16:14:02 -05:00
|
|
|
if ($current_field_definition != $new_field_definition) {
|
|
|
|
$sql2 = self::modifyTableField($fieldname, $parameters);
|
|
|
|
if ($sql3 == "") {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
|
2017-12-14 16:14:02 -05:00
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 .= ", " . $sql2;
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
|
|
|
}
|
2014-06-03 18:44:58 -04:00
|
|
|
}
|
2014-04-28 17:55:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
/*
|
|
|
|
* Create the index if the index don't exists in database
|
|
|
|
* or the definition differ from the current status.
|
|
|
|
* Don't create keys if table is new
|
|
|
|
*/
|
|
|
|
if (!$is_new_table) {
|
|
|
|
foreach ($structure["indexes"] AS $indexname => $fieldnames) {
|
|
|
|
if (isset($database[$name]["indexes"][$indexname])) {
|
2018-12-23 15:32:23 -05:00
|
|
|
$current_index_definition = implode(",", $database[$name]["indexes"][$indexname]);
|
2017-12-14 16:14:02 -05:00
|
|
|
} else {
|
|
|
|
$current_index_definition = "__NOT_SET__";
|
|
|
|
}
|
2018-12-23 15:32:23 -05:00
|
|
|
$new_index_definition = implode(",", $fieldnames);
|
2017-12-14 16:14:02 -05:00
|
|
|
if ($current_index_definition != $new_index_definition) {
|
|
|
|
$sql2 = self::createIndex($indexname, $fieldnames);
|
2017-01-29 12:31:20 -05:00
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
// Fetch the "group by" fields for unique indexes
|
2018-12-23 15:40:49 -05:00
|
|
|
$group_by = self::groupBy($fieldnames);
|
2017-12-14 16:14:02 -05:00
|
|
|
if ($sql2 != "") {
|
|
|
|
if ($sql3 == "") {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
|
2017-12-14 16:14:02 -05:00
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 .= ", " . $sql2;
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
|
|
|
}
|
2017-01-29 12:31:20 -05:00
|
|
|
}
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
|
|
|
|
2020-05-10 10:55:03 -04:00
|
|
|
$existing_foreign_keys = $database[$name]['foreign_keys'];
|
|
|
|
|
|
|
|
// Foreign keys
|
|
|
|
// Compare the field structure field by field
|
|
|
|
foreach ($structure["fields"] AS $fieldname => $parameters) {
|
|
|
|
if (empty($parameters['foreign'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$constraint = self::getConstraintName($name, $fieldname, $parameters);
|
|
|
|
|
|
|
|
unset($existing_foreign_keys[$constraint]);
|
|
|
|
|
|
|
|
if (empty($database[$name]['foreign_keys'][$constraint])) {
|
|
|
|
$sql2 = self::addForeignKey($name, $fieldname, $parameters);
|
|
|
|
|
|
|
|
if ($sql3 == "") {
|
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
|
|
|
|
} else {
|
|
|
|
$sql3 .= ", " . $sql2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-16 16:57:04 -04:00
|
|
|
foreach ($existing_foreign_keys as $param) {
|
|
|
|
$sql2 = self::dropForeignKey($param['CONSTRAINT_NAME']);
|
2020-05-10 10:55:03 -04:00
|
|
|
|
|
|
|
if ($sql3 == "") {
|
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
|
|
|
|
} else {
|
|
|
|
$sql3 .= ", " . $sql2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-10 16:23:58 -04:00
|
|
|
if (isset($database[$name]["table_status"]["TABLE_COMMENT"])) {
|
2019-10-16 08:35:14 -04:00
|
|
|
$structurecomment = $structure["comment"] ?? '';
|
2020-05-10 16:23:58 -04:00
|
|
|
if ($database[$name]["table_status"]["TABLE_COMMENT"] != $structurecomment) {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql2 = "COMMENT = '" . DBA::escape($structurecomment) . "'";
|
2018-01-14 10:13:00 -05:00
|
|
|
|
|
|
|
if ($sql3 == "") {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
|
2018-01-14 10:13:00 -05:00
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 .= ", " . $sql2;
|
2018-01-14 10:13:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-10 16:23:58 -04:00
|
|
|
if (isset($database[$name]["table_status"]["ENGINE"]) && isset($structure['engine'])) {
|
|
|
|
if ($database[$name]["table_status"]["ENGINE"] != $structure['engine']) {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql2 = "ENGINE = '" . DBA::escape($structure['engine']) . "'";
|
2018-06-02 01:03:23 -04:00
|
|
|
|
|
|
|
if ($sql3 == "") {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
|
2018-06-02 01:03:23 -04:00
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 .= ", " . $sql2;
|
2018-06-02 01:03:23 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-10 16:23:58 -04:00
|
|
|
if (isset($database[$name]["table_status"]["TABLE_COLLATION"])) {
|
|
|
|
if ($database[$name]["table_status"]["TABLE_COLLATION"] != 'utf8mb4_general_ci') {
|
2017-12-14 16:14:02 -05:00
|
|
|
$sql2 = "DEFAULT COLLATE utf8mb4_general_ci";
|
|
|
|
|
2017-04-14 03:58:56 -04:00
|
|
|
if ($sql3 == "") {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
|
2017-04-14 03:58:56 -04:00
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 .= ", " . $sql2;
|
2017-04-14 03:58:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
if ($sql3 != "") {
|
|
|
|
$sql3 .= "; ";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now have a look at the field collations
|
|
|
|
// Compare the field structure field by field
|
|
|
|
foreach ($structure["fields"] AS $fieldname => $parameters) {
|
|
|
|
// Compare the field definition
|
2019-10-16 08:35:14 -04:00
|
|
|
$field_definition = ($database[$name]["fields"][$fieldname] ?? '') ?: ['Collation' => ''];
|
2017-04-14 03:58:56 -04:00
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
// Define the default collation if not given
|
2018-07-02 22:42:15 -04:00
|
|
|
if (!isset($parameters['Collation']) && !empty($field_definition['Collation'])) {
|
2017-12-14 16:14:02 -05:00
|
|
|
$parameters['Collation'] = 'utf8mb4_general_ci';
|
2017-04-14 03:58:56 -04:00
|
|
|
} else {
|
2017-12-14 16:14:02 -05:00
|
|
|
$parameters['Collation'] = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($field_definition['Collation'] != $parameters['Collation']) {
|
|
|
|
$sql2 = self::modifyTableField($fieldname, $parameters);
|
|
|
|
if (($sql3 == "") || (substr($sql3, -2, 2) == "; ")) {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 .= "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
|
2017-12-14 16:14:02 -05:00
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql3 .= ", " . $sql2;
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2015-12-08 04:35:08 -05:00
|
|
|
}
|
2014-06-15 04:47:20 -04:00
|
|
|
}
|
2014-06-03 18:44:58 -04:00
|
|
|
}
|
2017-04-20 01:24:08 -04:00
|
|
|
|
|
|
|
if ($sql3 != "") {
|
2017-12-14 16:14:02 -05:00
|
|
|
if (substr($sql3, -2, 2) != "; ") {
|
|
|
|
$sql3 .= ";";
|
2017-04-20 01:24:08 -04:00
|
|
|
}
|
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
$field_list = '';
|
|
|
|
if ($is_unique && $ignore == '') {
|
|
|
|
foreach ($database[$name]["fields"] AS $fieldname => $parameters) {
|
|
|
|
$field_list .= 'ANY_VALUE(`' . $fieldname . '`),';
|
2017-04-20 01:24:08 -04:00
|
|
|
}
|
2017-12-14 16:14:02 -05:00
|
|
|
$field_list = rtrim($field_list, ',');
|
2017-04-20 01:24:08 -04:00
|
|
|
}
|
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
if ($verbose) {
|
|
|
|
// Ensure index conversion to unique removes duplicates
|
|
|
|
if ($is_unique && ($temp_name != $name)) {
|
|
|
|
if ($ignore != "") {
|
|
|
|
echo "SET session old_alter_table=1;\n";
|
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
echo "DROP TABLE IF EXISTS `" . $temp_name . "`;\n";
|
|
|
|
echo "CREATE TABLE `" . $temp_name . "` LIKE `" . $name . "`;\n";
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2017-01-29 12:31:20 -05:00
|
|
|
}
|
2017-01-15 18:30:43 -05:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
echo $sql3 . "\n";
|
2014-06-03 18:44:58 -04:00
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
if ($is_unique && ($temp_name != $name)) {
|
|
|
|
if ($ignore != "") {
|
|
|
|
echo "SET session old_alter_table=0;\n";
|
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
echo "INSERT INTO `" . $temp_name . "` SELECT " . DBA::anyValueFallback($field_list) . " FROM `" . $name . "`" . $group_by . ";\n";
|
|
|
|
echo "DROP TABLE `" . $name . "`;\n";
|
|
|
|
echo "RENAME TABLE `" . $temp_name . "` TO `" . $name . "`;\n";
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2017-01-29 12:31:20 -05:00
|
|
|
}
|
2017-01-15 18:30:43 -05:00
|
|
|
}
|
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
if ($action) {
|
2021-01-30 08:31:59 -05:00
|
|
|
if ($in_maintenance_mode) {
|
2020-01-19 15:21:53 -05:00
|
|
|
DI::config()->set('system', 'maintenance_reason', DI::l10n()->t('%s: updating %s table.', DateTimeFormat::utcNow() . ' ' . date('e'), $name));
|
2018-03-17 05:04:38 -04:00
|
|
|
}
|
2017-10-21 10:29:55 -04:00
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
// Ensure index conversion to unique removes duplicates
|
|
|
|
if ($is_unique && ($temp_name != $name)) {
|
|
|
|
if ($ignore != "") {
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::e("SET session old_alter_table=1;");
|
2017-12-14 16:14:02 -05:00
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$r = DBA::e("DROP TABLE IF EXISTS `" . $temp_name . "`;");
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 16:14:02 -05:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
return $errors;
|
|
|
|
}
|
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
$r = DBA::e("CREATE TABLE `" . $temp_name . "` LIKE `" . $name . "`;");
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 16:14:02 -05:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
return $errors;
|
|
|
|
}
|
2017-01-29 12:31:20 -05:00
|
|
|
}
|
|
|
|
}
|
2017-01-15 18:30:43 -05:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
$r = DBA::e($sql3);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 16:14:02 -05:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
}
|
|
|
|
if ($is_unique && ($temp_name != $name)) {
|
|
|
|
if ($ignore != "") {
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::e("SET session old_alter_table=0;");
|
2017-12-14 16:14:02 -05:00
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$r = DBA::e("INSERT INTO `" . $temp_name . "` SELECT " . $field_list . " FROM `" . $name . "`" . $group_by . ";");
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 16:14:02 -05:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
return $errors;
|
|
|
|
}
|
2018-12-23 15:32:23 -05:00
|
|
|
$r = DBA::e("DROP TABLE `" . $name . "`;");
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 16:14:02 -05:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
return $errors;
|
|
|
|
}
|
2018-12-23 15:32:23 -05:00
|
|
|
$r = DBA::e("RENAME TABLE `" . $temp_name . "` TO `" . $name . "`;");
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 16:14:02 -05:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
return $errors;
|
|
|
|
}
|
2017-01-29 12:31:20 -05:00
|
|
|
}
|
|
|
|
}
|
2017-01-15 18:30:43 -05:00
|
|
|
}
|
2014-06-03 18:44:58 -04:00
|
|
|
}
|
|
|
|
}
|
2017-05-28 04:39:41 -04:00
|
|
|
|
2020-05-10 10:55:03 -04:00
|
|
|
View::create(false, $action);
|
2020-04-23 02:19:44 -04:00
|
|
|
|
2020-05-15 13:49:07 -04:00
|
|
|
self::checkInitialValues();
|
|
|
|
|
2018-03-17 05:04:38 -04:00
|
|
|
if ($action && !$install) {
|
|
|
|
if ($errors) {
|
2020-01-19 15:21:53 -05:00
|
|
|
DI::config()->set('system', 'dbupdate', self::UPDATE_FAILED);
|
2018-03-17 05:04:38 -04:00
|
|
|
} else {
|
2020-01-19 15:21:53 -05:00
|
|
|
DI::config()->set('system', 'dbupdate', self::UPDATE_SUCCESSFUL);
|
2018-03-17 05:04:38 -04:00
|
|
|
}
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
return $errors;
|
2017-04-14 07:26:47 -04:00
|
|
|
}
|
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
private static function tableStructure($table)
|
|
|
|
{
|
2020-05-10 16:23:58 -04:00
|
|
|
// This query doesn't seem to be executable as a prepared statement
|
2020-05-11 14:59:36 -04:00
|
|
|
$indexes = DBA::toArray(DBA::p("SHOW INDEX FROM " . DBA::quoteIdentifier($table)));
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2020-05-10 16:23:58 -04:00
|
|
|
$fields = DBA::selectToArray(['INFORMATION_SCHEMA' => 'COLUMNS'],
|
|
|
|
['COLUMN_NAME', 'COLUMN_TYPE', 'IS_NULLABLE', 'COLUMN_DEFAULT', 'EXTRA',
|
|
|
|
'COLUMN_KEY', 'COLLATION_NAME', 'COLUMN_COMMENT'],
|
|
|
|
["`TABLE_SCHEMA` = ? AND `TABLE_NAME` = ?",
|
|
|
|
DBA::databaseName(), $table]);
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2020-05-10 10:55:03 -04:00
|
|
|
$foreign_keys = DBA::selectToArray(['INFORMATION_SCHEMA' => 'KEY_COLUMN_USAGE'],
|
|
|
|
['COLUMN_NAME', 'CONSTRAINT_NAME', 'REFERENCED_TABLE_NAME', 'REFERENCED_COLUMN_NAME'],
|
|
|
|
["`TABLE_SCHEMA` = ? AND `TABLE_NAME` = ? AND `REFERENCED_TABLE_SCHEMA` IS NOT NULL",
|
|
|
|
DBA::databaseName(), $table]);
|
|
|
|
|
2020-05-10 16:23:58 -04:00
|
|
|
$table_status = DBA::selectFirst(['INFORMATION_SCHEMA' => 'TABLES'],
|
|
|
|
['ENGINE', 'TABLE_COLLATION', 'TABLE_COMMENT'],
|
|
|
|
["`TABLE_SCHEMA` = ? AND `TABLE_NAME` = ?",
|
|
|
|
DBA::databaseName(), $table]);
|
2018-01-14 10:13:00 -05:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
$fielddata = [];
|
|
|
|
$indexdata = [];
|
2020-05-10 10:55:03 -04:00
|
|
|
$foreigndata = [];
|
|
|
|
|
|
|
|
if (DBA::isResult($foreign_keys)) {
|
|
|
|
foreach ($foreign_keys as $foreign_key) {
|
2020-05-16 16:57:04 -04:00
|
|
|
$parameters = ['foreign' => [$foreign_key['REFERENCED_TABLE_NAME'] => $foreign_key['REFERENCED_COLUMN_NAME']]];
|
|
|
|
$constraint = self::getConstraintName($table, $foreign_key['COLUMN_NAME'], $parameters);
|
2020-05-10 10:55:03 -04:00
|
|
|
$foreigndata[$constraint] = $foreign_key;
|
|
|
|
}
|
|
|
|
}
|
2014-06-03 18:44:58 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
if (DBA::isResult($indexes)) {
|
|
|
|
foreach ($indexes AS $index) {
|
2018-12-23 15:40:49 -05:00
|
|
|
if ($index["Key_name"] != "PRIMARY" && $index["Non_unique"] == "0" && !isset($indexdata[$index["Key_name"]])) {
|
|
|
|
$indexdata[$index["Key_name"]] = ["UNIQUE"];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($index["Index_type"] == "FULLTEXT" && !isset($indexdata[$index["Key_name"]])) {
|
|
|
|
$indexdata[$index["Key_name"]] = ["FULLTEXT"];
|
2018-12-23 15:32:23 -05:00
|
|
|
}
|
2015-12-08 04:35:08 -05:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
$column = $index["Column_name"];
|
2015-03-25 04:47:59 -04:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
if ($index["Sub_part"] != "") {
|
|
|
|
$column .= "(" . $index["Sub_part"] . ")";
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2018-12-23 15:32:23 -05:00
|
|
|
|
|
|
|
$indexdata[$index["Key_name"]][] = $column;
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2015-03-25 04:47:59 -04:00
|
|
|
}
|
2020-05-10 16:23:58 -04:00
|
|
|
|
|
|
|
$fielddata = [];
|
|
|
|
if (DBA::isResult($fields)) {
|
|
|
|
foreach ($fields AS $field) {
|
2018-12-23 15:32:23 -05:00
|
|
|
$search = ['tinyint(1)', 'tinyint(3) unsigned', 'tinyint(4)', 'smallint(5) unsigned', 'smallint(6)', 'mediumint(8) unsigned', 'mediumint(9)', 'bigint(20)', 'int(10) unsigned', 'int(11)'];
|
|
|
|
$replace = ['boolean', 'tinyint unsigned', 'tinyint', 'smallint unsigned', 'smallint', 'mediumint unsigned', 'mediumint', 'bigint', 'int unsigned', 'int'];
|
2020-05-10 16:23:58 -04:00
|
|
|
$field['COLUMN_TYPE'] = str_replace($search, $replace, $field['COLUMN_TYPE']);
|
|
|
|
|
|
|
|
$fielddata[$field['COLUMN_NAME']]['type'] = $field['COLUMN_TYPE'];
|
2014-06-03 18:44:58 -04:00
|
|
|
|
2020-05-10 16:23:58 -04:00
|
|
|
if ($field['IS_NULLABLE'] == 'NO') {
|
2020-05-11 14:59:36 -04:00
|
|
|
$fielddata[$field['COLUMN_NAME']]['not null'] = true;
|
2018-12-23 15:32:23 -05:00
|
|
|
}
|
2018-06-02 01:03:23 -04:00
|
|
|
|
2020-05-16 10:23:17 -04:00
|
|
|
if (isset($field['COLUMN_DEFAULT']) && ($field['COLUMN_DEFAULT'] != 'NULL')) {
|
|
|
|
$fielddata[$field['COLUMN_NAME']]['default'] = trim($field['COLUMN_DEFAULT'], "'");
|
2018-12-23 15:32:23 -05:00
|
|
|
}
|
2018-06-02 01:03:23 -04:00
|
|
|
|
2020-05-10 16:23:58 -04:00
|
|
|
if (!empty($field['EXTRA'])) {
|
|
|
|
$fielddata[$field['COLUMN_NAME']]['extra'] = $field['EXTRA'];
|
2018-12-23 15:32:23 -05:00
|
|
|
}
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2020-05-10 16:23:58 -04:00
|
|
|
if ($field['COLUMN_KEY'] == 'PRI') {
|
2020-05-11 15:07:18 -04:00
|
|
|
$fielddata[$field['COLUMN_NAME']]['primary'] = true;
|
2018-12-23 15:32:23 -05:00
|
|
|
}
|
2020-05-10 16:23:58 -04:00
|
|
|
|
|
|
|
$fielddata[$field['COLUMN_NAME']]['Collation'] = $field['COLLATION_NAME'];
|
|
|
|
$fielddata[$field['COLUMN_NAME']]['comment'] = $field['COLUMN_COMMENT'];
|
2018-12-23 15:32:23 -05:00
|
|
|
}
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2014-04-28 17:55:47 -04:00
|
|
|
|
2020-05-10 10:55:03 -04:00
|
|
|
return ["fields" => $fielddata, "indexes" => $indexdata,
|
|
|
|
"foreign_keys" => $foreigndata, "table_status" => $table_status];
|
2015-12-08 04:35:08 -05:00
|
|
|
}
|
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
private static function dropIndex($indexname)
|
|
|
|
{
|
2018-07-21 09:10:13 -04:00
|
|
|
$sql = sprintf("DROP INDEX `%s`", DBA::escape($indexname));
|
2018-12-23 15:32:23 -05:00
|
|
|
return ($sql);
|
2016-10-01 23:29:30 -04:00
|
|
|
}
|
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
private static function addTableField($fieldname, $parameters)
|
|
|
|
{
|
|
|
|
$sql = sprintf("ADD `%s` %s", DBA::escape($fieldname), self::FieldCommand($parameters));
|
|
|
|
return ($sql);
|
|
|
|
}
|
2017-01-29 12:31:20 -05:00
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
private static function modifyTableField($fieldname, $parameters)
|
|
|
|
{
|
|
|
|
$sql = sprintf("MODIFY `%s` %s", DBA::escape($fieldname), self::FieldCommand($parameters, false));
|
|
|
|
return ($sql);
|
2017-01-29 12:31:20 -05:00
|
|
|
}
|
|
|
|
|
2020-05-10 10:55:03 -04:00
|
|
|
private static function getConstraintName(string $tablename, string $fieldname, array $parameters)
|
|
|
|
{
|
|
|
|
$foreign_table = array_keys($parameters['foreign'])[0];
|
|
|
|
$foreign_field = array_values($parameters['foreign'])[0];
|
|
|
|
|
|
|
|
return $tablename . "-" . $fieldname. "-" . $foreign_table. "-" . $foreign_field;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function foreignCommand(string $tablename, string $fieldname, array $parameters) {
|
|
|
|
$foreign_table = array_keys($parameters['foreign'])[0];
|
|
|
|
$foreign_field = array_values($parameters['foreign'])[0];
|
|
|
|
|
2020-05-16 16:57:04 -04:00
|
|
|
$sql = "FOREIGN KEY (`" . $fieldname . "`) REFERENCES `" . $foreign_table . "` (`" . $foreign_field . "`)";
|
2020-05-10 10:55:03 -04:00
|
|
|
|
|
|
|
if (!empty($parameters['foreign']['on update'])) {
|
|
|
|
$sql .= " ON UPDATE " . strtoupper($parameters['foreign']['on update']);
|
|
|
|
} else {
|
|
|
|
$sql .= " ON UPDATE RESTRICT";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($parameters['foreign']['on delete'])) {
|
|
|
|
$sql .= " ON DELETE " . strtoupper($parameters['foreign']['on delete']);
|
|
|
|
} else {
|
|
|
|
$sql .= " ON DELETE CASCADE";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function addForeignKey(string $tablename, string $fieldname, array $parameters)
|
|
|
|
{
|
|
|
|
return sprintf("ADD %s", self::foreignCommand($tablename, $fieldname, $parameters));
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function dropForeignKey(string $constraint)
|
|
|
|
{
|
|
|
|
return sprintf("DROP FOREIGN KEY `%s`", $constraint);
|
|
|
|
}
|
|
|
|
|
2018-12-23 15:40:49 -05:00
|
|
|
/**
|
|
|
|
* Constructs a GROUP BY clause from a UNIQUE index definition.
|
|
|
|
*
|
|
|
|
* @param array $fieldnames
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private static function groupBy(array $fieldnames)
|
2018-12-23 15:32:23 -05:00
|
|
|
{
|
2017-12-14 16:14:02 -05:00
|
|
|
if ($fieldnames[0] != "UNIQUE") {
|
|
|
|
return "";
|
|
|
|
}
|
2017-01-29 12:31:20 -05:00
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
array_shift($fieldnames);
|
2017-01-29 12:31:20 -05:00
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
$names = "";
|
|
|
|
foreach ($fieldnames AS $fieldname) {
|
|
|
|
if ($names != "") {
|
|
|
|
$names .= ",";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches)) {
|
2018-12-23 15:32:23 -05:00
|
|
|
$names .= "`" . DBA::escape($matches[1]) . "`";
|
2017-12-14 16:14:02 -05:00
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$names .= "`" . DBA::escape($fieldname) . "`";
|
2017-12-14 16:14:02 -05:00
|
|
|
}
|
2017-01-29 12:31:20 -05:00
|
|
|
}
|
|
|
|
|
2017-12-14 16:14:02 -05:00
|
|
|
$sql = sprintf(" GROUP BY %s", $names);
|
|
|
|
return $sql;
|
|
|
|
}
|
2014-04-29 07:19:44 -04:00
|
|
|
|
2018-07-21 08:43:43 -04:00
|
|
|
/**
|
2018-12-23 15:32:23 -05:00
|
|
|
* Renames columns or the primary key of a table
|
2018-07-21 08:43:43 -04:00
|
|
|
*
|
2018-12-23 15:32:23 -05:00
|
|
|
* @todo You cannot rename a primary key if "auto increment" is set
|
|
|
|
*
|
|
|
|
* @param string $table Table name
|
2019-10-16 08:58:09 -04:00
|
|
|
* @param array $columns Columns Syntax for Rename: [ $old1 => [ $new1, $type1 ], $old2 => [ $new2, $type2 ], ... ]
|
|
|
|
* Syntax for Primary Key: [ $col1, $col2, ...]
|
2018-12-23 15:32:23 -05:00
|
|
|
* @param int $type The type of renaming (Default is Column)
|
|
|
|
*
|
|
|
|
* @return boolean Was the renaming successful?
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws Exception
|
2018-07-21 08:43:43 -04:00
|
|
|
*/
|
2018-12-23 15:32:23 -05:00
|
|
|
public static function rename($table, $columns, $type = self::RENAME_COLUMN)
|
2018-07-21 08:43:43 -04:00
|
|
|
{
|
2018-12-23 15:32:23 -05:00
|
|
|
if (empty($table) || empty($columns)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_array($columns)) {
|
2018-07-21 08:43:43 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$table = DBA::escape($table);
|
|
|
|
|
2018-12-23 15:32:23 -05:00
|
|
|
$sql = "ALTER TABLE `" . $table . "`";
|
|
|
|
switch ($type) {
|
|
|
|
case self::RENAME_COLUMN:
|
|
|
|
if (!self::existsColumn($table, array_keys($columns))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$sql .= implode(',', array_map(
|
|
|
|
function ($to, $from) {
|
|
|
|
return " CHANGE `" . $from . "` `" . $to[0] . "` " . $to[1];
|
|
|
|
},
|
|
|
|
$columns,
|
|
|
|
array_keys($columns)
|
|
|
|
));
|
|
|
|
break;
|
|
|
|
case self::RENAME_PRIMARY_KEY:
|
|
|
|
if (!self::existsColumn($table, $columns)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$sql .= " DROP PRIMARY KEY, ADD PRIMARY KEY(`" . implode('`, `', $columns) . "`)";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql .= ";";
|
2018-07-21 08:43:43 -04:00
|
|
|
|
|
|
|
$stmt = DBA::p($sql);
|
|
|
|
|
|
|
|
if (is_bool($stmt)) {
|
|
|
|
$retval = $stmt;
|
|
|
|
} else {
|
2018-12-23 15:32:23 -05:00
|
|
|
$retval = true;
|
2018-07-21 08:43:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
DBA::close($stmt);
|
|
|
|
|
|
|
|
return $retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-12-23 15:32:23 -05:00
|
|
|
* Check if the columns of the table exists
|
2018-07-21 08:43:43 -04:00
|
|
|
*
|
|
|
|
* @param string $table Table name
|
|
|
|
* @param array $columns Columns to check ( Syntax: [ $col1, $col2, .. ] )
|
|
|
|
*
|
|
|
|
* @return boolean Does the table exist?
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws Exception
|
2018-07-21 08:43:43 -04:00
|
|
|
*/
|
2018-12-23 15:32:23 -05:00
|
|
|
public static function existsColumn($table, $columns = [])
|
|
|
|
{
|
2018-07-21 08:43:43 -04:00
|
|
|
if (empty($table)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_null($columns) || empty($columns)) {
|
|
|
|
return self::existsTable($table);
|
|
|
|
}
|
|
|
|
|
|
|
|
$table = DBA::escape($table);
|
|
|
|
|
|
|
|
foreach ($columns AS $column) {
|
|
|
|
$sql = "SHOW COLUMNS FROM `" . $table . "` LIKE '" . $column . "';";
|
|
|
|
|
|
|
|
$stmt = DBA::p($sql);
|
|
|
|
|
|
|
|
if (is_bool($stmt)) {
|
|
|
|
$retval = $stmt;
|
|
|
|
} else {
|
2018-07-20 22:05:12 -04:00
|
|
|
$retval = (DBA::numRows($stmt) > 0);
|
2018-07-21 08:43:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
DBA::close($stmt);
|
|
|
|
|
|
|
|
if (!$retval) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-05-16 02:12:28 -04:00
|
|
|
/**
|
|
|
|
* Check if a foreign key exists for the given table field
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param string $field
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public static function existsForeignKeyForField(string $table, string $field)
|
|
|
|
{
|
|
|
|
return DBA::exists(['INFORMATION_SCHEMA' => 'KEY_COLUMN_USAGE'],
|
|
|
|
["`TABLE_SCHEMA` = ? AND `TABLE_NAME` = ? AND `COLUMN_NAME` = ? AND `REFERENCED_TABLE_SCHEMA` IS NOT NULL",
|
|
|
|
DBA::databaseName(), $table, $field]);
|
|
|
|
}
|
2018-07-21 08:43:43 -04:00
|
|
|
/**
|
2018-12-23 15:32:23 -05:00
|
|
|
* Check if a table exists
|
2018-07-21 08:43:43 -04:00
|
|
|
*
|
2019-07-28 23:00:29 -04:00
|
|
|
* @param string|array $table Table name
|
2018-07-21 08:43:43 -04:00
|
|
|
*
|
2018-12-23 15:32:23 -05:00
|
|
|
* @return boolean Does the table exist?
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws Exception
|
2018-07-21 08:43:43 -04:00
|
|
|
*/
|
2018-12-23 15:32:23 -05:00
|
|
|
public static function existsTable($table)
|
|
|
|
{
|
|
|
|
if (empty($table)) {
|
2018-07-21 08:43:43 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-28 23:00:29 -04:00
|
|
|
if (is_array($table)) {
|
|
|
|
$condition = ['table_schema' => key($table), 'table_name' => current($table)];
|
2018-07-21 08:43:43 -04:00
|
|
|
} else {
|
2019-07-28 23:00:29 -04:00
|
|
|
$condition = ['table_schema' => DBA::databaseName(), 'table_name' => $table];
|
2018-07-21 08:43:43 -04:00
|
|
|
}
|
|
|
|
|
2019-07-28 23:00:29 -04:00
|
|
|
$result = DBA::exists(['information_schema' => 'tables'], $condition);
|
2018-07-21 08:43:43 -04:00
|
|
|
|
2019-07-28 23:00:29 -04:00
|
|
|
return $result;
|
2018-07-21 08:43:43 -04:00
|
|
|
}
|
2019-03-01 06:35:59 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the columns of a table
|
|
|
|
*
|
|
|
|
* @param string $table Table name
|
|
|
|
*
|
|
|
|
* @return array An array of the table columns
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public static function getColumns($table)
|
|
|
|
{
|
2019-03-01 11:15:34 -05:00
|
|
|
$stmtColumns = DBA::p("SHOW COLUMNS FROM `" . $table . "`");
|
|
|
|
return DBA::toArray($stmtColumns);
|
2019-03-01 06:35:59 -05:00
|
|
|
}
|
2020-05-15 13:49:07 -04:00
|
|
|
|
2020-05-15 14:08:06 -04:00
|
|
|
/**
|
|
|
|
* Check if initial database values do exist - or create them
|
|
|
|
*/
|
2020-11-23 13:58:18 -05:00
|
|
|
public static function checkInitialValues(bool $verbose = false)
|
2020-05-15 13:49:07 -04:00
|
|
|
{
|
2020-11-23 13:58:18 -05:00
|
|
|
if (self::existsTable('verb')) {
|
|
|
|
if (!DBA::exists('verb', ['id' => 1])) {
|
|
|
|
foreach (Item::ACTIVITIES as $index => $activity) {
|
|
|
|
DBA::insert('verb', ['id' => $index + 1, 'name' => $activity], Database::INSERT_IGNORE);
|
|
|
|
}
|
|
|
|
if ($verbose) {
|
|
|
|
echo "verb: activities added\n";
|
|
|
|
}
|
|
|
|
} elseif ($verbose) {
|
|
|
|
echo "verb: activities already added\n";
|
2020-05-19 01:51:58 -04:00
|
|
|
}
|
|
|
|
|
2020-11-23 13:58:18 -05:00
|
|
|
if (!DBA::exists('verb', ['id' => 0])) {
|
|
|
|
DBA::insert('verb', ['name' => '']);
|
|
|
|
$lastid = DBA::lastInsertId();
|
|
|
|
if ($lastid != 0) {
|
|
|
|
DBA::update('verb', ['id' => 0], ['id' => $lastid]);
|
|
|
|
if ($verbose) {
|
|
|
|
echo "Zero verb added\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} elseif ($verbose) {
|
|
|
|
echo "Zero verb already added\n";
|
2020-11-19 01:26:30 -05:00
|
|
|
}
|
2020-11-23 13:58:18 -05:00
|
|
|
} elseif ($verbose) {
|
|
|
|
echo "verb: Table not found\n";
|
2020-11-19 01:26:30 -05:00
|
|
|
}
|
|
|
|
|
2020-11-17 18:45:16 -05:00
|
|
|
if (self::existsTable('user') && !DBA::exists('user', ['uid' => 0])) {
|
2020-11-18 00:55:15 -05:00
|
|
|
$user = [
|
|
|
|
"verified" => true,
|
|
|
|
"page-flags" => User::PAGE_FLAGS_SOAPBOX,
|
|
|
|
"account-type" => User::ACCOUNT_TYPE_RELAY,
|
|
|
|
];
|
|
|
|
DBA::insert('user', $user);
|
2020-11-17 19:13:39 -05:00
|
|
|
$lastid = DBA::lastInsertId();
|
|
|
|
if ($lastid != 0) {
|
2020-11-18 00:55:15 -05:00
|
|
|
DBA::update('user', ['uid' => 0], ['uid' => $lastid]);
|
2020-11-23 13:58:18 -05:00
|
|
|
if ($verbose) {
|
|
|
|
echo "Zero user added\n";
|
|
|
|
}
|
2020-11-17 19:13:39 -05:00
|
|
|
}
|
2020-11-23 14:47:30 -05:00
|
|
|
} elseif (self::existsTable('user') && $verbose) {
|
2020-11-23 13:58:18 -05:00
|
|
|
echo "Zero user already added\n";
|
2020-11-23 14:47:30 -05:00
|
|
|
} elseif ($verbose) {
|
2020-11-23 13:58:18 -05:00
|
|
|
echo "user: Table not found\n";
|
2020-11-17 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (self::existsTable('contact') && !DBA::exists('contact', ['id' => 0])) {
|
|
|
|
DBA::insert('contact', ['nurl' => '']);
|
|
|
|
$lastid = DBA::lastInsertId();
|
|
|
|
if ($lastid != 0) {
|
|
|
|
DBA::update('contact', ['id' => 0], ['id' => $lastid]);
|
2020-11-23 13:58:18 -05:00
|
|
|
if ($verbose) {
|
|
|
|
echo "Zero contact added\n";
|
|
|
|
}
|
2020-11-17 19:13:39 -05:00
|
|
|
}
|
2020-11-23 14:47:30 -05:00
|
|
|
} elseif (self::existsTable('contact') && $verbose) {
|
2020-11-23 13:58:18 -05:00
|
|
|
echo "Zero contact already added\n";
|
2020-11-23 14:47:30 -05:00
|
|
|
} elseif ($verbose) {
|
2020-11-23 13:58:18 -05:00
|
|
|
echo "contact: Table not found\n";
|
2020-11-17 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2020-11-23 14:47:30 -05:00
|
|
|
if (self::existsTable('tag') && !DBA::exists('tag', ['id' => 0])) {
|
|
|
|
DBA::insert('tag', ['name' => '']);
|
|
|
|
$lastid = DBA::lastInsertId();
|
|
|
|
if ($lastid != 0) {
|
|
|
|
DBA::update('tag', ['id' => 0], ['id' => $lastid]);
|
|
|
|
if ($verbose) {
|
|
|
|
echo "Zero tag added\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} elseif (self::existsTable('tag') && $verbose) {
|
|
|
|
echo "Zero tag already added\n";
|
|
|
|
} elseif ($verbose) {
|
|
|
|
echo "tag: Table not found\n";
|
|
|
|
}
|
|
|
|
|
2020-05-16 02:12:28 -04:00
|
|
|
if (self::existsTable('permissionset')) {
|
|
|
|
if (!DBA::exists('permissionset', ['id' => 0])) {
|
|
|
|
DBA::insert('permissionset', ['allow_cid' => '', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '']);
|
|
|
|
$lastid = DBA::lastInsertId();
|
|
|
|
if ($lastid != 0) {
|
|
|
|
DBA::update('permissionset', ['id' => 0], ['id' => $lastid]);
|
2020-11-23 13:58:18 -05:00
|
|
|
if ($verbose) {
|
2020-11-23 14:47:30 -05:00
|
|
|
echo "Zero permissionset added\n";
|
2020-11-23 13:58:18 -05:00
|
|
|
}
|
2020-05-16 02:12:28 -04:00
|
|
|
}
|
2020-11-23 13:58:18 -05:00
|
|
|
} elseif ($verbose) {
|
|
|
|
echo "Zero permissionset already added\n";
|
2020-05-16 02:12:28 -04:00
|
|
|
}
|
2021-02-14 13:33:15 -05:00
|
|
|
if (self::existsTable('item') && !self::existsForeignKeyForField('item', 'psid')) {
|
2020-05-16 02:12:28 -04:00
|
|
|
$sets = DBA::p("SELECT `psid`, `item`.`uid`, `item`.`private` FROM `item`
|
|
|
|
LEFT JOIN `permissionset` ON `permissionset`.`id` = `item`.`psid`
|
|
|
|
WHERE `permissionset`.`id` IS NULL AND NOT `psid` IS NULL");
|
|
|
|
while ($set = DBA::fetch($sets)) {
|
|
|
|
if (($set['private'] == Item::PRIVATE) && ($set['uid'] != 0)) {
|
|
|
|
$owner = User::getOwnerDataById($set['uid']);
|
|
|
|
if ($owner) {
|
|
|
|
$permission = '<' . $owner['id'] . '>';
|
|
|
|
} else {
|
|
|
|
$permission = '<>';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$permission = '';
|
|
|
|
}
|
|
|
|
$fields = ['id' => $set['psid'], 'uid' => $set['uid'], 'allow_cid' => $permission,
|
|
|
|
'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => ''];
|
|
|
|
DBA::insert('permissionset', $fields);
|
|
|
|
}
|
|
|
|
DBA::close($sets);
|
2020-05-15 13:49:07 -04:00
|
|
|
}
|
2020-11-23 13:58:18 -05:00
|
|
|
} elseif ($verbose) {
|
|
|
|
echo "permissionset: Table not found\n";
|
2020-05-15 13:49:07 -04:00
|
|
|
}
|
|
|
|
|
2020-05-16 02:12:28 -04:00
|
|
|
if (!self::existsForeignKeyForField('tokens', 'client_id')) {
|
|
|
|
$tokens = DBA::p("SELECT `tokens`.`id` FROM `tokens`
|
|
|
|
LEFT JOIN `clients` ON `clients`.`client_id` = `tokens`.`client_id`
|
|
|
|
WHERE `clients`.`client_id` IS NULL");
|
|
|
|
while ($token = DBA::fetch($tokens)) {
|
2020-05-16 02:14:25 -04:00
|
|
|
DBA::delete('tokens', ['id' => $token['id']]);
|
2020-05-16 02:12:28 -04:00
|
|
|
}
|
|
|
|
DBA::close($tokens);
|
|
|
|
}
|
2020-05-15 13:49:07 -04:00
|
|
|
}
|
2020-05-16 04:15:51 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a database update is currently running
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
private static function isUpdating()
|
|
|
|
{
|
|
|
|
$isUpdate = false;
|
|
|
|
|
2020-05-16 05:01:54 -04:00
|
|
|
$processes = DBA::select(['information_schema' => 'processlist'], ['info'],
|
|
|
|
['db' => DBA::databaseName(), 'command' => ['Query', 'Execute']]);
|
|
|
|
|
2020-05-16 04:15:51 -04:00
|
|
|
while ($process = DBA::fetch($processes)) {
|
|
|
|
$parts = explode(' ', $process['info']);
|
2020-05-16 06:21:16 -04:00
|
|
|
if (in_array(strtolower(array_shift($parts)), ['alter', 'create', 'drop', 'rename'])) {
|
2020-05-16 04:15:51 -04:00
|
|
|
$isUpdate = true;
|
|
|
|
}
|
|
|
|
}
|
2020-05-16 05:01:54 -04:00
|
|
|
|
2020-05-16 04:15:51 -04:00
|
|
|
DBA::close($processes);
|
|
|
|
|
|
|
|
return $isUpdate;
|
|
|
|
}
|
2017-12-14 17:18:53 -05:00
|
|
|
}
|