2014-04-28 23:55:47 +02:00
|
|
|
<?php
|
2017-12-02 00:13:39 +01:00
|
|
|
/**
|
2017-12-14 22:14:02 +01:00
|
|
|
* @file src/Database/DBStructure.php
|
2017-12-02 00:13:39 +01:00
|
|
|
*/
|
2017-12-14 22:14:02 +01:00
|
|
|
namespace Friendica\Database;
|
|
|
|
|
2018-07-20 04:15:21 +02:00
|
|
|
use Exception;
|
2018-10-21 07:56:58 +02:00
|
|
|
use Friendica\Core\Hook;
|
2017-04-30 06:01:26 +02:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 17:38:01 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-07-21 14:25:11 +02:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2017-03-19 23:58:35 +01:00
|
|
|
|
2018-01-22 15:54:13 +01:00
|
|
|
require_once 'boot.php';
|
2017-12-17 21:24:57 +01:00
|
|
|
require_once 'include/dba.php';
|
|
|
|
require_once 'include/enotify.php';
|
2018-01-22 15:54:13 +01:00
|
|
|
require_once 'include/text.php';
|
2014-09-07 17:28:38 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
/**
|
|
|
|
* @brief This class contain functions for the database management
|
|
|
|
*
|
|
|
|
* This class contains functions that doesn't need to know if pdo, mysqli or whatever is used.
|
2017-04-22 23:36:01 +02:00
|
|
|
*/
|
2018-01-22 15:54:13 +01:00
|
|
|
class DBStructure
|
|
|
|
{
|
2018-10-21 07:56:58 +02:00
|
|
|
/**
|
|
|
|
* Database structure definition loaded from config/dbstructure.php
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $definition = [];
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
/*
|
|
|
|
* Converts all tables from MyISAM to InnoDB
|
|
|
|
*/
|
|
|
|
public static function convertToInnoDB() {
|
|
|
|
$r = q("SELECT `TABLE_NAME` FROM `information_schema`.`tables` WHERE `engine` = 'MyISAM' AND `table_schema` = '%s'",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape(DBA::databaseName()));
|
2017-12-14 22:14:02 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2018-01-22 15:54:13 +01:00
|
|
|
echo L10n::t('There are no tables on MyISAM.')."\n";
|
2017-12-14 22:14:02 +01:00
|
|
|
return;
|
|
|
|
}
|
2017-04-22 23:36:01 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
foreach ($r AS $table) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$sql = sprintf("ALTER TABLE `%s` engine=InnoDB;", DBA::escape($table['TABLE_NAME']));
|
2017-12-14 22:14:02 +01:00
|
|
|
echo $sql."\n";
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$result = DBA::e($sql);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($result)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
self::printUpdateError($sql);
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 23:36:01 +02:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
/*
|
|
|
|
* send the email and do what is needed to do on update fails
|
|
|
|
*
|
|
|
|
* @param update_id (int) number of failed update
|
|
|
|
* @param error_message (str) error message
|
|
|
|
*/
|
|
|
|
public static function updateFail($update_id, $error_message) {
|
|
|
|
$a = get_app();
|
|
|
|
|
|
|
|
//send the administrators an e-mail
|
2018-07-21 15:10:13 +02:00
|
|
|
$admin_mail_list = "'".implode("','", array_map(['Friendica\Database\DBA', 'escape'], explode(",", str_replace(" ", "", Config::get('config', 'admin_email')))))."'";
|
2017-12-14 22:14:02 +01:00
|
|
|
$adminlist = q("SELECT uid, language, email FROM user WHERE email IN (%s)",
|
|
|
|
$admin_mail_list
|
|
|
|
);
|
|
|
|
|
|
|
|
// No valid result?
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($adminlist)) {
|
2018-07-22 20:07:44 +02:00
|
|
|
logger(sprintf('Cannot notify administrators about update_id=%d, error_message=%s', $update_id, $error_message), LOGGER_INFO);
|
2017-04-22 23:36:01 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
// Don't continue
|
|
|
|
return;
|
2017-04-22 23:36:01 +02:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
// every admin could had different language
|
|
|
|
foreach ($adminlist as $admin) {
|
|
|
|
$lang = (($admin['language'])?$admin['language']:'en');
|
2018-01-21 17:38:01 +01:00
|
|
|
L10n::pushLang($lang);
|
2017-12-14 22:14:02 +01:00
|
|
|
|
2018-01-22 15:54:13 +01:00
|
|
|
$preamble = deindent(L10n::t("
|
2017-12-14 22:14:02 +01:00
|
|
|
The friendica developers released update %s recently,
|
|
|
|
but when I tried to install it, something went terribly wrong.
|
|
|
|
This needs to be fixed soon and I can't do it alone. Please contact a
|
2018-10-20 15:02:35 +02:00
|
|
|
friendica developer if you can not help me on your own. My database might be invalid.",
|
|
|
|
$update_id));
|
|
|
|
$body = L10n::t("The error message is\n[pre]%s[/pre]", $error_message);
|
2017-12-14 22:14:02 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
notification([
|
2018-10-16 05:13:00 +02:00
|
|
|
'uid' => $admin['uid'],
|
|
|
|
'type' => SYSTEM_EMAIL,
|
2017-12-14 22:14:02 +01:00
|
|
|
'to_email' => $admin['email'],
|
|
|
|
'preamble' => $preamble,
|
2018-10-16 05:13:00 +02:00
|
|
|
'body' => $body,
|
2018-01-15 14:05:12 +01:00
|
|
|
'language' => $lang]
|
2017-12-14 22:14:02 +01:00
|
|
|
);
|
2018-10-20 15:02:10 +02:00
|
|
|
L10n::popLang();
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
2016-09-19 22:13:33 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
//try the logger
|
|
|
|
logger("CRITICAL: Database structure update failed: ".$error_message);
|
2014-09-07 14:23:03 +02:00
|
|
|
}
|
|
|
|
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
private static function tableStructure($table) {
|
|
|
|
$structures = q("DESCRIBE `%s`", $table);
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
$full_columns = q("SHOW FULL COLUMNS FROM `%s`", $table);
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
$indexes = q("SHOW INDEX FROM `%s`", $table);
|
2017-04-14 09:58:56 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
$table_status = q("SHOW TABLE STATUS WHERE `name` = '%s'", $table);
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($table_status)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$table_status = $table_status[0];
|
|
|
|
} else {
|
2018-01-15 14:05:12 +01:00
|
|
|
$table_status = [];
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
2017-04-14 09:58:56 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$fielddata = [];
|
|
|
|
$indexdata = [];
|
2017-04-14 09:58:56 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($indexes)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
foreach ($indexes AS $index) {
|
|
|
|
if ($index['Key_name'] != 'PRIMARY' && $index['Non_unique'] == '0' && !isset($indexdata[$index["Key_name"]])) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$indexdata[$index["Key_name"]] = ['UNIQUE'];
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
$column = $index["Column_name"];
|
2016-10-02 05:29:30 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if ($index["Sub_part"] != "") {
|
|
|
|
$column .= "(".$index["Sub_part"].")";
|
|
|
|
}
|
2017-10-25 06:44:45 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
$indexdata[$index["Key_name"]][] = $column;
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($structures)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
foreach ($structures AS $field) {
|
2018-01-14 16:13:00 +01:00
|
|
|
// Replace the default size values so that we don't have to define them
|
2018-02-20 08:40:21 +01: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'];
|
2018-01-14 16:13:00 +01:00
|
|
|
$field["Type"] = str_replace($search, $replace, $field["Type"]);
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
$fielddata[$field["Field"]]["type"] = $field["Type"];
|
|
|
|
if ($field["Null"] == "NO") {
|
|
|
|
$fielddata[$field["Field"]]["not null"] = true;
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if (isset($field["Default"])) {
|
|
|
|
$fielddata[$field["Field"]]["default"] = $field["Default"];
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if ($field["Extra"] != "") {
|
|
|
|
$fielddata[$field["Field"]]["extra"] = $field["Extra"];
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if ($field["Key"] == "PRI") {
|
|
|
|
$fielddata[$field["Field"]]["primary"] = true;
|
|
|
|
}
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($full_columns)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
foreach ($full_columns AS $column) {
|
|
|
|
$fielddata[$column["Field"]]["Collation"] = $column["Collation"];
|
2018-01-14 16:13:00 +01:00
|
|
|
$fielddata[$column["Field"]]["comment"] = $column["Comment"];
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
2017-04-14 09:58:56 +02:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
return ["fields" => $fielddata, "indexes" => $indexdata, "table_status" => $table_status];
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
2017-04-16 15:21:49 +02:00
|
|
|
|
2017-12-14 23:22:44 +01:00
|
|
|
public static function printStructure() {
|
|
|
|
$database = self::definition();
|
|
|
|
|
2017-12-14 22:14:02 +01: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";
|
2018-06-02 07:03:23 +02:00
|
|
|
self::createTable($name, $structure, true, false);
|
2017-12-14 22:14:02 +01:00
|
|
|
|
|
|
|
echo "\n";
|
|
|
|
}
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2016-10-02 15:52:52 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
/**
|
|
|
|
* @brief Print out database error messages
|
|
|
|
*
|
|
|
|
* @param string $message Message to be added to the error message
|
|
|
|
*
|
|
|
|
* @return string Error message
|
|
|
|
*/
|
|
|
|
private static function printUpdateError($message) {
|
2018-01-24 03:59:16 +01:00
|
|
|
echo L10n::t("\nError %d occurred during database update:\n%s\n",
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::errorNo(), DBA::errorMessage());
|
2017-12-14 22:14:02 +01:00
|
|
|
|
2018-01-22 15:54:13 +01:00
|
|
|
return L10n::t('Errors encountered performing database changes: ').$message.EOL;
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
/**
|
|
|
|
* Updates DB structure and returns eventual errors messages
|
|
|
|
*
|
|
|
|
* @param bool $verbose
|
|
|
|
* @param bool $action Whether to actually apply the update
|
2018-03-17 10:42:29 +01:00
|
|
|
* @param bool $install Is this the initial update during the installation?
|
2018-01-05 01:42:48 +01:00
|
|
|
* @param array $tables An array of the database tables
|
|
|
|
* @param array $definition An array of the definition tables
|
|
|
|
* @return string Empty string if the update is successful, error messages otherwise
|
|
|
|
*/
|
2018-03-17 10:04:38 +01:00
|
|
|
public static function update($verbose, $action, $install = false, array $tables = null, array $definition = null) {
|
|
|
|
if ($action && !$install) {
|
2017-12-14 22:14:02 +01:00
|
|
|
Config::set('system', 'maintenance', 1);
|
2018-07-21 14:25:11 +02:00
|
|
|
Config::set('system', 'maintenance_reason', L10n::t('%s: Database update', DateTimeFormat::utcNow().' '.date('e')));
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
2014-09-04 00:58:52 +02:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
$errors = '';
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
logger('updating structure', LOGGER_DEBUG);
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
// Get the current structure
|
2018-01-15 14:05:12 +01:00
|
|
|
$database = [];
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if (is_null($tables)) {
|
|
|
|
$tables = q("SHOW TABLES");
|
2017-04-14 09:58:56 +02:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($tables)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
foreach ($tables AS $table) {
|
|
|
|
$table = current($table);
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
logger(sprintf('updating structure for table %s ...', $table), LOGGER_DEBUG);
|
|
|
|
$database[$table] = self::tableStructure($table);
|
2015-12-03 16:39:20 +01:00
|
|
|
}
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the definition
|
|
|
|
if (is_null($definition)) {
|
|
|
|
$definition = self::definition();
|
|
|
|
}
|
|
|
|
|
|
|
|
// MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements
|
2018-07-21 04:04:43 +02:00
|
|
|
if ((version_compare(DBA::serverInfo(), '5.7.4') >= 0) &&
|
|
|
|
!(strpos(DBA::serverInfo(), 'MariaDB') !== false)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$ignore = '';
|
2014-06-15 10:47:20 +02:00
|
|
|
} else {
|
2017-12-14 22:14:02 +01:00
|
|
|
$ignore = ' IGNORE';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compare it
|
|
|
|
foreach ($definition AS $name => $structure) {
|
2018-02-14 06:05:00 +01:00
|
|
|
$is_new_table = false;
|
2017-12-14 22:14:02 +01:00
|
|
|
$group_by = "";
|
|
|
|
$sql3 = "";
|
2018-02-14 06:05:00 +01:00
|
|
|
$is_unique = false;
|
|
|
|
$temp_name = $name;
|
2017-12-14 22:14:02 +01:00
|
|
|
if (!isset($database[$name])) {
|
2018-06-02 07:03:23 +02:00
|
|
|
$r = self::createTable($name, $structure, $verbose, $action);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$errors .= self::printUpdateError($name);
|
2017-01-16 00:30:43 +01:00
|
|
|
}
|
2018-02-14 06:05:00 +01:00
|
|
|
$is_new_table = true;
|
2017-12-14 22:14:02 +01:00
|
|
|
} else {
|
|
|
|
foreach ($structure["indexes"] AS $indexname => $fieldnames) {
|
|
|
|
if (isset($database[$name]["indexes"][$indexname])) {
|
|
|
|
$current_index_definition = implode(",",$database[$name]["indexes"][$indexname]);
|
|
|
|
} else {
|
|
|
|
$current_index_definition = "__NOT_SET__";
|
|
|
|
}
|
|
|
|
$new_index_definition = implode(",",$fieldnames);
|
|
|
|
if ($current_index_definition != $new_index_definition) {
|
|
|
|
if ($fieldnames[0] == "UNIQUE") {
|
|
|
|
$is_unique = true;
|
|
|
|
if ($ignore == "") {
|
|
|
|
$temp_name = "temp-".$name;
|
|
|
|
}
|
2017-01-29 18:31:20 +01:00
|
|
|
}
|
2017-01-16 00:30:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01: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) {
|
|
|
|
$current_index_definition = implode(",",$fieldnames);
|
|
|
|
if (isset($structure["indexes"][$indexname])) {
|
|
|
|
$new_index_definition = implode(",",$structure["indexes"][$indexname]);
|
2016-12-22 16:50:40 +01:00
|
|
|
} else {
|
2017-12-14 22:14:02 +01:00
|
|
|
$new_index_definition = "__NOT_SET__";
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2017-12-14 22:14:02 +01:00
|
|
|
if ($current_index_definition != $new_index_definition && substr($indexname, 0, 6) != 'local_') {
|
|
|
|
$sql2=self::dropIndex($indexname);
|
|
|
|
if ($sql3 == "") {
|
|
|
|
$sql3 = "ALTER".$ignore." TABLE `".$temp_name."` ".$sql2;
|
|
|
|
} else {
|
|
|
|
$sql3 .= ", ".$sql2;
|
|
|
|
}
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
|
|
|
// Compare the field structure field by field
|
|
|
|
foreach ($structure["fields"] AS $fieldname => $parameters) {
|
|
|
|
if (!isset($database[$name]["fields"][$fieldname])) {
|
|
|
|
$sql2=self::addTableField($fieldname, $parameters);
|
2016-12-22 16:50:40 +01:00
|
|
|
if ($sql3 == "") {
|
2017-02-26 09:36:05 +01:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
2016-12-22 16:50:40 +01:00
|
|
|
} else {
|
2014-06-04 00:44:58 +02:00
|
|
|
$sql3 .= ", ".$sql2;
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2017-12-14 22:14:02 +01: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']);
|
|
|
|
|
|
|
|
// 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 16:13:00 +01:00
|
|
|
// Only update the comment when it is defined
|
|
|
|
if (!isset($parameters['comment'])) {
|
|
|
|
$parameters['comment'] = "";
|
|
|
|
}
|
|
|
|
|
2018-07-21 03:59:17 +02:00
|
|
|
$current_field_definition = DBA::cleanQuery(implode(",", $field_definition));
|
|
|
|
$new_field_definition = DBA::cleanQuery(implode(",", $parameters));
|
2017-12-14 22:14:02 +01:00
|
|
|
if ($current_field_definition != $new_field_definition) {
|
|
|
|
$sql2 = self::modifyTableField($fieldname, $parameters);
|
|
|
|
if ($sql3 == "") {
|
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
|
|
|
} else {
|
|
|
|
$sql3 .= ", ".$sql2;
|
|
|
|
}
|
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01: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])) {
|
|
|
|
$current_index_definition = implode(",",$database[$name]["indexes"][$indexname]);
|
|
|
|
} else {
|
|
|
|
$current_index_definition = "__NOT_SET__";
|
|
|
|
}
|
|
|
|
$new_index_definition = implode(",",$fieldnames);
|
|
|
|
if ($current_index_definition != $new_index_definition) {
|
|
|
|
$sql2 = self::createIndex($indexname, $fieldnames);
|
2017-01-29 18:31:20 +01:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
// Fetch the "group by" fields for unique indexes
|
|
|
|
if ($fieldnames[0] == "UNIQUE") {
|
|
|
|
$group_by = self::groupBy($indexname, $fieldnames);
|
|
|
|
}
|
|
|
|
if ($sql2 != "") {
|
|
|
|
if ($sql3 == "") {
|
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
|
|
|
} else {
|
|
|
|
$sql3 .= ", ".$sql2;
|
|
|
|
}
|
|
|
|
}
|
2017-01-29 18:31:20 +01:00
|
|
|
}
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
|
|
|
|
2018-01-14 16:13:00 +01:00
|
|
|
if (isset($database[$name]["table_status"]["Comment"])) {
|
|
|
|
if ($database[$name]["table_status"]["Comment"] != $structure['comment']) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$sql2 = "COMMENT = '".DBA::escape($structure['comment'])."'";
|
2018-01-14 16:13:00 +01:00
|
|
|
|
|
|
|
if ($sql3 == "") {
|
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
|
|
|
} else {
|
|
|
|
$sql3 .= ", ".$sql2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-02 07:03:23 +02:00
|
|
|
if (isset($database[$name]["table_status"]["Engine"]) && isset($structure['engine'])) {
|
|
|
|
if ($database[$name]["table_status"]["Engine"] != $structure['engine']) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$sql2 = "ENGINE = '".DBA::escape($structure['engine'])."'";
|
2018-06-02 07:03:23 +02:00
|
|
|
|
|
|
|
if ($sql3 == "") {
|
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
|
|
|
} else {
|
|
|
|
$sql3 .= ", ".$sql2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if (isset($database[$name]["table_status"]["Collation"])) {
|
|
|
|
if ($database[$name]["table_status"]["Collation"] != 'utf8mb4_general_ci') {
|
|
|
|
$sql2 = "DEFAULT COLLATE utf8mb4_general_ci";
|
|
|
|
|
2017-04-14 09:58:56 +02:00
|
|
|
if ($sql3 == "") {
|
2017-01-16 00:30:43 +01:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
2017-04-14 09:58:56 +02:00
|
|
|
} else {
|
2015-12-08 10:35:08 +01:00
|
|
|
$sql3 .= ", ".$sql2;
|
2017-04-14 09:58:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01: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
|
2018-07-10 14:27:56 +02:00
|
|
|
$field_definition = defaults($database[$name]["fields"], $fieldname, ['Collation' => '']);
|
2017-04-14 09:58:56 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
// Define the default collation if not given
|
2018-07-03 04:42:15 +02:00
|
|
|
if (!isset($parameters['Collation']) && !empty($field_definition['Collation'])) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$parameters['Collation'] = 'utf8mb4_general_ci';
|
2017-04-14 09:58:56 +02:00
|
|
|
} else {
|
2017-12-14 22:14:02 +01:00
|
|
|
$parameters['Collation'] = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($field_definition['Collation'] != $parameters['Collation']) {
|
|
|
|
$sql2 = self::modifyTableField($fieldname, $parameters);
|
|
|
|
if (($sql3 == "") || (substr($sql3, -2, 2) == "; ")) {
|
|
|
|
$sql3 .= "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
|
|
|
} else {
|
|
|
|
$sql3 .= ", ".$sql2;
|
|
|
|
}
|
2015-12-08 10:35:08 +01:00
|
|
|
}
|
2014-06-15 10:47:20 +02:00
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
}
|
2017-04-20 07:24:08 +02:00
|
|
|
|
|
|
|
if ($sql3 != "") {
|
2017-12-14 22:14:02 +01:00
|
|
|
if (substr($sql3, -2, 2) != "; ") {
|
|
|
|
$sql3 .= ";";
|
2017-04-20 07:24:08 +02:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
$field_list = '';
|
|
|
|
if ($is_unique && $ignore == '') {
|
|
|
|
foreach ($database[$name]["fields"] AS $fieldname => $parameters) {
|
|
|
|
$field_list .= 'ANY_VALUE(`' . $fieldname . '`),';
|
2017-04-20 07:24:08 +02:00
|
|
|
}
|
2017-12-14 22:14:02 +01:00
|
|
|
$field_list = rtrim($field_list, ',');
|
2017-04-20 07:24:08 +02:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01: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 {
|
|
|
|
echo "DROP TABLE IF EXISTS `".$temp_name."`;\n";
|
|
|
|
echo "CREATE TABLE `".$temp_name."` LIKE `".$name."`;\n";
|
|
|
|
}
|
2017-01-29 18:31:20 +01:00
|
|
|
}
|
2017-01-16 00:30:43 +01:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
echo $sql3."\n";
|
2014-06-04 00:44:58 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if ($is_unique && ($temp_name != $name)) {
|
|
|
|
if ($ignore != "") {
|
|
|
|
echo "SET session old_alter_table=0;\n";
|
|
|
|
} else {
|
2018-07-21 03:58:30 +02:00
|
|
|
echo "INSERT INTO `".$temp_name."` SELECT ".DBA::anyValueFallback($field_list)." FROM `".$name."`".$group_by.";\n";
|
2017-12-14 22:14:02 +01:00
|
|
|
echo "DROP TABLE `".$name."`;\n";
|
|
|
|
echo "RENAME TABLE `".$temp_name."` TO `".$name."`;\n";
|
|
|
|
}
|
2017-01-29 18:31:20 +01:00
|
|
|
}
|
2017-01-16 00:30:43 +01:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if ($action) {
|
2018-03-17 10:04:38 +01:00
|
|
|
if (!$install) {
|
2018-07-21 14:25:11 +02:00
|
|
|
Config::set('system', 'maintenance_reason', L10n::t('%s: updating %s table.', DateTimeFormat::utcNow().' '.date('e'), $name));
|
2018-03-17 10:04:38 +01:00
|
|
|
}
|
2017-10-21 16:29:55 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
// Ensure index conversion to unique removes duplicates
|
|
|
|
if ($is_unique && ($temp_name != $name)) {
|
|
|
|
if ($ignore != "") {
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::e("SET session old_alter_table=1;");
|
2017-12-14 22:14:02 +01:00
|
|
|
} else {
|
2018-07-20 14:19:26 +02:00
|
|
|
$r = DBA::e("DROP TABLE IF EXISTS `".$temp_name."`;");
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
return $errors;
|
|
|
|
}
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$r = DBA::e("CREATE TABLE `".$temp_name."` LIKE `".$name."`;");
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
return $errors;
|
|
|
|
}
|
2017-01-29 18:31:20 +01:00
|
|
|
}
|
|
|
|
}
|
2017-01-16 00:30:43 +01:00
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$r = DBA::e($sql3);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
}
|
|
|
|
if ($is_unique && ($temp_name != $name)) {
|
|
|
|
if ($ignore != "") {
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::e("SET session old_alter_table=0;");
|
2017-12-14 22:14:02 +01:00
|
|
|
} else {
|
2018-07-20 14:19:26 +02:00
|
|
|
$r = DBA::e("INSERT INTO `".$temp_name."` SELECT ".$field_list." FROM `".$name."`".$group_by.";");
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
return $errors;
|
|
|
|
}
|
2018-07-20 14:19:26 +02:00
|
|
|
$r = DBA::e("DROP TABLE `".$name."`;");
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
return $errors;
|
|
|
|
}
|
2018-07-20 14:19:26 +02:00
|
|
|
$r = DBA::e("RENAME TABLE `".$temp_name."` TO `".$name."`;");
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$errors .= self::printUpdateError($sql3);
|
|
|
|
return $errors;
|
|
|
|
}
|
2017-01-29 18:31:20 +01:00
|
|
|
}
|
|
|
|
}
|
2017-01-16 00:30:43 +01:00
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
}
|
|
|
|
}
|
2017-05-28 10:39:41 +02:00
|
|
|
|
2018-03-17 10:04:38 +01:00
|
|
|
if ($action && !$install) {
|
2017-12-14 22:14:02 +01:00
|
|
|
Config::set('system', 'maintenance', 0);
|
|
|
|
Config::set('system', 'maintenance_reason', '');
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2018-03-17 10:04:38 +01:00
|
|
|
if ($errors) {
|
|
|
|
Config::set('system', 'dbupdate', DB_UPDATE_FAILED);
|
|
|
|
} else {
|
|
|
|
Config::set('system', 'dbupdate', DB_UPDATE_SUCCESSFUL);
|
|
|
|
}
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
return $errors;
|
2017-04-14 13:26:47 +02:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
private static function FieldCommand($parameters, $create = true) {
|
|
|
|
$fieldstruct = $parameters["type"];
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2018-07-15 20:36:20 +02:00
|
|
|
if (isset($parameters["Collation"])) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$fieldstruct .= " COLLATE ".$parameters["Collation"];
|
2015-03-25 10:03:17 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2018-07-15 20:36:20 +02:00
|
|
|
if (isset($parameters["not null"])) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$fieldstruct .= " NOT NULL";
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2018-07-15 20:36:20 +02:00
|
|
|
if (isset($parameters["default"])) {
|
2017-12-14 22:14:02 +01:00
|
|
|
if (strpos(strtolower($parameters["type"]),"int")!==false) {
|
|
|
|
$fieldstruct .= " DEFAULT ".$parameters["default"];
|
|
|
|
} else {
|
|
|
|
$fieldstruct .= " DEFAULT '".$parameters["default"]."'";
|
|
|
|
}
|
|
|
|
}
|
2018-07-15 20:36:20 +02:00
|
|
|
if (isset($parameters["extra"])) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$fieldstruct .= " ".$parameters["extra"];
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2018-07-15 20:36:20 +02:00
|
|
|
if (isset($parameters["comment"])) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$fieldstruct .= " COMMENT '".DBA::escape($parameters["comment"])."'";
|
2018-01-14 16:13:00 +01:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
/*if (($parameters["primary"] != "") && $create)
|
|
|
|
$fieldstruct .= " PRIMARY KEY";*/
|
2014-06-04 00:44:58 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
return($fieldstruct);
|
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
|
2018-06-02 07:03:23 +02:00
|
|
|
private static function createTable($name, $structure, $verbose, $action) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$r = true;
|
2015-12-08 10:35:08 +01:00
|
|
|
|
2018-06-02 07:03:23 +02:00
|
|
|
$engine = "";
|
|
|
|
$comment = "";
|
2018-01-15 14:05:12 +01:00
|
|
|
$sql_rows = [];
|
|
|
|
$primary_keys = [];
|
2018-06-02 07:03:23 +02:00
|
|
|
foreach ($structure["fields"] AS $fieldname => $field) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$sql_rows[] = "`".DBA::escape($fieldname)."` ".self::FieldCommand($field);
|
2017-12-14 22:14:02 +01:00
|
|
|
if (x($field,'primary') && $field['primary']!='') {
|
|
|
|
$primary_keys[] = $fieldname;
|
|
|
|
}
|
2015-12-03 16:39:20 +01:00
|
|
|
}
|
2015-03-25 09:47:59 +01:00
|
|
|
|
2018-07-03 04:42:15 +02:00
|
|
|
if (!empty($structure["indexes"])) {
|
2018-06-02 07:03:23 +02:00
|
|
|
foreach ($structure["indexes"] AS $indexname => $fieldnames) {
|
2017-12-14 22:14:02 +01:00
|
|
|
$sql_index = self::createIndex($indexname, $fieldnames, "");
|
|
|
|
if (!is_null($sql_index)) {
|
|
|
|
$sql_rows[] = $sql_index;
|
|
|
|
}
|
|
|
|
}
|
2015-03-25 09:47:59 +01:00
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
|
2018-07-15 20:36:20 +02:00
|
|
|
if (isset($structure["engine"])) {
|
2018-06-02 07:03:23 +02:00
|
|
|
$engine = " ENGINE=" . $structure["engine"];
|
|
|
|
}
|
|
|
|
|
2018-07-15 20:36:20 +02:00
|
|
|
if (isset($structure["comment"])) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$comment = " COMMENT='" . DBA::escape($structure["comment"]) . "'";
|
2018-06-02 07:03:23 +02:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
$sql = implode(",\n\t", $sql_rows);
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2018-07-21 15:10:13 +02:00
|
|
|
$sql = sprintf("CREATE TABLE IF NOT EXISTS `%s` (\n\t", DBA::escape($name)).$sql.
|
2018-06-02 07:03:23 +02:00
|
|
|
"\n)" . $engine . " DEFAULT COLLATE utf8mb4_general_ci" . $comment;
|
2017-12-14 22:14:02 +01:00
|
|
|
if ($verbose) {
|
|
|
|
echo $sql.";\n";
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if ($action) {
|
2018-07-20 14:19:26 +02:00
|
|
|
$r = DBA::e($sql);
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
return $r;
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
private static function addTableField($fieldname, $parameters) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$sql = sprintf("ADD `%s` %s", DBA::escape($fieldname), self::FieldCommand($parameters));
|
2017-12-14 22:14:02 +01:00
|
|
|
return($sql);
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
private static function modifyTableField($fieldname, $parameters) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$sql = sprintf("MODIFY `%s` %s", DBA::escape($fieldname), self::FieldCommand($parameters, false));
|
2017-12-14 22:14:02 +01:00
|
|
|
return($sql);
|
2015-12-08 10:35:08 +01:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
private static function dropIndex($indexname) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$sql = sprintf("DROP INDEX `%s`", DBA::escape($indexname));
|
2017-12-14 22:14:02 +01:00
|
|
|
return($sql);
|
2016-10-02 05:29:30 +02:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
private static function createIndex($indexname, $fieldnames, $method = "ADD") {
|
|
|
|
$method = strtoupper(trim($method));
|
|
|
|
if ($method!="" && $method!="ADD") {
|
2018-07-20 04:15:21 +02:00
|
|
|
throw new Exception("Invalid parameter 'method' in self::createIndex(): '$method'");
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if ($fieldnames[0] == "UNIQUE") {
|
|
|
|
array_shift($fieldnames);
|
|
|
|
$method .= ' UNIQUE';
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
$names = "";
|
|
|
|
foreach ($fieldnames AS $fieldname) {
|
|
|
|
if ($names != "") {
|
|
|
|
$names .= ",";
|
|
|
|
}
|
2016-10-01 10:21:37 +02:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches)) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$names .= "`".DBA::escape($matches[1])."`(".intval($matches[2]).")";
|
2017-12-14 22:14:02 +01:00
|
|
|
} else {
|
2018-07-21 15:10:13 +02:00
|
|
|
$names .= "`".DBA::escape($fieldname)."`";
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
|
|
|
}
|
2015-03-25 09:47:59 +01:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
if ($indexname == "PRIMARY") {
|
|
|
|
return sprintf("%s PRIMARY KEY(%s)", $method, $names);
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-01-29 18:31:20 +01:00
|
|
|
|
2018-07-21 15:10:13 +02:00
|
|
|
$sql = sprintf("%s INDEX `%s` (%s)", $method, DBA::escape($indexname), $names);
|
2017-12-14 22:14:02 +01:00
|
|
|
return($sql);
|
2017-01-29 18:31:20 +01:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
private static function groupBy($indexname, $fieldnames) {
|
|
|
|
if ($fieldnames[0] != "UNIQUE") {
|
|
|
|
return "";
|
|
|
|
}
|
2017-01-29 18:31:20 +01:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
array_shift($fieldnames);
|
2017-01-29 18:31:20 +01:00
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
$names = "";
|
|
|
|
foreach ($fieldnames AS $fieldname) {
|
|
|
|
if ($names != "") {
|
|
|
|
$names .= ",";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches)) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$names .= "`".DBA::escape($matches[1])."`";
|
2017-12-14 22:14:02 +01:00
|
|
|
} else {
|
2018-07-21 15:10:13 +02:00
|
|
|
$names .= "`".DBA::escape($fieldname)."`";
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
2017-01-29 18:31:20 +01:00
|
|
|
}
|
|
|
|
|
2017-12-14 22:14:02 +01:00
|
|
|
$sql = sprintf(" GROUP BY %s", $names);
|
|
|
|
return $sql;
|
|
|
|
}
|
2014-04-29 13:19:44 +02:00
|
|
|
|
2018-07-21 14:43:43 +02:00
|
|
|
/**
|
|
|
|
* Check if a table exists
|
|
|
|
*
|
|
|
|
* @param string $table Table name
|
|
|
|
*
|
|
|
|
* @return boolean Does the table exist?
|
|
|
|
*/
|
|
|
|
public static function existsTable($table)
|
|
|
|
{
|
|
|
|
if (empty($table)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$table = DBA::escape($table);
|
|
|
|
|
|
|
|
$sql = "SHOW TABLES LIKE '" . $table . "';";
|
|
|
|
|
|
|
|
$stmt = DBA::p($sql);
|
|
|
|
|
|
|
|
if (is_bool($stmt)) {
|
|
|
|
$retval = $stmt;
|
|
|
|
} else {
|
2018-07-21 04:05:12 +02:00
|
|
|
$retval = (DBA::numRows($stmt) > 0);
|
2018-07-21 14:43:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DBA::close($stmt);
|
|
|
|
|
|
|
|
return $retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the columns of the table exists
|
|
|
|
*
|
|
|
|
* @param string $table Table name
|
|
|
|
* @param array $columns Columns to check ( Syntax: [ $col1, $col2, .. ] )
|
|
|
|
*
|
|
|
|
* @return boolean Does the table exist?
|
|
|
|
*/
|
|
|
|
public static function existsColumn($table, $columns = []) {
|
|
|
|
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-21 04:05:12 +02:00
|
|
|
$retval = (DBA::numRows($stmt) > 0);
|
2018-07-21 14:43:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DBA::close($stmt);
|
|
|
|
|
|
|
|
if (!$retval) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const RENAME_COLUMN = 0;
|
|
|
|
const RENAME_PRIMARY_KEY = 1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renames columns or the primary key of a table
|
|
|
|
* @todo You cannot rename a primary key if "auto increment" is set
|
|
|
|
*
|
|
|
|
* @param string $table Table name
|
|
|
|
* @param array $columns Columns Syntax for Rename: [ $old1 => [ $new1, $type1 ], $old2 => [ $new2, $type2 ], ... ] )
|
|
|
|
* Syntax for Primary Key: [ $col1, $col2, ...] )
|
|
|
|
* @param int $type The type of renaming (Default is Column)
|
|
|
|
*
|
|
|
|
* @return boolean Was the renaming successful?
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public static function rename($table, $columns, $type = self::RENAME_COLUMN) {
|
|
|
|
if (empty($table) || empty($columns)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_array($columns)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$table = DBA::escape($table);
|
|
|
|
|
|
|
|
$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 .= ";";
|
|
|
|
|
|
|
|
$stmt = DBA::p($sql);
|
|
|
|
|
|
|
|
if (is_bool($stmt)) {
|
|
|
|
$retval = $stmt;
|
|
|
|
} else {
|
|
|
|
$retval = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
DBA::close($stmt);
|
|
|
|
|
|
|
|
return $retval;
|
|
|
|
}
|
|
|
|
|
2018-08-04 13:24:04 +02:00
|
|
|
/**
|
2018-10-21 07:56:58 +02:00
|
|
|
* Loads the database structure definition from the config/dbstructure.php file.
|
2018-08-04 13:24:04 +02:00
|
|
|
*
|
2018-10-21 07:56:58 +02:00
|
|
|
* @see config/dbstructure.php
|
2018-08-04 13:24:04 +02:00
|
|
|
* @return array
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2018-10-21 07:56:58 +02:00
|
|
|
public static function definition()
|
|
|
|
{
|
|
|
|
if (!self::$definition) {
|
|
|
|
$a = \Friendica\BaseObject::getApp();
|
2018-08-04 13:24:04 +02:00
|
|
|
|
2018-10-21 07:56:58 +02:00
|
|
|
$filename = $a->getBasePath() . '/config/dbstructure.php';
|
2017-12-14 22:14:02 +01:00
|
|
|
|
2018-10-21 07:56:58 +02:00
|
|
|
if (!is_readable($filename)) {
|
|
|
|
throw new Exception('Missing database structure config file config/dbstructure.php');
|
|
|
|
}
|
2018-08-04 13:24:04 +02:00
|
|
|
|
2018-10-21 07:56:58 +02:00
|
|
|
$definition = require $filename;
|
2018-08-04 13:24:04 +02:00
|
|
|
|
2018-10-21 07:56:58 +02:00
|
|
|
if (!$definition) {
|
|
|
|
throw new Exception('Corrupted database structure config file config/dbstructure.php');
|
|
|
|
}
|
2018-08-04 13:24:04 +02:00
|
|
|
|
2018-10-21 07:56:58 +02:00
|
|
|
self::$definition = $definition;
|
|
|
|
} else {
|
|
|
|
$definition = self::$definition;
|
2018-08-04 13:24:04 +02:00
|
|
|
}
|
2017-12-14 22:14:02 +01:00
|
|
|
|
2018-10-21 07:56:58 +02:00
|
|
|
Hook::callAll('dbstructure_definition', $definition);
|
2018-04-12 05:28:05 +02:00
|
|
|
|
2018-10-21 07:56:58 +02:00
|
|
|
return $definition;
|
2017-12-14 22:14:02 +01:00
|
|
|
}
|
2017-12-14 23:18:53 +01:00
|
|
|
}
|