PluginProbe ʕ •ᴥ•ʔ
Matomo Analytics – Powerful, Privacy-First Insights for WordPress / trunk
Matomo Analytics – Powerful, Privacy-First Insights for WordPress vtrunk
5.11.1 5.11.0 5.10.2 5.10.1 trunk 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.3.2 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.1.0 4.1.1 4.1.2 4.1.3 4.10.0 4.11.0 4.12.0 4.13.0 4.13.2 4.13.3 4.13.4 4.13.5 4.14.0 4.14.1 4.14.2 4.15.0 4.15.1 4.15.2 4.15.3 4.2.0 4.3.0 4.3.1 4.4.1 4.4.2 4.5.0 4.6.0 5.0.1 5.0.2 5.0.3 5.0.4 5.0.5 5.0.6 5.0.7 5.0.8 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.10.0 5.2.0 5.2.1 5.2.2 5.3.0 5.3.1 5.3.2 5.3.3 5.6.0 5.6.1 5.7.0 5.7.1 5.8.0 5.8.1 5.8.2
matomo / app / core / Db / Schema / Mysql.php
matomo / app / core / Db / Schema Last commit date
Mariadb.php 3 months ago Mysql.php 3 weeks ago Tidb.php 1 month ago
Mysql.php
451 lines
1 <?php
2
3 /**
4 * Matomo - free/libre analytics platform
5 *
6 * @link https://matomo.org
7 * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
8 */
9 namespace Piwik\Db\Schema;
10
11 use Exception;
12 use Piwik\Common;
13 use Piwik\Concurrency\Lock;
14 use Piwik\Config;
15 use Piwik\Date;
16 use Piwik\Db\SchemaInterface;
17 use Piwik\Db;
18 use Piwik\DbHelper;
19 use Piwik\Option;
20 use Piwik\Piwik;
21 use Piwik\Plugin\Manager;
22 use Piwik\Plugins\UsersManager\Model;
23 use Piwik\Version;
24 /**
25 * MySQL schema
26 */
27 class Mysql implements SchemaInterface
28 {
29 public const OPTION_NAME_MATOMO_INSTALL_VERSION = 'install_version';
30 public const MAX_TABLE_NAME_LENGTH = 64;
31 private $tablesInstalled = null;
32 protected $minimumSupportedVersion = '5.5';
33 public function getDatabaseType() : string
34 {
35 return 'MySQL';
36 }
37 public function getMinimumSupportedVersion() : string
38 {
39 return $this->minimumSupportedVersion;
40 }
41 /**
42 * Get the SQL to create Piwik tables
43 *
44 * @return array array of strings containing SQL
45 */
46 public function getTablesCreateSql()
47 {
48 $prefixTables = $this->getTablePrefix();
49 $tableOptions = $this->getTableCreateOptions();
50 $tables = array('user' => "CREATE TABLE {$prefixTables}user (\n login VARCHAR(100) NOT NULL,\n password VARCHAR(255) NOT NULL,\n email VARCHAR(100) NOT NULL,\n twofactor_secret VARCHAR(40) NOT NULL DEFAULT '',\n superuser_access TINYINT(2) unsigned NOT NULL DEFAULT '0',\n date_registered TIMESTAMP NULL,\n ts_password_modified TIMESTAMP NULL,\n idchange_last_viewed INTEGER UNSIGNED NULL,\n invited_by VARCHAR(100) NULL,\n invite_token VARCHAR(191) NULL,\n invite_link_token VARCHAR(191) NULL,\n invite_expired_at TIMESTAMP NULL,\n invite_accept_at TIMESTAMP NULL,\n ts_changes_shown TIMESTAMP NULL,\n ts_last_seen TIMESTAMP NULL,\n ts_inactivity_notified TIMESTAMP NULL,\n PRIMARY KEY(login),\n UNIQUE INDEX `uniq_email` (`email`)\n ) {$tableOptions}\n ", 'user_token_auth' => "CREATE TABLE {$prefixTables}user_token_auth (\n idusertokenauth BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,\n login VARCHAR(100) NOT NULL,\n description VARCHAR(" . Model::MAX_LENGTH_TOKEN_DESCRIPTION . ") NOT NULL,\n password VARCHAR(191) NOT NULL,\n hash_algo VARCHAR(30) NOT NULL,\n system_token TINYINT(1) NOT NULL DEFAULT 0,\n last_used DATETIME NULL,\n date_created DATETIME NOT NULL,\n date_expired DATETIME NULL,\n secure_only TINYINT(2) unsigned NOT NULL DEFAULT '0',\n ts_rotation_notified DATETIME NULL,\n ts_expiration_warning_notified DATETIME NULL,\n PRIMARY KEY(idusertokenauth),\n UNIQUE KEY uniq_password(password)\n ) {$tableOptions}\n ", 'twofactor_recovery_code' => "CREATE TABLE {$prefixTables}twofactor_recovery_code (\n idrecoverycode BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,\n login VARCHAR(100) NOT NULL,\n recovery_code VARCHAR(40) NOT NULL,\n PRIMARY KEY(idrecoverycode)\n ) {$tableOptions}\n ", 'access' => "CREATE TABLE {$prefixTables}access (\n idaccess INTEGER(10) UNSIGNED NOT NULL AUTO_INCREMENT,\n login VARCHAR(100) NOT NULL,\n idsite INTEGER UNSIGNED NOT NULL,\n access VARCHAR(50) NULL,\n PRIMARY KEY(idaccess),\n INDEX index_loginidsite (login, idsite)\n ) {$tableOptions}\n ", 'site' => "CREATE TABLE {$prefixTables}site (\n idsite INTEGER(10) UNSIGNED NOT NULL AUTO_INCREMENT,\n name VARCHAR(90) NOT NULL,\n description VARCHAR(255) NOT NULL DEFAULT '',\n main_url VARCHAR(255) NOT NULL,\n ts_created TIMESTAMP NULL,\n ecommerce TINYINT DEFAULT 0,\n sitesearch TINYINT DEFAULT 1,\n sitesearch_keyword_parameters TEXT NOT NULL,\n sitesearch_category_parameters TEXT NOT NULL,\n timezone VARCHAR( 50 ) NOT NULL,\n currency CHAR( 3 ) NOT NULL,\n exclude_unknown_urls TINYINT(1) DEFAULT 0,\n excluded_ips TEXT NOT NULL,\n excluded_parameters TEXT NOT NULL,\n excluded_user_agents TEXT NOT NULL,\n excluded_referrers TEXT NOT NULL,\n `group` VARCHAR(250) NOT NULL,\n `type` VARCHAR(255) NOT NULL,\n keep_url_fragment TINYINT NOT NULL DEFAULT 0,\n creator_login VARCHAR(100) NULL,\n PRIMARY KEY(idsite)\n ) {$tableOptions}\n ", 'plugin_setting' => "CREATE TABLE {$prefixTables}plugin_setting (\n `plugin_name` VARCHAR(60) NOT NULL,\n `setting_name` VARCHAR(255) NOT NULL,\n `setting_value` LONGTEXT NOT NULL,\n `json_encoded` TINYINT UNSIGNED NOT NULL DEFAULT 0,\n `user_login` VARCHAR(100) NOT NULL DEFAULT '',\n `idplugin_setting` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,\n PRIMARY KEY (idplugin_setting),\n INDEX(plugin_name, user_login)\n ) {$tableOptions}\n ", 'site_setting' => "CREATE TABLE {$prefixTables}site_setting (\n idsite INTEGER(10) UNSIGNED NOT NULL,\n `plugin_name` VARCHAR(60) NOT NULL,\n `setting_name` VARCHAR(255) NOT NULL,\n `setting_value` LONGTEXT NOT NULL,\n `json_encoded` TINYINT UNSIGNED NOT NULL DEFAULT 0,\n `idsite_setting` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,\n PRIMARY KEY (idsite_setting),\n INDEX(idsite, plugin_name)\n ) {$tableOptions}\n ", 'site_url' => "CREATE TABLE {$prefixTables}site_url (\n idsite INTEGER(10) UNSIGNED NOT NULL,\n url VARCHAR(190) NOT NULL,\n PRIMARY KEY(idsite, url)\n ) {$tableOptions}\n ", 'goal' => "CREATE TABLE `{$prefixTables}goal` (\n `idsite` int(11) NOT NULL,\n `idgoal` int(11) NOT NULL,\n `name` varchar(50) NOT NULL,\n `description` varchar(255) NOT NULL DEFAULT '',\n `match_attribute` varchar(20) NOT NULL,\n `pattern` varchar(255) NOT NULL,\n `pattern_type` varchar(25) NOT NULL,\n `case_sensitive` tinyint(4) NOT NULL,\n `allow_multiple` tinyint(4) NOT NULL,\n `revenue` DOUBLE NOT NULL,\n `deleted` tinyint(4) NOT NULL default '0',\n `event_value_as_revenue` tinyint(4) NOT NULL default '0',\n PRIMARY KEY (`idsite`,`idgoal`)\n ) {$tableOptions}\n ", 'logger_message' => "CREATE TABLE {$prefixTables}logger_message (\n idlogger_message INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,\n tag VARCHAR(50) NULL,\n timestamp TIMESTAMP NULL,\n level VARCHAR(16) NULL,\n message TEXT NULL,\n PRIMARY KEY(idlogger_message)\n ) {$tableOptions}\n ", 'log_action' => "CREATE TABLE {$prefixTables}log_action (\n idaction INTEGER(10) UNSIGNED NOT NULL AUTO_INCREMENT,\n name VARCHAR(4096),\n hash INTEGER(10) UNSIGNED NOT NULL,\n type TINYINT UNSIGNED NULL,\n url_prefix TINYINT(2) NULL,\n PRIMARY KEY(idaction),\n INDEX index_type_hash (type, hash)\n ) {$tableOptions}\n ", 'log_visit' => "CREATE TABLE {$prefixTables}log_visit (\n idvisit BIGINT(10) UNSIGNED NOT NULL AUTO_INCREMENT,\n idsite INTEGER(10) UNSIGNED NOT NULL,\n idvisitor BINARY(8) NOT NULL,\n visit_last_action_time DATETIME NOT NULL,\n config_id BINARY(8) NOT NULL,\n location_ip VARBINARY(16) NOT NULL,\n PRIMARY KEY(idvisit),\n INDEX index_idsite_config_datetime (idsite, config_id, visit_last_action_time),\n INDEX index_idsite_datetime (idsite, visit_last_action_time),\n INDEX index_idsite_idvisitor_time (idsite, idvisitor, visit_last_action_time DESC)\n ) {$tableOptions}\n ", 'log_conversion_item' => "CREATE TABLE `{$prefixTables}log_conversion_item` (\n idsite int(10) UNSIGNED NOT NULL,\n idvisitor BINARY(8) NOT NULL,\n server_time DATETIME NOT NULL,\n idvisit BIGINT(10) UNSIGNED NOT NULL,\n idorder varchar(100) NOT NULL,\n idaction_sku INTEGER(10) UNSIGNED NOT NULL,\n idaction_name INTEGER(10) UNSIGNED NOT NULL,\n idaction_category INTEGER(10) UNSIGNED NOT NULL,\n idaction_category2 INTEGER(10) UNSIGNED NOT NULL,\n idaction_category3 INTEGER(10) UNSIGNED NOT NULL,\n idaction_category4 INTEGER(10) UNSIGNED NOT NULL,\n idaction_category5 INTEGER(10) UNSIGNED NOT NULL,\n price DOUBLE NOT NULL,\n quantity INTEGER(10) UNSIGNED NOT NULL,\n deleted TINYINT(1) UNSIGNED NOT NULL,\n PRIMARY KEY(idvisit, idorder, idaction_sku),\n INDEX index_idsite_servertime ( idsite, server_time )\n ) {$tableOptions}\n ", 'log_conversion' => "CREATE TABLE `{$prefixTables}log_conversion` (\n idvisit BIGINT(10) unsigned NOT NULL,\n idsite int(10) unsigned NOT NULL,\n idvisitor BINARY(8) NOT NULL,\n server_time datetime NOT NULL,\n idaction_url INTEGER(10) UNSIGNED default NULL,\n idlink_va BIGINT(10) UNSIGNED default NULL,\n idgoal int(10) NOT NULL,\n buster int unsigned NOT NULL,\n idorder varchar(100) default NULL,\n items SMALLINT UNSIGNED DEFAULT NULL,\n url VARCHAR(4096) NOT NULL,\n revenue DOUBLE default NULL,\n revenue_shipping DOUBLE default NULL,\n revenue_subtotal DOUBLE default NULL,\n revenue_tax DOUBLE default NULL,\n revenue_discount DOUBLE default NULL,\n pageviews_before SMALLINT UNSIGNED DEFAULT NULL,\n PRIMARY KEY (idvisit, idgoal, buster),\n UNIQUE KEY unique_idsite_idorder (idsite, idorder),\n INDEX index_idsite_datetime ( idsite, server_time )\n ) {$tableOptions}\n ", 'log_link_visit_action' => "CREATE TABLE {$prefixTables}log_link_visit_action (\n idlink_va BIGINT(10) UNSIGNED NOT NULL AUTO_INCREMENT,\n idsite int(10) UNSIGNED NOT NULL,\n idvisitor BINARY(8) NOT NULL,\n idvisit BIGINT(10) UNSIGNED NOT NULL,\n idaction_url_ref INTEGER(10) UNSIGNED NULL DEFAULT 0,\n idaction_name_ref INTEGER(10) UNSIGNED NULL,\n custom_float DOUBLE NULL DEFAULT NULL,\n pageview_position MEDIUMINT UNSIGNED DEFAULT NULL,\n PRIMARY KEY(idlink_va),\n INDEX index_idvisit(idvisit)\n ) {$tableOptions}\n ", 'log_profiling' => "CREATE TABLE {$prefixTables}log_profiling (\n query TEXT NOT NULL,\n count INTEGER UNSIGNED NULL,\n sum_time_ms FLOAT NULL,\n idprofiling BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,\n PRIMARY KEY (idprofiling),\n UNIQUE KEY query(query(100))\n ) {$tableOptions}\n ", 'option' => "CREATE TABLE `{$prefixTables}option` (\n option_name VARCHAR( 191 ) NOT NULL,\n option_value LONGTEXT NOT NULL,\n autoload TINYINT NOT NULL DEFAULT '1',\n PRIMARY KEY ( option_name ),\n INDEX autoload( autoload )\n ) {$tableOptions}\n ", 'session' => "CREATE TABLE {$prefixTables}session (\n id VARCHAR( 191 ) NOT NULL,\n modified INTEGER,\n lifetime INTEGER,\n data MEDIUMTEXT,\n PRIMARY KEY ( id )\n ) {$tableOptions}\n ", 'archive_numeric' => "CREATE TABLE {$prefixTables}archive_numeric (\n idarchive INTEGER UNSIGNED NOT NULL,\n name VARCHAR(190) NOT NULL,\n idsite INTEGER UNSIGNED NULL,\n date1 DATE NULL,\n date2 DATE NULL,\n period TINYINT UNSIGNED NULL,\n ts_archived DATETIME NULL,\n value DOUBLE NULL,\n PRIMARY KEY(idarchive, name),\n INDEX index_idsite_dates_period(idsite, date1, date2, period, name(6)),\n INDEX index_period_archived(period, ts_archived)\n ) {$tableOptions}\n ", 'archive_blob' => "CREATE TABLE {$prefixTables}archive_blob (\n idarchive INTEGER UNSIGNED NOT NULL,\n name VARCHAR(190) NOT NULL,\n idsite INTEGER UNSIGNED NULL,\n date1 DATE NULL,\n date2 DATE NULL,\n period TINYINT UNSIGNED NULL,\n ts_archived DATETIME NULL,\n value LONGBLOB NULL,\n PRIMARY KEY(idarchive, name),\n INDEX index_period_archived(period, ts_archived)\n ) {$tableOptions}\n ", 'archiving_metrics' => "CREATE TABLE {$prefixTables}archiving_metrics (\n metadataid BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,\n idarchive BIGINT UNSIGNED NOT NULL,\n idsite INTEGER UNSIGNED NOT NULL,\n archive_name VARCHAR(255) NOT NULL,\n date1 DATE NOT NULL,\n date2 DATE NOT NULL,\n period TINYINT UNSIGNED NOT NULL,\n ts_started DATETIME NOT NULL,\n ts_finished DATETIME NOT NULL,\n total_time BIGINT UNSIGNED NOT NULL,\n total_time_exclusive BIGINT UNSIGNED NOT NULL,\n is_temporary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,\n PRIMARY KEY(metadataid),\n INDEX index_idarchive(idarchive),\n INDEX index_idsite_archive_name(idsite, archive_name),\n INDEX index_idsite_date1_period(idsite, date1, period)\n ) {$tableOptions}\n ", 'archive_invalidations' => "CREATE TABLE `{$prefixTables}archive_invalidations` (\n idinvalidation BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,\n idarchive INTEGER UNSIGNED NULL,\n name VARCHAR(255) NOT NULL,\n idsite INTEGER UNSIGNED NOT NULL,\n date1 DATE NOT NULL,\n date2 DATE NOT NULL,\n period TINYINT UNSIGNED NOT NULL,\n ts_invalidated DATETIME NULL,\n ts_started DATETIME NULL,\n status TINYINT(1) UNSIGNED DEFAULT 0,\n `report` VARCHAR(255) NULL,\n processing_host VARCHAR(100) NULL DEFAULT NULL,\n process_id VARCHAR(15) NULL DEFAULT NULL,\n PRIMARY KEY(idinvalidation),\n INDEX index_idsite_dates_period_name(idsite, date1, period)\n ) {$tableOptions}\n ", 'sequence' => "CREATE TABLE {$prefixTables}sequence (\n `name` VARCHAR(120) NOT NULL,\n `value` BIGINT(20) UNSIGNED NOT NULL ,\n PRIMARY KEY(`name`)\n ) {$tableOptions}\n ", 'brute_force_log' => "CREATE TABLE {$prefixTables}brute_force_log (\n `id_brute_force_log` bigint(11) NOT NULL AUTO_INCREMENT,\n `ip_address` VARCHAR(60) DEFAULT NULL,\n `attempted_at` datetime NOT NULL,\n `login` VARCHAR(100) NULL,\n INDEX index_ip_address(ip_address),\n PRIMARY KEY(`id_brute_force_log`)\n ) {$tableOptions}\n ", 'tracking_failure' => "CREATE TABLE {$prefixTables}tracking_failure (\n `idsite` BIGINT(20) UNSIGNED NOT NULL ,\n `idfailure` SMALLINT UNSIGNED NOT NULL ,\n `date_first_occurred` DATETIME NOT NULL ,\n `request_url` MEDIUMTEXT NOT NULL ,\n PRIMARY KEY(`idsite`, `idfailure`)\n ) {$tableOptions}\n ", 'locks' => "CREATE TABLE `{$prefixTables}locks` (\n `key` VARCHAR(" . Lock::MAX_KEY_LEN . ") NOT NULL,\n `value` VARCHAR(255) NULL DEFAULT NULL,\n `expiry_time` BIGINT UNSIGNED DEFAULT 9999999999,\n PRIMARY KEY (`key`)\n ) {$tableOptions}\n ", 'changes' => "CREATE TABLE `{$prefixTables}changes` (\n `idchange` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,\n `created_time` DATETIME NOT NULL,\n `plugin_name` VARCHAR(60) NOT NULL,\n `version` VARCHAR(20) NOT NULL, \n `title` VARCHAR(255) NOT NULL, \n `description` TEXT NULL,\n `link_name` VARCHAR(255) NULL,\n `link` VARCHAR(255) NULL, \n PRIMARY KEY(`idchange`),\n UNIQUE KEY unique_plugin_version_title (`plugin_name`, `version`, `title`(100)) \n ) {$tableOptions}\n ", 'annotations' => "CREATE TABLE `{$prefixTables}annotations` (\n `id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,\n `idsite` INTEGER UNSIGNED NOT NULL,\n `date` DATETIME NOT NULL,\n `note` TEXT NOT NULL,\n `starred` TINYINT(1) NOT NULL DEFAULT 0,\n `user` VARCHAR(100) NOT NULL,\n PRIMARY KEY(`id`),\n INDEX index_idsite_date (`idsite`, `date`) \n ) {$tableOptions}\n ");
51 return $tables;
52 }
53 /**
54 * Get the SQL to create a specific Piwik table
55 *
56 * @param string $tableName
57 * @throws Exception
58 * @return string SQL
59 */
60 public function getTableCreateSql($tableName)
61 {
62 $tables = DbHelper::getTablesCreateSql();
63 if (!isset($tables[$tableName])) {
64 throw new Exception("The table '{$tableName}' SQL creation code couldn't be found.");
65 }
66 return $tables[$tableName];
67 }
68 /**
69 * Names of all the prefixed tables in piwik
70 * Doesn't use the DB
71 *
72 * @return array Table names
73 */
74 public function getTablesNames()
75 {
76 $aTables = array_keys($this->getTablesCreateSql());
77 $prefixTables = $this->getTablePrefix();
78 $return = array();
79 foreach ($aTables as $table) {
80 $return[] = $prefixTables . $table;
81 }
82 return $return;
83 }
84 /**
85 * Get list of installed columns in a table
86 *
87 * @param string $tableName The name of a table.
88 *
89 * @return array Installed columns indexed by the column name.
90 */
91 public function getTableColumns($tableName)
92 {
93 $db = $this->getDb();
94 $allColumns = $db->fetchAll("SHOW COLUMNS FROM `{$tableName}`");
95 $fields = array();
96 foreach ($allColumns as $column) {
97 $fields[trim($column['Field'])] = $column;
98 }
99 return $fields;
100 }
101 /**
102 * Get list of tables installed (including tables defined by deactivated plugins)
103 *
104 * @param bool $forceReload Invalidate cache
105 * @return array installed Tables
106 */
107 public function getTablesInstalled($forceReload = \true)
108 {
109 if (is_null($this->tablesInstalled) || $forceReload === \true) {
110 $db = $this->getDb();
111 $prefixTables = $this->getTablePrefixEscaped();
112 $allTables = $this->getAllExistingTables($prefixTables);
113 // all the tables to be installed
114 $allMyTables = $this->getTablesNames();
115 /**
116 * Triggered when detecting which tables have already been created by Matomo.
117 * This should be used by plugins to define it's database tables. Table names need to be added prefixed.
118 *
119 * **Example**
120 *
121 * Piwik::addAction('Db.getTablesInstalled', function(&$allTablesInstalled) {
122 * $allTablesInstalled = 'log_custom';
123 * });
124 * @param array $result
125 */
126 if (count($allTables) && empty($GLOBALS['DISABLE_GET_TABLES_INSTALLED_EVENTS_FOR_TEST'])) {
127 Manager::getInstance()->loadPlugins(Manager::getAllPluginsNames());
128 Piwik::postEvent('Db.getTablesInstalled', [&$allMyTables]);
129 Manager::getInstance()->unloadPlugins();
130 Manager::getInstance()->loadActivatedPlugins();
131 }
132 // we get the intersection between all the tables in the DB and the tables to be installed
133 $tablesInstalled = array_intersect($allMyTables, $allTables);
134 // at this point we have the static list of core tables, but let's add the monthly archive tables
135 $allArchiveNumeric = $db->fetchCol("SHOW TABLES LIKE '" . $prefixTables . "archive_numeric%'");
136 $allArchiveBlob = $db->fetchCol("SHOW TABLES LIKE '" . $prefixTables . "archive_blob%'");
137 $allTablesReallyInstalled = array_merge($tablesInstalled, $allArchiveNumeric, $allArchiveBlob);
138 $allTablesReallyInstalled = array_unique($allTablesReallyInstalled);
139 $this->tablesInstalled = $allTablesReallyInstalled;
140 }
141 return $this->tablesInstalled;
142 }
143 /**
144 * Checks whether any table exists
145 *
146 * @return bool True if tables exist; false otherwise
147 */
148 public function hasTables()
149 {
150 return count($this->getTablesInstalled()) != 0;
151 }
152 /**
153 * Create database
154 *
155 * @param string $dbName Name of the database to create
156 */
157 public function createDatabase($dbName = null)
158 {
159 if (is_null($dbName)) {
160 $dbName = $this->getDbName();
161 }
162 $createOptions = $this->getDatabaseCreateOptions();
163 $dbName = str_replace('`', '', $dbName);
164 Db::exec("CREATE DATABASE IF NOT EXISTS `{$dbName}` {$createOptions}");
165 }
166 /**
167 * Creates a new table in the database.
168 *
169 * @param string $nameWithoutPrefix The name of the table without any piwik prefix.
170 * @param string $createDefinition The table create definition, see the "MySQL CREATE TABLE" specification for
171 * more information.
172 * @throws \Exception
173 */
174 public function createTable($nameWithoutPrefix, $createDefinition)
175 {
176 $statement = sprintf("CREATE TABLE IF NOT EXISTS `%s` ( %s ) %s;", Common::prefixTable($nameWithoutPrefix), $createDefinition, $this->getTableCreateOptions());
177 try {
178 Db::exec($statement);
179 } catch (Exception $e) {
180 // mysql code error 1050:table already exists
181 // see bug #153 https://github.com/piwik/piwik/issues/153
182 if (!$this->getDb()->isErrNo($e, '1050')) {
183 throw $e;
184 }
185 }
186 }
187 /**
188 * Drop database
189 */
190 public function dropDatabase($dbName = null)
191 {
192 $dbName = $dbName ?: $this->getDbName();
193 $dbName = str_replace('`', '', $dbName);
194 Db::exec("DROP DATABASE IF EXISTS `" . $dbName . "`");
195 }
196 /**
197 * Create all tables
198 */
199 public function createTables()
200 {
201 $db = $this->getDb();
202 $prefixTables = $this->getTablePrefix();
203 $tablesAlreadyInstalled = $this->getAllExistingTables($prefixTables);
204 $tablesToCreate = $this->getTablesCreateSql();
205 unset($tablesToCreate['archive_blob']);
206 unset($tablesToCreate['archive_numeric']);
207 foreach ($tablesToCreate as $tableName => $tableSql) {
208 $tableName = $prefixTables . $tableName;
209 if (!in_array($tableName, $tablesAlreadyInstalled)) {
210 $db->query($tableSql);
211 }
212 }
213 }
214 /**
215 * Creates an entry in the User table for the "anonymous" user.
216 */
217 public function createAnonymousUser()
218 {
219 $now = Date::factory('now')->getDatetime();
220 // The anonymous user is the user that is assigned by default
221 // note that the token_auth value is anonymous, which is assigned by default as well in the Login plugin
222 $db = $this->getDb();
223 $db->query("INSERT IGNORE INTO " . Common::prefixTable("user") . "\n (`login`, `password`, `email`, `twofactor_secret`, `superuser_access`, `date_registered`, `ts_password_modified`,\n `idchange_last_viewed`)\n VALUES ( 'anonymous', '', 'anonymous@example.org', '', 0, '{$now}', '{$now}' , NULL);");
224 $model = new Model();
225 $model->addTokenAuth('anonymous', 'anonymous', 'anonymous default token', $now);
226 }
227 /**
228 * Records the Matomo version a user used when installing this Matomo for the first time
229 */
230 public function recordInstallVersion()
231 {
232 if (!self::getInstallVersion()) {
233 Option::set(self::OPTION_NAME_MATOMO_INSTALL_VERSION, Version::VERSION);
234 }
235 }
236 /**
237 * Returns which Matomo version was used to install this Matomo for the first time.
238 */
239 public function getInstallVersion()
240 {
241 Option::clearCachedOption(self::OPTION_NAME_MATOMO_INSTALL_VERSION);
242 $version = Option::get(self::OPTION_NAME_MATOMO_INSTALL_VERSION);
243 if (!empty($version)) {
244 return $version;
245 }
246 }
247 /**
248 * Truncate all tables
249 */
250 public function truncateAllTables()
251 {
252 $tables = $this->getAllExistingTables();
253 foreach ($tables as $table) {
254 Db::query("TRUNCATE `{$table}`");
255 }
256 }
257 /**
258 * Adds a MAX_EXECUTION_TIME hint into a SELECT query if $limit is bigger than 0
259 *
260 * @param string $sql query to add hint to
261 * @param float $limit time limit in seconds
262 */
263 public function addMaxExecutionTimeHintToQuery(string $sql, float $limit) : string
264 {
265 if ($limit <= 0) {
266 return $sql;
267 }
268 $timeInMs = $limit * 1000;
269 $timeInMs = (int) $timeInMs;
270 return DbHelper::addOptimizerHintToQuery($sql, 'MAX_EXECUTION_TIME(' . $timeInMs . ')');
271 }
272 public function supportsComplexColumnUpdates() : bool
273 {
274 return \true;
275 }
276 /**
277 * Returns the default collation for a charset.
278 *
279 * Will return an empty string for an unknown charset
280 * (can happen for alias charsets like "utf8").
281 *
282 * @throws Exception
283 */
284 public function getDefaultCollationForCharset(string $charset) : string
285 {
286 $result = $this->getDb()->fetchRow('SHOW CHARACTER SET WHERE `Charset` = ?', [$charset]);
287 return $result['Default collation'] ?? '';
288 }
289 public function getDefaultPort() : int
290 {
291 return 3306;
292 }
293 public function getTableCreateOptions() : string
294 {
295 $engine = $this->getTableEngine();
296 $charset = $this->getUsedCharset();
297 $collation = $this->getUsedCollation();
298 $rowFormat = $this->getTableRowFormat();
299 $options = "ENGINE={$engine} DEFAULT CHARSET={$charset}";
300 if ('' !== $collation) {
301 $options .= " COLLATE={$collation}";
302 }
303 if ('' !== $rowFormat) {
304 $options .= " {$rowFormat}";
305 }
306 return $options;
307 }
308 public function optimizeTables(array $tables, bool $force = \false) : bool
309 {
310 $optimize = Config::getInstance()->General['enable_sql_optimize_queries'];
311 if (empty($optimize) && !$force) {
312 return \false;
313 }
314 if (empty($tables)) {
315 return \false;
316 }
317 if (!$this->isOptimizeInnoDBSupported() && !$force) {
318 // filter out all InnoDB tables
319 $myisamDbTables = array();
320 foreach ($this->getTableStatus() as $row) {
321 if (strtolower($row['Engine']) == 'myisam' && in_array($row['Name'], $tables)) {
322 $myisamDbTables[] = $row['Name'];
323 }
324 }
325 $tables = $myisamDbTables;
326 }
327 if (empty($tables)) {
328 return \false;
329 }
330 // optimize the tables
331 $success = \true;
332 foreach ($tables as &$t) {
333 $ok = Db::query('OPTIMIZE TABLE ' . $t);
334 if (!$ok) {
335 $success = \false;
336 }
337 }
338 return $success;
339 }
340 public function isOptimizeInnoDBSupported() : bool
341 {
342 $version = strtolower($this->getVersion());
343 // Note: This check for MariaDb is here on purpose, so it's working correctly for people
344 // having MySQL still configured, when using MariaDb
345 if (strpos($version, "mariadb") === \false) {
346 return \false;
347 }
348 $semanticVersion = strstr($version, '-', $beforeNeedle = \true);
349 return version_compare($semanticVersion, '10.1.1', '>=');
350 }
351 public function supportsRankingRollupWithoutExtraSorting() : bool
352 {
353 return \true;
354 }
355 public function supportsSortingInSubquery() : bool
356 {
357 return \true;
358 }
359 public function getSupportedReadIsolationTransactionLevel() : string
360 {
361 return 'READ UNCOMMITTED';
362 }
363 public function hasReachedEOL() : bool
364 {
365 $currentVersion = $this->getVersion();
366 // Aurora is managed by AWS and is updated automatically if EOL, therefor we can ignore that here
367 $auroraQuery = $this->getDb()->query('SHOW VARIABLES LIKE "aurora%"');
368 if ($this->getDb()->rowCount($auroraQuery) > 0) {
369 return \false;
370 }
371 // End of security update for certain MySQL versions as of https://en.wikipedia.org/wiki/MySQL#Release_history
372 // Support for 8.0 LTS ends in April 2026
373 if (version_compare($currentVersion, '8.0', '>=') && version_compare($currentVersion, '8.1', '<') && Date::today()->isEarlier(Date::factory('2026-05-01'))) {
374 return \false;
375 }
376 // Support for 8.4 LTS ends in April 2032
377 if (version_compare($currentVersion, '8.4', '>=') && version_compare($currentVersion, '8.5', '<') && Date::today()->isEarlier(Date::factory('2032-05-01'))) {
378 return \false;
379 }
380 // Support for all other versions prior to 9.3 (not covered by conditions above) already ended
381 if (version_compare($currentVersion, '9.3', '<')) {
382 return \true;
383 }
384 return \false;
385 }
386 protected function getDatabaseCreateOptions() : string
387 {
388 $charset = DbHelper::getDefaultCharset();
389 $collation = $this->getDefaultCollationForCharset($charset);
390 $options = "DEFAULT CHARACTER SET {$charset}";
391 if ('' !== $collation) {
392 $options .= " COLLATE {$collation}";
393 }
394 return $options;
395 }
396 protected function getTableEngine()
397 {
398 return $this->getDbSettings()->getEngine();
399 }
400 protected function getTableRowFormat() : string
401 {
402 return $this->getDbSettings()->getRowFormat();
403 }
404 protected function getUsedCharset() : string
405 {
406 return $this->getDbSettings()->getUsedCharset();
407 }
408 protected function getUsedCollation() : string
409 {
410 return $this->getDbSettings()->getUsedCollation();
411 }
412 private function getTablePrefix()
413 {
414 return $this->getDbSettings()->getTablePrefix();
415 }
416 public function getVersion() : string
417 {
418 return Db::fetchOne("SELECT VERSION()");
419 }
420 protected function getTableStatus()
421 {
422 return Db::fetchAll("SHOW TABLE STATUS");
423 }
424 private function getDb()
425 {
426 return Db::get();
427 }
428 private function getDbSettings()
429 {
430 return new Db\Settings();
431 }
432 private function getDbName()
433 {
434 return $this->getDbSettings()->getDbName();
435 }
436 private function getAllExistingTables($prefixTables = \false)
437 {
438 if (empty($prefixTables)) {
439 $prefixTables = $this->getTablePrefixEscaped();
440 }
441 return Db::get()->fetchCol("SHOW TABLES LIKE '" . $prefixTables . "%'");
442 }
443 private function getTablePrefixEscaped()
444 {
445 $prefixTables = $this->getTablePrefix();
446 // '_' matches any character; force it to be literal
447 $prefixTables = str_replace('_', '\\_', $prefixTables);
448 return $prefixTables;
449 }
450 }
451