diff --git a/e107_admin/db.php b/e107_admin/db.php
index c2c72edd3a..4b904f52f1 100644
--- a/e107_admin/db.php
+++ b/e107_admin/db.php
@@ -468,7 +468,7 @@ private function multiSiteProcess()
if(vartrue($_POST['createdb']))
{
- if($sql->gen("CREATE DATABASE ".$database." CHARACTER SET `utf8`"))
+ if($sql->gen("CREATE DATABASE ".$database." CHARACTER SET `utf8mb4`"))
{
$mes->addSuccess(DBLAN_75);
@@ -533,7 +533,7 @@ private function multiSiteCreateTables($sql, $prefix)
preg_match_all("/create(.*?)(?:myisam|innodb);/si", $sql_data, $result );
- $sql->gen('SET NAMES `utf8`');
+ $sql->gen('SET NAMES `utf8mb4`');
foreach ($result[0] as $sql_table)
{
@@ -746,11 +746,11 @@ private function convertUTF8Form()
".$row['Name']." |
".$row['Engine']." |
".$row['Collation']." |
- ".(($row['Collation'] == 'utf8_general_ci') ? ADMIN_TRUE_ICON : ADMIN_FALSE_ICON)." |
+ ".(($row['Collation'] == 'utf8mb4_general_ci') ? ADMIN_TRUE_ICON : ADMIN_FALSE_ICON)." |
";
// print_a($row);
- if($row['Collation'] != 'utf8_general_ci')
+ if($row['Collation'] != 'utf8mb4_general_ci')
{
$invalidCollations = true;
}
@@ -819,12 +819,12 @@ private function perform_utf8_convert()
$queries = array();
- $queries[] = $this->getQueries("SELECT CONCAT('ALTER TABLE `', table_name, '` MODIFY ', column_name, ' ', REPLACE(column_type, 'char', 'binary'), ';') FROM information_schema.columns WHERE TABLE_SCHEMA = '".$dbtable."' AND TABLE_NAME LIKE '".$config['mySQLprefix']."%' AND COLLATION_NAME != 'utf8_general_ci' and data_type LIKE '%char%';");
- $queries[] = $this->getQueries("SELECT CONCAT('ALTER TABLE `', table_name, '` MODIFY ', column_name, ' ', REPLACE(column_type, 'text', 'blob'), ';') FROM information_schema.columns WHERE TABLE_SCHEMA = '".$dbtable."' AND TABLE_NAME LIKE '".$config['mySQLprefix']."%' AND COLLATION_NAME != 'utf8_general_ci' and data_type LIKE '%text%';");
+ $queries[] = $this->getQueries("SELECT CONCAT('ALTER TABLE `', table_name, '` MODIFY ', column_name, ' ', REPLACE(column_type, 'char', 'binary'), ';') FROM information_schema.columns WHERE TABLE_SCHEMA = '".$dbtable."' AND TABLE_NAME LIKE '".$config['mySQLprefix']."%' AND COLLATION_NAME != 'utf8mb4_general_ci' and data_type LIKE '%char%';");
+ $queries[] = $this->getQueries("SELECT CONCAT('ALTER TABLE `', table_name, '` MODIFY ', column_name, ' ', REPLACE(column_type, 'text', 'blob'), ';') FROM information_schema.columns WHERE TABLE_SCHEMA = '".$dbtable."' AND TABLE_NAME LIKE '".$config['mySQLprefix']."%' AND COLLATION_NAME != 'utf8mb4_general_ci' and data_type LIKE '%text%';");
$queries2 = array();
- $queries2[] = $this->getQueries("SELECT CONCAT('ALTER TABLE `', table_name, '` MODIFY ', column_name, ' ', column_type, ' CHARACTER SET utf8;') FROM information_schema.columns WHERE TABLE_SCHEMA ='".$dbtable."' AND TABLE_NAME LIKE '".$config['mySQLprefix']."%' AND COLLATION_NAME != 'utf8_general_ci' and data_type LIKE '%char%';");
- $queries2[] = $this->getQueries("SELECT CONCAT('ALTER TABLE `', table_name, '` MODIFY ', column_name, ' ', column_type, ' CHARACTER SET utf8;') FROM information_schema.columns WHERE TABLE_SCHEMA = '".$dbtable."' AND TABLE_NAME LIKE '".$config['mySQLprefix']."%' AND COLLATION_NAME != 'utf8_general_ci' and data_type LIKE '%text%';");
+ $queries2[] = $this->getQueries("SELECT CONCAT('ALTER TABLE `', table_name, '` MODIFY ', column_name, ' ', column_type, ' CHARACTER SET utf8mb4;') FROM information_schema.columns WHERE TABLE_SCHEMA ='".$dbtable."' AND TABLE_NAME LIKE '".$config['mySQLprefix']."%' AND COLLATION_NAME != 'utf8mb4_general_ci' and data_type LIKE '%char%';");
+ $queries2[] = $this->getQueries("SELECT CONCAT('ALTER TABLE `', table_name, '` MODIFY ', column_name, ' ', column_type, ' CHARACTER SET utf8mb4;') FROM information_schema.columns WHERE TABLE_SCHEMA = '".$dbtable."' AND TABLE_NAME LIKE '".$config['mySQLprefix']."%' AND COLLATION_NAME != 'utf8mb4_general_ci' and data_type LIKE '%text%';");
// $sql->gen("USE ".$dbtable);
@@ -858,7 +858,7 @@ private function perform_utf8_convert()
// Convert Table Fields to utf8
$sql2 = e107::getDb('sql2');
- $sql->gen('SHOW TABLE STATUS WHERE Collation != "utf8_general_ci" ');
+ $sql->gen('SHOW TABLE STATUS WHERE Collation != "utf8mb4_general_ci" ');
while ($row = $sql->fetch())
{
$table = $row['Name'];
@@ -869,7 +869,7 @@ private function perform_utf8_convert()
}
- $tab_query = "ALTER TABLE ".$table." DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; ";
+ $tab_query = "ALTER TABLE ".$table." DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; ";
//echo "TABQRT= ".$tab_query;
@@ -904,7 +904,7 @@ private function perform_utf8_convert()
//------------
- $lastQry = "ALTER DATABASE `".$dbtable."` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;";
+ $lastQry = "ALTER DATABASE `".$dbtable."` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;";
if(!$sql->db_Query($lastQry))
{
@@ -913,11 +913,10 @@ private function perform_utf8_convert()
elseif($ERROR != TRUE)
{
$message = DBLAN_93;
- //$message .= "
Please now add the following line to your e107_config.php file:
\$mySQLcharset = 'utf8';";
$mes->add($message, E_MESSAGE_SUCCESS);
$mes->addSuccess(DBLAN_94);
- $mes->addSuccess('$mySQLcharset = "utf8";');
+ $mes->addSuccess('$mySQLcharset = "utf8mb4";');
}
diff --git a/e107_core/sql/core_sql.php b/e107_core/sql/core_sql.php
index eb60437fbf..7c964f6a1f 100755
--- a/e107_core/sql/core_sql.php
+++ b/e107_core/sql/core_sql.php
@@ -1,14 +1,13 @@
[self::MOST_PREFERRED_STORAGE_ENGINE, "Aria", "Maria", "MyISAM"],
+ "Aria" => ["Aria", "Maria", "MyISAM"],
+ "InnoDB" => ["InnoDB", "XtraDB"],
+ "XtraDB" => ["XtraDB", "InnoDB"],
+ ];
var $fieldTypes = array('time','timestamp','datetime','year','tinyblob','blob',
'mediumblob','longblob','tinytext','mediumtext','longtext','text','date', 'json');
var $fieldTypeNum = array('bit','tinyint','smallint','mediumint','integer','int','bigint',
- 'real','double','float','decimal','numeric','varchar','char ','binary','varbinary','enum','set'); // space after 'char' required.
-
+ 'real','double','float','decimal','numeric','varchar','char','binary','varbinary','enum','set');
+
+ const STATUS_TABLE_OK = 0x0;
+ const STATUS_TABLE_MISSING = 0x1 << 1;
+ const STATUS_TABLE_MISMATCH_STORAGE_ENGINE = 0x1 << 2;
+ const STATUS_TABLE_MISMATCH_DEFAULT_CHARSET = 0x1 << 3;
+
var $modes = array(
'missing_table' => 'create',
'mismatch' => 'alter',
@@ -62,14 +80,20 @@ function __construct()
if(!deftrue('e_DEBUG') && $tmp = e107::getCache()->retrieve(self::cachetag, 15, true, true))
{
- $this->sqlFileTables = e107::unserialize($tmp);
-
+ $cacheData = e107::unserialize($tmp);
+ $this->sqlFileTables = isset($cacheData['sqlFileTables']) ? $cacheData['sqlFileTables'] : $this->load();
+ $this->availableStorageEngines = isset($cacheData['availableStorageEngines']) ?
+ $cacheData['availableStorageEngines'] : $this->getAvailableStorageEngines();
}
else
{
$this->sqlFileTables = $this->load();
- $data = e107::serialize($this->sqlFileTables,'json');
- e107::getCache()->set(self::cachetag,$data, true, true, true);
+ $this->availableStorageEngines = $this->getAvailableStorageEngines();
+ $cacheData = e107::serialize([
+ 'sqlFileTables' => $this->sqlFileTables,
+ 'availableStorageEngines' => $this->availableStorageEngines,
+ ], 'json');
+ e107::getCache()->set(self::cachetag, $cacheData, true, true, true);
}
@@ -133,7 +157,7 @@ private function diffStructurePermissive($expected, $actual)
$expected['default'] = isset($expected['default']) ? $expected['default'] : '';
$actual['default'] = isset($actual['default']) ? $actual['default'] : '';
- if($expected['type'] === 'JSON') // Fix for JSON alias MySQL 5.7+
+ if($expected['type'] === 'JSON' && $actual['type'] !== 'JSON') // Fix for JSON alias MySQL 5.7+
{
$expected['type'] = 'LONGTEXT';
}
@@ -209,7 +233,7 @@ function runComparison($fileArray)
}
}
- if($cnt = count($this->errors))
+ if($cnt = $this->errors())
{
$message = str_replace("[x]",$cnt,DBVLAN_26); // Found [x] issues.
$mes->add($message, E_MESSAGE_WARNING);
@@ -305,8 +329,6 @@ public function compare($selection,$language='')
foreach($this->sqlFileTables[$selection]['tables'] as $key=>$tbl)
{
- //$this->errors[$tbl]['_status'] = 'ok'; // default table status
-
$rawSqlData = $this->getSqlData($tbl,$language);
@@ -317,8 +339,9 @@ public function compare($selection,$language='')
- $this->errors[$tbl]['_status'] = 'missing_table';
- $this->results[$tbl]['_file'] = $selection;
+ $this->errors[$tbl]['_status'] = self::STATUS_TABLE_MISSING;
+ $this->errors[$tbl]['_file'] = $selection;
+ $this->results[$tbl] = [];
// echo "missing table: $tbl";
continue;
}
@@ -338,6 +361,13 @@ public function compare($selection,$language='')
$fileData['index'] = $this->getIndex($this->sqlFileTables[$selection]['data'][$key]);
$sqlData['index'] = $this->getIndex($sqlDataArr['data'][0]);
+ $maybeEngine = isset($sqlDataArr['engine'][0]) ? $sqlDataArr['engine'][0] : 'INTERNAL_ERROR:ENGINE';
+ $fileData['engine'] = $this->getIntendedStorageEngine($this->sqlFileTables[$selection]['engine'][$key]);
+ $sqlData['engine'] = $this->getCanonicalStorageEngine($maybeEngine);
+
+ $maybeCharset = isset($sqlDataArr['charset'][0]) ? $sqlDataArr['charset'][0] : 'INTERNAL_ERROR:CHARSET';
+ $fileData['charset'] = $this->getIntendedCharset($this->sqlFileTables[$selection]['charset'][$key]);
+ $sqlData['charset'] = $this->getCanonicalCharset($maybeCharset);
/*
$debugA = print_r($fileFieldData,TRUE); // Extracted Field Arrays
@@ -418,20 +448,22 @@ public function prepareResults($tbl, $selection, $sqlData, $fileData)
$results = 'indices';
}
+ if (!isset($this->errors[$tbl])) $this->errors[$tbl] = [];
+ if (!isset($this->errors[$tbl]['_status'])) $this->errors[$tbl]['_status'] = self::STATUS_TABLE_OK;
+ $this->errors[$tbl]['_file'] = $selection;
+
foreach($fileData[$type] as $key => $value)
{
$this->{$results}[$tbl][$key]['_status'] = 'ok';
if(!isset($sqlData[$type][$key]) || !is_array($sqlData[$type][$key]))
{
- $this->errors[$tbl]['_status'] = 'error'; // table status
$this->{$results}[$tbl][$key]['_status'] = "missing_$type"; // type status
$this->{$results}[$tbl][$key]['_valid'] = $value;
$this->{$results}[$tbl][$key]['_file'] = $selection;
}
elseif(count($diff = $this->diffStructurePermissive($value, $sqlData[$type][$key])))
{
- $this->errors[$tbl]['_status'] = "mismatch_$type";
$this->{$results}[$tbl][$key]['_status'] = 'mismatch';
$this->{$results}[$tbl][$key]['_diff'] = $diff;
$this->{$results}[$tbl][$key]['_valid'] = $value;
@@ -442,6 +474,19 @@ public function prepareResults($tbl, $selection, $sqlData, $fileData)
}
+ if ($fileData['engine'] != $sqlData['engine'])
+ {
+ $this->errors[$tbl]['_status'] |= self::STATUS_TABLE_MISMATCH_STORAGE_ENGINE;
+ $this->errors[$tbl]['_valid_' . self::STATUS_TABLE_MISMATCH_STORAGE_ENGINE] = $fileData['engine'];
+ $this->errors[$tbl]['_invalid_' . self::STATUS_TABLE_MISMATCH_STORAGE_ENGINE] = $sqlData['engine'];
+ }
+ if ($fileData['charset'] != $sqlData['charset'])
+ {
+ $this->errors[$tbl]['_status'] |= self::STATUS_TABLE_MISMATCH_DEFAULT_CHARSET;
+ $this->errors[$tbl]['_valid_' . self::STATUS_TABLE_MISMATCH_DEFAULT_CHARSET] = $fileData['charset'];
+ $this->errors[$tbl]['_invalid_' . self::STATUS_TABLE_MISMATCH_DEFAULT_CHARSET] = $sqlData['charset'];
+ }
+
}
return null;
@@ -461,23 +506,28 @@ function compileResults()
foreach($this->results as $tabs => $field)
{
$file = varset($this->results[$tabs]['_file']);
- $errorStatus = !empty($this->errors[$tabs]['_status']) ? $this->errors[$tabs]['_status'] : null;
+ $errorStatus = is_int($this->errors[$tabs]['_status']) ?
+ $this->errors[$tabs]['_status'] : self::STATUS_TABLE_OK;
- if($errorStatus === 'missing_table') // Missing Table
+ if($errorStatus & self::STATUS_TABLE_MISSING) // Missing Table
{
$this->fixList[$file][$tabs]['all'][] = 'create';
- }
- elseif($this->errors[$tabs] != 'ok') // All Other Issues..
+ }
+ elseif (
+ $errorStatus & self::STATUS_TABLE_MISMATCH_STORAGE_ENGINE ||
+ $errorStatus & self::STATUS_TABLE_MISMATCH_DEFAULT_CHARSET
+ )
{
- foreach($field as $k=>$f)
+ $this->fixList[$file][$tabs]['all'][] = 'convert';
+ }
+ foreach($field as $k=>$f)
+ {
+ if($f['_status']=='ok') continue;
+ $status = $f['_status'];
+ if(!empty($this->modes[$status]))
{
- if($f['_status']=='ok') continue;
- $status = $f['_status'];
- if(!empty($this->modes[$status]))
- {
- $this->fixList[$f['_file']][$tabs][$k][] = $this->modes[$status];
- }
- }
+ $this->fixList[$f['_file']][$tabs][$k][] = $this->modes[$status];
+ }
}
}
@@ -505,7 +555,33 @@ function compileResults()
*/
public function errors()
{
- return count($this->errors);
+ $badTableCount = 0;
+ foreach ($this->errors as $tableName => $tableMetadata)
+ {
+ if (!empty($tableMetadata['_status']))
+ {
+ $badTableCount++;
+ continue;
+ }
+ foreach ($this->results[$tableName] as $fieldMetadata)
+ {
+ if (isset($fieldMetadata['_status']) && $fieldMetadata['_status'] != 'ok')
+ {
+ $badTableCount++;
+ continue 2;
+ }
+ }
+ foreach ($this->indices[$tableName] as $indexMetadata)
+ {
+ if (isset($indexMetadata['_status']) && $indexMetadata['_status'] != 'ok')
+ {
+ $badTableCount++;
+ continue 2;
+ }
+ }
+ }
+
+ return $badTableCount;
}
@@ -541,40 +617,60 @@ function renderResults($fileArray=array())
";
-
+
$info = array(
- 'missing_table' => DBVLAN_13,
- 'mismatch' => DBVLAN_8,
- 'missing_field' => DBVLAN_11,
- 'ok' => ADMIN_TRUE_ICON,
- 'missing_index' => DBVLAN_25,
+ self::STATUS_TABLE_MISSING => DBVLAN_13,
+ self::STATUS_TABLE_MISMATCH_STORAGE_ENGINE => DBVLAN_17,
+ self::STATUS_TABLE_MISMATCH_DEFAULT_CHARSET => DBVLAN_18,
+ 'mismatch' => DBVLAN_8,
+ 'missing_field' => DBVLAN_11,
+ 'ok' => ADMIN_TRUE_ICON,
+ 'missing_index' => DBVLAN_25,
);
foreach($this->results as $tabs => $field)
{
-
- if($this->errors[$tabs]['_status'] === 'missing_table') // Missing Table
+ $tableStatus = $this->errors[$tabs]['_status'];
+ if($tableStatus != self::STATUS_TABLE_OK) // Missing Table
{
+ $errors = [];
+ $parser = e107::getParser();
+ foreach ([
+ self::STATUS_TABLE_MISSING,
+ self::STATUS_TABLE_MISMATCH_STORAGE_ENGINE,
+ self::STATUS_TABLE_MISMATCH_DEFAULT_CHARSET
+ ] as $statusFlag)
+ {
+ if ($tableStatus & $statusFlag)
+ $errors[] = $parser->lanVars(
+ $info[$statusFlag],
+ [
+ 'x' => $this->errors[$tabs]['_valid_' . $statusFlag],
+ 'y' => $this->errors[$tabs]['_invalid_' . $statusFlag],
+ ]
+ );
+ }
+
+ $fixMode = $tableStatus & self::STATUS_TABLE_MISSING ? 'create' : 'convert';
+
$text .= "
".$this->renderTableName($tabs)." |
- |
- ".$info[$this->errors[$tabs]['_status']]." |
- |
- ".$this->fixForm($this->results[$tabs]['_file'],$tabs, 'all', '', 'create') . " |
+ ".DBVLAN_28." |
+ ".DBVLAN_27." |
+ ".implode(" ", $errors)." |
+ ".$this->fixForm($this->errors[$tabs]['_file'],$tabs, 'all', '', $fixMode) . " |
";
- }
- elseif($this->errors[$tabs] != 'ok') // All Other Issues..
+ }
+ foreach($field as $k=>$f)
{
- foreach($field as $k=>$f)
- {
- if($f['_status']=='ok') continue;
-
- $fstat = $info[$f['_status']];
-
- $text .= "
+ if($f['_status']=='ok') continue;
+
+ $fstat = $info[$f['_status']];
+
+ $text .= "
".$this->renderTableName($tabs)." |
".$k." |
@@ -582,10 +678,8 @@ function renderResults($fileArray=array())
".$this->renderNotes($f)." |
".$this->fixForm($f['_file'],$tabs, $k, $f['_valid'], $this->modes[$f['_status']]) . " |
- ";
- }
+ ";
}
-
}
@@ -768,9 +862,17 @@ function getId($tabl,$cur)
* @param string $field eg. submitnews_id
* @param string $sqlFileData (after CREATE) eg. dblog_id int(10) unsigned NOT NULL auto_increment, ..... KEY....
* @param string $engine MyISAM|InnoDB
+ * @param string $charset MySQL/MariaDB text character set
* @return string SQL query
*/
- function getFixQuery($mode, $table, $field, $sqlFileData, $engine = 'MyISAM' )
+ function getFixQuery(
+ $mode,
+ $table,
+ $field,
+ $sqlFileData,
+ $engine = self::MOST_PREFERRED_STORAGE_ENGINE,
+ $charset = self::MOST_PREFERRED_CHARSET
+ )
{
if(strpos($mode, 'index') === 0)
@@ -784,6 +886,7 @@ function getFixQuery($mode, $table, $field, $sqlFileData, $engine = 'MyISAM' )
$newval = $this->toMysql($fdata[$field]);
}
+ $query = "";
switch($mode)
{
@@ -810,8 +913,18 @@ function getFixQuery($mode, $table, $field, $sqlFileData, $engine = 'MyISAM' )
break;
case 'create':
- $query = "CREATE TABLE `".MPREFIX.$table."` (".$sqlFileData.") ENGINE=".$engine.";";
+ $query = "CREATE TABLE `".MPREFIX.$table."` (".$sqlFileData.")".
+ " ENGINE=".$engine." DEFAULT CHARACTER SET=".$charset.";";
break;
+
+ case 'convert':
+ $showCreateTable = $this->getSqlData($table);
+ $currentSchema = $this->getSqlFileTables($showCreateTable);
+ if ($engine != $currentSchema['engine'][0])
+ $query .= "ALTER TABLE `".MPREFIX.$table."` ENGINE=".$engine.";";
+ if ($charset != $currentSchema['charset'][0])
+ $query .= "ALTER TABLE `".MPREFIX.$table."` CONVERT TO CHARACTER SET ".$charset.";";
+ break;
}
@@ -849,7 +962,14 @@ function runFix($fixArray='')
foreach($fixes as $mode)
{
- $query = $this->getFixQuery($mode,$table,$field,$this->sqlFileTables[$j]['data'][$id],$this->sqlFileTables[$j]['engine'][$id]);
+ $query = $this->getFixQuery(
+ $mode,
+ $table,
+ $field,
+ $this->sqlFileTables[$j]['data'][$id],
+ $this->getIntendedStorageEngine($this->sqlFileTables[$j]['engine'][$id]),
+ $this->getIntendedCharset($this->sqlFileTables[$j]['charset'][$id])
+ );
// $mes->addDebug("Query: ".$query);
@@ -900,14 +1020,8 @@ function getSqlFileTables($sql_data)
$ret = array();
$sql_data = preg_replace("#\/\*.*?\*\/#mis", '', $sql_data); // remove comments
- // echo "SqlData
";
- // print_a($sql_data);
- // $regex = "/CREATE TABLE `?([\w]*)`?\s*?\(([\s\w\+\-_\(\),'\. `]*)\)\s*(ENGINE|TYPE)\s*?=\s?([\w]*)[\w =]*;/i";
- // $regex = "/CREATE TABLE (?:IF NOT EXISTS )?`?([\w]*)`?\s*?\(([\s\w\+\-_\(\),:'\. `]*)\)\s*(ENGINE|TYPE)\s*?=\s?([\w]*)[\w =]*;/i";
-
- // also support non-alphanumeric chars.
- $regex = "/CREATE TABLE (?:IF NOT EXISTS )?`?([\w]*)`?\s*?\(([^;]*)\)\s*(ENGINE|TYPE)\s*?=\s?([\w]*)[\w =]*;/i";
+ $regex = "/CREATE TABLE (?:IF NOT EXISTS )?`?([\w]*)`?\s*?\(([^;]*)\)\s*((?:[\w\s]+=[^\s]+)+\s*)*;/i";
preg_match_all($regex,$sql_data,$match);
@@ -938,8 +1052,44 @@ function getSqlFileTables($sql_data)
}
$ret['data'] = $data;
- $ret['engine'] = $match[4];
-
+
+ $ret['engine'] = array();
+ $ret['charset'] = array();
+
+ foreach ($match[3] as $rawTableOptions)
+ {
+ if (empty($rawTableOptions)) continue;
+
+ $engine = null;
+ $charset = null;
+
+ $tableOptionsRegex = "/([\w\s]+=[\w]+)+?\s*/";
+ preg_match_all($tableOptionsRegex, $rawTableOptions, $tableOptionsSplit);
+ $tableOptionsSplit = current($tableOptionsSplit);
+ foreach ($tableOptionsSplit as $rawTableOption)
+ {
+ list($tableOptionName, $tableOptionValue) = explode("=", $rawTableOption, 2);
+ $tableOptionName = strtoupper(trim($tableOptionName));
+ $tableOptionValue = trim($tableOptionValue);
+ switch ($tableOptionName)
+ {
+ case "ENGINE":
+ case "TYPE":
+ $engine = $tableOptionValue;
+ break;
+ case "DEFAULT CHARSET":
+ case "DEFAULT CHARACTER SET":
+ case "CHARSET":
+ case "CHARACTER SET":
+ $charset = $tableOptionValue;
+ break;
+ }
+ }
+
+ $ret['engine'][] = $engine;
+ $ret['charset'][] = $charset;
+ }
+
if(empty($ret['tables']))
{
e107::getMessage()->addDebug("Unable to parse ".$this->currentTable."_sql.php file data. Possibly missing a ';' at the end?");
@@ -962,7 +1112,7 @@ function getFields($data, $print = false)
foreach($tmp as $line)
{
$line = trim($line);
- $newline[] = preg_replace("/^([^`A-Z\s][a-z_]*[0-9]?)/","`$1`", $line);
+ $newline[] = preg_replace('/^([^`\s][0-9a-zA-Z\$_]*)/',"`$1`", $line);
}
$data = implode("\n",$newline);
@@ -1189,6 +1339,90 @@ function renderTableSelect()
$ns->tablerender(DBVLAN_23.' - '.DBVLAN_16, $mes->render().$text);
}
+
+ /**
+ * Get the available storage engines on this MySQL server
+ *
+ * This method is not memoized and should not be called repeatedly.
+ *
+ * @return string[] An unordered list of the storage engines supported by the current MySQL server
+ */
+ private static function getAvailableStorageEngines()
+ {
+ $db = e107::getDb();
+ $db->gen("SHOW ENGINES;");
+ $output = [];
+ while ($row = $db->fetch())
+ {
+ $output[] = $row['Engine'];
+ }
+ return $output;
+ }
+
+ /**
+ * Get the most compatible MySQL storage engine on this server for the provided storage engine
+ *
+ * @param string|null $maybeStorageEngine The requested storage engine
+ * @return string|false The MySQL storage engine that should actually be used. false if no match found.
+ */
+ public function getIntendedStorageEngine($maybeStorageEngine = null)
+ {
+ if ($maybeStorageEngine === null)
+ return $this->getIntendedStorageEngine(self::MOST_PREFERRED_STORAGE_ENGINE);
+
+ if (!array_key_exists($maybeStorageEngine, $this->storageEnginePreferenceMap))
+ {
+ if (in_array($maybeStorageEngine, $this->availableStorageEngines))
+ return $maybeStorageEngine;
+ return false;
+ }
+
+ $fit = array_intersect($this->storageEnginePreferenceMap[$maybeStorageEngine], $this->availableStorageEngines);
+ return current($fit);
+ }
+
+ /**
+ * Try to figure out what storage engine the provided one is referring to
+ *
+ * @param string $maybeStorageEngine The reported storage engine
+ * @return string The probable storage engine the input is referring to
+ * @throws UnexpectedValueException if the provided storage engine is not known as an available storage engine
+ */
+ public function getCanonicalStorageEngine($maybeStorageEngine)
+ {
+ if (in_array($maybeStorageEngine, $this->availableStorageEngines))
+ return $maybeStorageEngine;
+
+ throw new UnexpectedValueException(
+ "Unknown storage engine: " . var_export($maybeStorageEngine, true)
+ );
+ }
+
+ /**
+ * Get the most compatible MySQL character set based on the input
+ *
+ * @param string|null $maybeCharset The requested character set. null to retrieve the default
+ * @return string The MySQL character set that should actually be used
+ */
+ public function getIntendedCharset($maybeCharset = null)
+ {
+ if (empty($maybeCharset)) return self::MOST_PREFERRED_CHARSET;
+
+ return $this->getCanonicalCharset($maybeCharset);
+ }
+
+ /**
+ * Try to figure out what character set the provided one is referring to
+ *
+ * @param string $maybeCharset The reported character set
+ * @return string The probable character set
+ */
+ public function getCanonicalCharset($maybeCharset)
+ {
+ if ($maybeCharset == "utf8") return "utf8mb4";
+
+ return $maybeCharset;
+ }
}
diff --git a/e107_handlers/e_db_pdo_class.php b/e107_handlers/e_db_pdo_class.php
index 0d8233c9a5..d57a8ae1c0 100644
--- a/e107_handlers/e_db_pdo_class.php
+++ b/e107_handlers/e_db_pdo_class.php
@@ -2568,11 +2568,11 @@ private function setSQLMode()
/**
- * Set Database charset to utf8
+ * Set Database charset to utf8mb4
*
* @access private
*/
- public function setCharset($charset = 'utf8')
+ public function setCharset($charset = 'utf8mb4')
{
$this->db_Query("SET NAMES `$charset`");
@@ -2582,7 +2582,7 @@ public function setCharset($charset = 'utf8')
public function getCharset()
{
- return $this->mySQLcharset;
+ return (new db_verify())->getIntendedCharset($this->mySQLcharset);
}
diff --git a/e107_handlers/mysql_class.php b/e107_handlers/mysql_class.php
index 5ce16e72d1..24f341400b 100644
--- a/e107_handlers/mysql_class.php
+++ b/e107_handlers/mysql_class.php
@@ -2393,7 +2393,7 @@ private function setSQLMode()
/**
- * Check if MySQL version is utf8 compatible and may be used as it accordingly to the user choice
+ * Check if MySQL version is utf8mb4 compatible and may be used as it accordingly to the user choice
*
* @TODO Simplify when the conversion script will be available
* @access public
@@ -2406,15 +2406,16 @@ function db_Set_Charset($charset = '', $debug = FALSE)
{
// Get the default user choice
global $mySQLcharset;
- if (isset($mySQLcharset) && $mySQLcharset != 'utf8')
+ if (isset($mySQLcharset) && $mySQLcharset != 'utf8mb4')
{
- // Only utf8 is accepted
+ // Only utf8mb4 is accepted
$mySQLcharset = '';
}
$charset = ($charset ? $charset : $mySQLcharset);
$message = (( ! $charset && $debug) ? 'Empty charset!' : '');
if($charset)
{
+ $this->mySQLaccess->set_charset($charset);
if ( ! $debug)
{
@mysqli_query($this->mySQLaccess, "SET NAMES `$charset`");
diff --git a/e107_handlers/plugin_class.php b/e107_handlers/plugin_class.php
index 24b9f3c1ff..245207ffb6 100644
--- a/e107_handlers/plugin_class.php
+++ b/e107_handlers/plugin_class.php
@@ -3170,9 +3170,8 @@ function XmlTables($function, $plug, $options = array())
return null;
}
+ /** @var db_verify $dbv */
$dbv = e107::getSingleton('db_verify', e_HANDLER."db_verify_class.php");
- // require_once(e_HANDLER."db_verify_class.php");
- // $dbv = new db_verify;
$sql = e107::getDb();
// Add or Remove Table --------------
@@ -3192,12 +3191,15 @@ function XmlTables($function, $plug, $options = array())
$query = '';
foreach($tableData['tables'] as $k=>$v)
{
+ $engine = $dbv->getIntendedStorageEngine($tableData['engine'][$k]);
+ $charset = $dbv->getIntendedCharset($tableData['charset'][$k]);
+
switch($function)
{
case "install":
$query = "CREATE TABLE `".MPREFIX.$v."` (\n";
$query .= $tableData['data'][$k];
- $query .= "\n) ENGINE=". vartrue($tableData['engine'][$k],"InnoDB")." DEFAULT CHARSET=utf8 ";
+ $query .= "\n) ENGINE=$engine DEFAULT CHARSET=$charset ";
$txt = EPL_ADLAN_239." {$v} ";
$status = $sql->db_Query($query) ? E_MESSAGE_SUCCESS : E_MESSAGE_ERROR;
@@ -4373,7 +4375,7 @@ function refresh($dir)
/**
* Installs a plugin by ID or folder name
*
- * @param int $id
+ * @param int|string $id
* @param array $options (currently only 'nolinks' - set to true to prevent sitelink creation during install)
*/
function install($id, $options = array())
diff --git a/e107_handlers/user_model.php b/e107_handlers/user_model.php
index 85cee6d9b7..357e477a6e 100644
--- a/e107_handlers/user_model.php
+++ b/e107_handlers/user_model.php
@@ -2112,7 +2112,7 @@ final public function setSessionData($force = false)
{
$this->_session_data = null;
$this->_session_key = e107::getPref('cookie_name', 'e107cookie');
- $this->_session_type = e107::getPref('user_tracking', 'cookie');
+ $this->_session_type = e107::getPref('user_tracking', 'session');
if('session' == $this->_session_type && isset($_SESSION[$this->_session_key]) && !empty($_SESSION[$this->_session_key]))
{
diff --git a/e107_languages/English/admin/lan_db_verify.php b/e107_languages/English/admin/lan_db_verify.php
index 60a9a9cb9e..e5446a43cc 100644
--- a/e107_languages/English/admin/lan_db_verify.php
+++ b/e107_languages/English/admin/lan_db_verify.php
@@ -22,6 +22,8 @@
define("DBVLAN_14", "Choose table(s) to validate");
define("DBVLAN_15", "Start Verify");
define("DBVLAN_16", "SQL Verification");
+define("DBVLAN_17", "Storage engine should be [x] but is [y]");
+define("DBVLAN_18", "Character set should be [x] but is [y]");
define("DBVLAN_19", "Attempt to Fix");
@@ -32,5 +34,8 @@
define("DBVLAN_25", "Index missing!");
define("DBVLAN_26", "[x] table(s) have problems.");
-// IMPORTANT NOTE: DBLAN has been replaced by DBBLAN in this file since 0.7 due to conflicts with db.php
+define("DBVLAN_27", "Table inconsistency");
+define("DBVLAN_28", "Not applicable");
+
+// IMPORTANT NOTE: DBLAN has been replaced by DBVLAN in this file since 0.7 due to conflicts with db.php
diff --git a/e107_plugins/alt_auth/e107db_auth.php b/e107_plugins/alt_auth/e107db_auth.php
index ac4db5af4e..61abd08979 100644
--- a/e107_plugins/alt_auth/e107db_auth.php
+++ b/e107_plugins/alt_auth/e107db_auth.php
@@ -98,7 +98,7 @@ public function login($uname, $pword, &$newvals, $connect_only = FALSE)
*/
// $dsn = 'mysql:dbname=' . $this->conf['e107db_database'] . ';host=' . $this->conf['e107db_server'];
- $dsn = "mysql:host=".$this->conf['e107db_server'].";port=".varset($this->conf['e107db_port'],3306).";dbname=".$this->conf['e107db_database'];
+ $dsn = "mysql:host=".$this->conf['e107db_server'].";port=".varset($this->conf['e107db_port'],3306).";dbname=".$this->conf['e107db_database'].";charset=".(new db_verify())->getIntendedCharset();
try
{
diff --git a/e107_plugins/alt_auth/otherdb_auth.php b/e107_plugins/alt_auth/otherdb_auth.php
index 367f5cd041..16f4e8414d 100644
--- a/e107_plugins/alt_auth/otherdb_auth.php
+++ b/e107_plugins/alt_auth/otherdb_auth.php
@@ -81,7 +81,7 @@ public function login($uname, $pword, &$newvals, $connect_only = FALSE)
{
/* Begin - Deltik's PDO Workaround (part 1/2) */
// $dsn = 'mysql:dbname=' . $this->conf['otherdb_database'] . ';host=' . $this->conf['otherdb_server'];
- $dsn = "mysql:host=".$this->conf['otherdb_server'].";port=".varset($this->conf['otherdb_port'],3306).";dbname=".$this->conf['otherdb_database'];
+ $dsn = "mysql:host=".$this->conf['otherdb_server'].";port=".varset($this->conf['otherdb_port'],3306).";dbname=".$this->conf['otherdb_database'].";charset=".(new db_verify())->getIntendedCharset();
try
diff --git a/e107_tests/tests/unit/db_verifyTest.php b/e107_tests/tests/unit/db_verifyTest.php
index ecce2a5dbb..1749a19bfe 100644
--- a/e107_tests/tests/unit/db_verifyTest.php
+++ b/e107_tests/tests/unit/db_verifyTest.php
@@ -49,6 +49,8 @@ public function testGetFields()
table_summary text,
table_media text,
table_email2 tinyint(3) unsigned NOT NULL default '0',
+ table_email90 tinyint(3) unsigned NOT NULL default '0',
+ e107_name varchar(100) NOT NULL default '',
PRIMARY KEY (table_id)";
$expected = array (
@@ -188,6 +190,22 @@ public function testGetFields()
'null' => 'NOT NULL',
'default' => 'DEFAULT \'0\'',
),
+ 'table_email90' =>
+ array (
+ 'type' => 'TINYINT',
+ 'value' => '3',
+ 'attributes' => 'UNSIGNED',
+ 'null' => 'NOT NULL',
+ 'default' => 'DEFAULT \'0\'',
+ ),
+ 'e107_name' =>
+ array (
+ 'type' => 'VARCHAR',
+ 'value' => '100',
+ 'attributes' => '',
+ 'null' => 'NOT NULL',
+ 'default' => 'DEFAULT \'\'',
+ ),
);
$actual = $this->dbv->getFields($data);
@@ -355,7 +373,7 @@ public function testGetFixQuery()
PRIMARY KEY (table_id)
UNIQUE KEY `table_email` (`table_email`),
KEY `table_user` (`table_user`)
- ) ENGINE=InnoDB;';
+ ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4;';
$expected = str_replace("\t", "",$expected);
$actual = str_replace("\t", "",$actual);
@@ -762,6 +780,11 @@ public function testPrepareResults()
$fileData['index'] = $this->dbv->getIndex($file);
$sqlData['index'] = $this->dbv->getIndex($sql);
+ $fileData['engine'] = $this->dbv->getIntendedStorageEngine("InnoDB");
+ $sqlData['engine'] = $this->dbv->getCanonicalStorageEngine("InnoDB");
+
+ $fileData['charset'] = $this->dbv->getIntendedCharset("utf8mb4");
+ $sqlData['charset'] = $this->dbv->getCanonicalCharset("utf8mb4");
$this->dbv->prepareResults('schedule', 'myplugin', $sqlData, $fileData);
@@ -899,4 +922,75 @@ public function testGetSqlLanguages()
{
}*/
+
+ public function testGetCanonicalStorageEngine()
+ {
+ $input = "InnoDB";
+
+ $output = $this->dbv->getCanonicalStorageEngine($input);
+
+ $this->assertEquals($input, $output);
+ }
+
+ public function testGetCanonicalStorageEngineUnknownStorageEngine()
+ {
+ $this->expectException(UnexpectedValueException::class);
+
+ $this->dbv->getCanonicalStorageEngine("FakeEngine");
+ }
+
+ public function testGetCanonicalCharsetUtf8Alias()
+ {
+ $input = "utf8";
+ $expected = "utf8mb4";
+
+ $output = $this->dbv->getCanonicalCharset($input);
+
+ $this->assertEquals($expected, $output);
+ }
+
+ public function testGetCanonicalCharsetOther()
+ {
+ $inputs = ["latin1", "utf8mb3", "utf8mb4"];
+
+ foreach ($inputs as $input)
+ {
+ $output = $this->dbv->getCanonicalCharset($input);
+
+ $this->assertEquals($input, $output);
+ }
+ }
+
+ public function testGetIntendedStorageEngine()
+ {
+ $output = $this->dbv->getIntendedStorageEngine("MyISAM");
+ $this->assertEquals("InnoDB", $output);
+
+ $output = $this->dbv->getIntendedStorageEngine("InnoDB");
+ $this->assertEquals("InnoDB", $output);
+
+ $output = $this->dbv->getIntendedStorageEngine("Aria");
+ $this->assertContains($output, ["Aria", "Maria", "MyISAM"]);
+
+ $output = $this->dbv->getIntendedStorageEngine("MEMORY");
+ $this->assertEquals("MEMORY", $output);
+ }
+
+ public function testGetIntendedCharset()
+ {
+ $output = $this->dbv->getIntendedCharset("");
+ $this->assertEquals("utf8mb4", $output);
+
+ $output = $this->dbv->getIntendedCharset();
+ $this->assertEquals("utf8mb4", $output);
+
+ $output = $this->dbv->getIntendedCharset("utf8");
+ $this->assertEquals("utf8mb4", $output);
+
+ $output = $this->dbv->getIntendedCharset("utf8mb3");
+ $this->assertEquals("utf8mb3", $output);
+
+ $output = $this->dbv->getIntendedCharset("latin1");
+ $this->assertEquals("latin1", $output);
+ }
}
diff --git a/e107_tests/tests/unit/e_db_pdoTest.php b/e107_tests/tests/unit/e_db_pdoTest.php
index 2755d663f7..b023d2d6cd 100644
--- a/e107_tests/tests/unit/e_db_pdoTest.php
+++ b/e107_tests/tests/unit/e_db_pdoTest.php
@@ -40,7 +40,7 @@ public function testGetCharSet()
$this->db->setCharset();
$result = $this->db->getCharset();
- $this->assertEquals('utf8', $result);
+ $this->assertEquals('utf8mb4', $result);
}
public function testBackup()
diff --git a/install.php b/install.php
index 12d9091879..b2df37756a 100644
--- a/install.php
+++ b/install.php
@@ -829,13 +829,13 @@ private function stage_3()
if($this->previous_steps['mysql']['createdb'] == 1)
{
$notification = "
".LANINS_044;
- $query = 'CREATE DATABASE `'.$this->previous_steps['mysql']['db'].'` CHARACTER SET `utf8` ';
+ $query = 'CREATE DATABASE `'.$this->previous_steps['mysql']['db'].'` CHARACTER SET `utf8mb4` ';
}
else
{
$notification = "
".LANINS_137;
- $query = 'ALTER DATABASE `'.$this->previous_steps['mysql']['db'].'` CHARACTER SET `utf8` ';
+ $query = 'ALTER DATABASE `'.$this->previous_steps['mysql']['db'].'` CHARACTER SET `utf8mb4` ';
}
if (!$this->dbqry($query))
@@ -850,7 +850,7 @@ private function stage_3()
}
else
{
- $this->dbqry('SET NAMES `utf8`');
+ $this->dbqry('SET NAMES `utf8mb4`');
$page_content .= $notification; // "
}
@@ -1492,7 +1492,7 @@ private function stage_7()
\$mySQLpassword = '{$this->previous_steps['mysql']['password']}';
\$mySQLdefaultdb = '{$this->previous_steps['mysql']['db']}';
\$mySQLprefix = '{$this->previous_steps['mysql']['prefix']}';
-\$mySQLcharset = 'utf8';
+\$mySQLcharset = 'utf8mb4';
\$ADMIN_DIRECTORY = '{$this->e107->e107_dirs['ADMIN_DIRECTORY']}';
\$FILES_DIRECTORY = '{$this->e107->e107_dirs['FILES_DIRECTORY']}';
@@ -1892,9 +1892,10 @@ public function import_configuration()
*/
public function install_plugin($plugpath)
{
- e107::getPlugin()->install_plugin($plugpath);
- // e107::getPlugin()->install_plugin($row['plugin_id']);
-
+ $plugin_handler = e107::getPlugin();
+ $plugin_handler->XmlTables('uninstall', ['plugin_path' => $plugpath], ['delete_tables' => true]);
+ $plugin_handler->install($plugpath);
+
e107::getMessage()->reset(false, false, true);
return null;
@@ -2152,7 +2153,7 @@ public function create_tables()
preg_match_all("/create(.*?)(?:myisam|innodb);/si", $sql_data, $result );
// Force UTF-8 again
- $this->dbqry('SET NAMES `utf8`');
+ $this->dbqry('SET NAMES `utf8mb4`');
$srch = array("CREATE TABLE","(");
$repl = array("DROP TABLE IF EXISTS","");