Merge pull request #14698 from civicrm/5.15
[civicrm-core.git] / CRM / Logging / Schema.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2019
32 */
33 class CRM_Logging_Schema {
34
35 /**
36 * Default storage engine for log tables
37 *
38 * @var string
39 */
40 const ENGINE = 'InnoDB';
41
42 private $logs = [];
43 private $tables = [];
44
45 private $db;
46 private $useDBPrefix = TRUE;
47
48 private $reports = [
49 'logging/contact/detail',
50 'logging/contact/summary',
51 'logging/contribute/detail',
52 'logging/contribute/summary',
53 ];
54
55 /**
56 * Columns that should never be subject to logging.
57 *
58 * CRM-13028 / NYSS-6933 - table => array (cols) - to be excluded from the update statement
59 *
60 * @var array
61 */
62 private $exceptions = [
63 'civicrm_job' => ['last_run'],
64 'civicrm_group' => ['cache_date', 'refresh_date'],
65 ];
66
67 /**
68 * Specifications of all log table including
69 * - engine (default is InnoDB, if not set.)
70 * - engine_config, a string appended to the engine type.
71 * For INNODB space can be saved with 'ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=4'
72 * - indexes (default is none and they cannot be added unless engine is innodb. If they are added and
73 * engine is not set to innodb an exception will be thrown since quiet acquiescence is easier to miss).
74 * - exceptions (by default those stored in $this->exceptions are included). These are
75 * excluded from the triggers.
76 *
77 * @var array
78 */
79 private $logTableSpec = [];
80
81 /**
82 * Setting Callback - Validate.
83 *
84 * @param mixed $value
85 * @param array $fieldSpec
86 *
87 * @return bool
88 * @throws API_Exception
89 */
90 public static function checkLoggingSupport(&$value, $fieldSpec) {
91 $domain = new CRM_Core_DAO_Domain();
92 $domain->find(TRUE);
93 if (!(CRM_Core_DAO::checkTriggerViewPermission(FALSE)) && $value) {
94 throw new API_Exception("In order to use this functionality, the installation's database user must have privileges to create triggers (in MySQL 5.0 – and in MySQL 5.1 if binary logging is enabled – this means the SUPER privilege). This install either does not seem to have the required privilege enabled.");
95 }
96 return TRUE;
97 }
98
99 /**
100 * Setting Callback - On Change.
101 *
102 * Respond to changes in the "logging" setting. Set up or destroy
103 * triggers, etal.
104 *
105 * @param array $oldValue
106 * List of component names.
107 * @param array $newValue
108 * List of component names.
109 * @param array $metadata
110 * Specification of the setting (per *.settings.php).
111 */
112 public static function onToggle($oldValue, $newValue, $metadata) {
113 if ($oldValue == $newValue) {
114 return;
115 }
116
117 $logging = new CRM_Logging_Schema();
118 if ($newValue) {
119 $logging->enableLogging();
120 }
121 else {
122 $logging->disableLogging();
123 }
124 }
125
126 /**
127 * Populate $this->tables and $this->logs with current db state.
128 */
129 public function __construct() {
130 $dao = new CRM_Contact_DAO_Contact();
131 $civiDBName = $dao->_database;
132
133 $dao = CRM_Core_DAO::executeQuery("
134 SELECT TABLE_NAME
135 FROM INFORMATION_SCHEMA.TABLES
136 WHERE TABLE_SCHEMA = '{$civiDBName}'
137 AND TABLE_TYPE = 'BASE TABLE'
138 AND TABLE_NAME LIKE 'civicrm_%'
139 ");
140 while ($dao->fetch()) {
141 $this->tables[] = $dao->TABLE_NAME;
142 }
143
144 // do not log temp import, cache, menu and log tables
145 $this->tables = preg_grep('/^civicrm_import_job_/', $this->tables, PREG_GREP_INVERT);
146 $this->tables = preg_grep('/_cache$/', $this->tables, PREG_GREP_INVERT);
147 $this->tables = preg_grep('/_log/', $this->tables, PREG_GREP_INVERT);
148 $this->tables = preg_grep('/^civicrm_queue_/', $this->tables, PREG_GREP_INVERT);
149 //CRM-14672
150 $this->tables = preg_grep('/^civicrm_menu/', $this->tables, PREG_GREP_INVERT);
151 $this->tables = preg_grep('/_temp_/', $this->tables, PREG_GREP_INVERT);
152 // CRM-18178
153 $this->tables = preg_grep('/_bak$/', $this->tables, PREG_GREP_INVERT);
154 $this->tables = preg_grep('/_backup$/', $this->tables, PREG_GREP_INVERT);
155 // dev/core#462
156 $this->tables = preg_grep('/^civicrm_tmp_/', $this->tables, PREG_GREP_INVERT);
157
158 // do not log civicrm_mailing_event* tables, CRM-12300
159 $this->tables = preg_grep('/^civicrm_mailing_event_/', $this->tables, PREG_GREP_INVERT);
160
161 // do not log civicrm_mailing_recipients table, CRM-16193
162 $this->tables = array_diff($this->tables, ['civicrm_mailing_recipients']);
163 $this->logTableSpec = array_fill_keys($this->tables, []);
164 foreach ($this->exceptions as $tableName => $fields) {
165 $this->logTableSpec[$tableName]['exceptions'] = $fields;
166 }
167 CRM_Utils_Hook::alterLogTables($this->logTableSpec);
168 $this->tables = array_keys($this->logTableSpec);
169 $nonStandardTableNameString = $this->getNonStandardTableNameFilterString();
170
171 if (defined('CIVICRM_LOGGING_DSN')) {
172 $dsn = DB::parseDSN(CIVICRM_LOGGING_DSN);
173 $this->useDBPrefix = (CIVICRM_LOGGING_DSN != CIVICRM_DSN);
174 }
175 else {
176 $dsn = DB::parseDSN(CIVICRM_DSN);
177 $this->useDBPrefix = FALSE;
178 }
179 $this->db = $dsn['database'];
180
181 $dao = CRM_Core_DAO::executeQuery("
182 SELECT TABLE_NAME
183 FROM INFORMATION_SCHEMA.TABLES
184 WHERE TABLE_SCHEMA = '{$this->db}'
185 AND TABLE_TYPE = 'BASE TABLE'
186 AND (TABLE_NAME LIKE 'log_civicrm_%' $nonStandardTableNameString )
187 ");
188 while ($dao->fetch()) {
189 $log = $dao->TABLE_NAME;
190 $this->logs[substr($log, 4)] = $log;
191 }
192 }
193
194 /**
195 * Return logging custom data tables.
196 */
197 public function customDataLogTables() {
198 return preg_grep('/^log_civicrm_value_/', $this->logs);
199 }
200
201 /**
202 * Return custom data tables for specified entity / extends.
203 *
204 * @param string $extends
205 *
206 * @return array
207 */
208 public function entityCustomDataLogTables($extends) {
209 $customGroupTables = [];
210 $customGroupDAO = CRM_Core_BAO_CustomGroup::getAllCustomGroupsByBaseEntity($extends);
211 $customGroupDAO->find();
212 while ($customGroupDAO->fetch()) {
213 // logging is disabled for the table (e.g by hook) then $this->logs[$customGroupDAO->table_name]
214 // will be empty.
215 if (!empty($this->logs[$customGroupDAO->table_name])) {
216 $customGroupTables[$customGroupDAO->table_name] = $this->logs[$customGroupDAO->table_name];
217 }
218 }
219 return $customGroupTables;
220 }
221
222 /**
223 * Disable logging by dropping the triggers (but keep the log tables intact).
224 */
225 public function disableLogging() {
226 $config = CRM_Core_Config::singleton();
227 $config->logging = FALSE;
228
229 $this->dropTriggers();
230
231 // invoke the meta trigger creation call
232 CRM_Core_DAO::triggerRebuild();
233
234 $this->deleteReports();
235 }
236
237 /**
238 * Drop triggers for all logged tables.
239 *
240 * @param string $tableName
241 */
242 public function dropTriggers($tableName = NULL) {
243 /** @var \Civi\Core\SqlTriggers $sqlTriggers */
244 $sqlTriggers = Civi::service('sql_triggers');
245 $dao = new CRM_Core_DAO();
246
247 if ($tableName) {
248 $tableNames = [$tableName];
249 }
250 else {
251 $tableNames = $this->tables;
252 }
253
254 foreach ($tableNames as $table) {
255 $validName = CRM_Core_DAO::shortenSQLName($table, 48, TRUE);
256
257 // before triggers
258 $sqlTriggers->enqueueQuery("DROP TRIGGER IF EXISTS {$validName}_before_insert");
259 $sqlTriggers->enqueueQuery("DROP TRIGGER IF EXISTS {$validName}_before_update");
260 $sqlTriggers->enqueueQuery("DROP TRIGGER IF EXISTS {$validName}_before_delete");
261
262 // after triggers
263 $sqlTriggers->enqueueQuery("DROP TRIGGER IF EXISTS {$validName}_after_insert");
264 $sqlTriggers->enqueueQuery("DROP TRIGGER IF EXISTS {$validName}_after_update");
265 $sqlTriggers->enqueueQuery("DROP TRIGGER IF EXISTS {$validName}_after_delete");
266 }
267
268 // now lets also be safe and drop all triggers that start with
269 // civicrm_ if we are dropping all triggers
270 // we need to do this to capture all the leftover triggers since
271 // we did the shortening trigger name for CRM-11794
272 if ($tableName === NULL) {
273 $triggers = $dao->executeQuery("SHOW TRIGGERS LIKE 'civicrm_%'");
274
275 while ($triggers->fetch()) {
276 $sqlTriggers->enqueueQuery("DROP TRIGGER IF EXISTS {$triggers->Trigger}");
277 }
278 }
279 }
280
281 /**
282 * Enable site-wide logging.
283 */
284 public function enableLogging() {
285 $this->fixSchemaDifferences(TRUE);
286 $this->addReports();
287 }
288
289 /**
290 * Sync log tables and rebuild triggers.
291 *
292 * @param bool $enableLogging : Ensure logging is enabled
293 */
294 public function fixSchemaDifferences($enableLogging = FALSE) {
295 $config = CRM_Core_Config::singleton();
296 if ($enableLogging) {
297 $config->logging = TRUE;
298 }
299 if ($config->logging) {
300 $this->fixSchemaDifferencesForALL();
301 }
302 // invoke the meta trigger creation call
303 CRM_Core_DAO::triggerRebuild(NULL, TRUE);
304 }
305
306 /**
307 * Update log tables structure.
308 *
309 * This function updates log tables to have the log_conn_id type of varchar
310 * and also implements the engine change defined by the hook (i.e. INNODB).
311 *
312 * Note changing engine & adding hook-defined indexes, but not changing back
313 * to INNODB if engine has not been deliberately set (by hook) and not
314 * dropping indexes. Sysadmin will need to manually intervene to revert to
315 * defaults.
316 *
317 * @param array $params
318 * 'updateChangedEngineConfig' - update if the engine config changes?
319 * 'forceEngineMigration' - force engine upgrade from ARCHIVE to InnoDB?
320 *
321 * @return int $updateTablesCount
322 * @throws \CiviCRM_API3_Exception
323 */
324 public function updateLogTableSchema($params) {
325 $updateLogConn = FALSE;
326 $updatedTablesCount = 0;
327 foreach ($this->logs as $mainTable => $logTable) {
328 $alterSql = [];
329 $tableSpec = $this->logTableSpec[$mainTable];
330 $currentEngine = strtoupper($this->getEngineForLogTable($logTable));
331 if (!isset($tableSpec['engine']) && $currentEngine == 'ARCHIVE' && $params['forceEngineMigration']) {
332 // table uses ARCHIVE engine (the previous default) and no one set an
333 // alternative engine via hook_civicrm_alterLogTables => force change to
334 // new default
335 $tableSpec['engine'] = self::ENGINE;
336 }
337 $engineChanged = isset($tableSpec['engine']) && (strtoupper($tableSpec['engine']) != $currentEngine);
338 $engineConfigChanged = isset($tableSpec['engine_config']) && (strtoupper($tableSpec['engine_config']) != $this->getEngineConfigForLogTable($logTable));
339 if ($engineChanged || ($engineConfigChanged && $params['updateChangedEngineConfig'])) {
340 $alterSql[] = "ENGINE=" . $tableSpec['engine'] . " " . CRM_Utils_Array::value('engine_config', $tableSpec);
341 }
342 if (!empty($tableSpec['indexes'])) {
343 $indexes = $this->getIndexesForTable($logTable);
344 foreach ($tableSpec['indexes'] as $indexName => $indexSpec) {
345 if (!in_array($indexName, $indexes)) {
346 if (is_array($indexSpec)) {
347 $indexSpec = implode(" , ", $indexSpec);
348 }
349 $alterSql[] = "ADD INDEX {$indexName}($indexSpec)";
350 }
351 }
352 }
353 $columns = $this->columnSpecsOf($logTable);
354 if (empty($columns['log_conn_id'])) {
355 throw new Exception($logTable . print_r($columns, TRUE));
356 }
357 if ($columns['log_conn_id']['DATA_TYPE'] != 'varchar' || $columns['log_conn_id']['LENGTH'] != 17) {
358 $alterSql[] = "MODIFY log_conn_id VARCHAR(17)";
359 $updateLogConn = TRUE;
360 }
361 if (!empty($alterSql)) {
362 CRM_Core_DAO::executeQuery("ALTER TABLE {$this->db}.{$logTable} " . implode(', ', $alterSql), [], TRUE, NULL, FALSE, FALSE);
363 $updatedTablesCount++;
364 }
365 }
366 if ($updateLogConn) {
367 civicrm_api3('Setting', 'create', ['logging_uniqueid_date' => date('Y-m-d H:i:s')]);
368 }
369 return $updatedTablesCount;
370 }
371
372 /**
373 * Get the engine for the given table.
374 *
375 * @param string $table
376 *
377 * @return string
378 */
379 public function getEngineForLogTable($table) {
380 return strtoupper(CRM_Core_DAO::singleValueQuery("
381 SELECT ENGINE FROM information_schema.tables WHERE TABLE_NAME = %1
382 AND table_schema = %2
383 ", [1 => [$table, 'String'], 2 => [$this->db, 'String']]));
384 }
385
386 /**
387 * Get the engine config for the given table.
388 *
389 * @param string $table
390 *
391 * @return string
392 */
393 public function getEngineConfigForLogTable($table) {
394 return strtoupper(CRM_Core_DAO::singleValueQuery("
395 SELECT CREATE_OPTIONS FROM information_schema.tables WHERE TABLE_NAME = %1
396 AND table_schema = %2
397 ", [1 => [$table, 'String'], 2 => [$this->db, 'String']]));
398 }
399
400 /**
401 * Get all the indexes in the table.
402 *
403 * @param string $table
404 *
405 * @return array
406 */
407 public function getIndexesForTable($table) {
408 $indexes = [];
409 $result = CRM_Core_DAO::executeQuery("
410 SELECT constraint_name AS index_name
411 FROM information_schema.key_column_usage
412 WHERE table_schema = %2 AND table_name = %1
413 UNION
414 SELECT index_name AS index_name
415 FROM information_schema.statistics
416 WHERE table_schema = %2 AND table_name = %1
417 ",
418 [1 => [$table, 'String'], 2 => [$this->db, 'String']]
419 );
420 while ($result->fetch()) {
421 $indexes[] = $result->index_name;
422 }
423 return $indexes;
424 }
425
426 /**
427 * Add missing (potentially specified) log table columns for the given table.
428 *
429 * @param string $table
430 * name of the relevant table.
431 * @param array $cols
432 * Mixed array of columns to add or null (to check for the missing columns).
433 * @param bool $rebuildTrigger
434 * should we rebuild the triggers.
435 *
436 * @return bool
437 */
438 public function fixSchemaDifferencesFor($table, $cols = [], $rebuildTrigger = FALSE) {
439 if (empty($table)) {
440 return FALSE;
441 }
442 if (empty($this->logs[$table])) {
443 $this->createLogTableFor($table);
444 return TRUE;
445 }
446
447 if (empty($cols)) {
448 $cols = $this->columnsWithDiffSpecs($table, "log_$table");
449 }
450
451 // use the relevant lines from CREATE TABLE to add colums to the log table
452 $create = $this->_getCreateQuery($table);
453 foreach ((['ADD', 'MODIFY']) as $alterType) {
454 if (!empty($cols[$alterType])) {
455 foreach ($cols[$alterType] as $col) {
456 $line = $this->_getColumnQuery($col, $create);
457 CRM_Core_DAO::executeQuery("ALTER TABLE `{$this->db}`.log_$table {$alterType} {$line}", [], TRUE, NULL, FALSE, FALSE);
458 }
459 }
460 }
461
462 // for any obsolete columns (not null) we just make the column nullable.
463 if (!empty($cols['OBSOLETE'])) {
464 $create = $this->_getCreateQuery("`{$this->db}`.log_{$table}");
465 foreach ($cols['OBSOLETE'] as $col) {
466 $line = $this->_getColumnQuery($col, $create);
467 // This is just going to make a not null column to nullable
468 CRM_Core_DAO::executeQuery("ALTER TABLE `{$this->db}`.log_$table MODIFY {$line}", [], TRUE, NULL, FALSE, FALSE);
469 }
470 }
471
472 if ($rebuildTrigger) {
473 // invoke the meta trigger creation call
474 CRM_Core_DAO::triggerRebuild($table);
475 }
476 return TRUE;
477 }
478
479 /**
480 * Get query table.
481 *
482 * @param string $table
483 *
484 * @return array
485 */
486 private function _getCreateQuery($table) {
487 $dao = CRM_Core_DAO::executeQuery("SHOW CREATE TABLE {$table}", [], TRUE, NULL, FALSE, FALSE);
488 $dao->fetch();
489 $create = explode("\n", $dao->Create_Table);
490 return $create;
491 }
492
493 /**
494 * Get column query.
495 *
496 * @param string $col
497 * @param bool $createQuery
498 *
499 * @return array|mixed|string
500 */
501 private function _getColumnQuery($col, $createQuery) {
502 $line = preg_grep("/^ `$col` /", $createQuery);
503 $line = rtrim(array_pop($line), ',');
504 // CRM-11179
505 $line = self::fixTimeStampAndNotNullSQL($line);
506 return $line;
507 }
508
509 /**
510 * Fix schema differences.
511 *
512 * @param bool $rebuildTrigger
513 */
514 public function fixSchemaDifferencesForAll($rebuildTrigger = FALSE) {
515 $diffs = [];
516 foreach ($this->tables as $table) {
517 if (empty($this->logs[$table])) {
518 $this->createLogTableFor($table);
519 }
520 else {
521 $diffs[$table] = $this->columnsWithDiffSpecs($table, "log_$table");
522 }
523 }
524
525 foreach ($diffs as $table => $cols) {
526 $this->fixSchemaDifferencesFor($table, $cols, FALSE);
527 }
528 if ($rebuildTrigger) {
529 // invoke the meta trigger creation call
530 CRM_Core_DAO::triggerRebuild(NULL, TRUE);
531 }
532 }
533
534 /**
535 * Fix timestamp.
536 *
537 * Log_civicrm_contact.modified_date for example would always be copied from civicrm_contact.modified_date,
538 * so there's no need for a default timestamp and therefore we remove such default timestamps
539 * also eliminate the NOT NULL constraint, since we always copy and schema can change down the road)
540 *
541 * @param string $query
542 *
543 * @return mixed
544 */
545 public static function fixTimeStampAndNotNullSQL($query) {
546 $query = str_ireplace("TIMESTAMP() NOT NULL", "TIMESTAMP NULL", $query);
547 $query = str_ireplace("TIMESTAMP NOT NULL", "TIMESTAMP NULL", $query);
548 $query = str_ireplace("DEFAULT CURRENT_TIMESTAMP() ON UPDATE CURRENT_TIMESTAMP()", '', $query);
549 $query = str_ireplace("DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP", '', $query);
550 $query = str_ireplace("DEFAULT CURRENT_TIMESTAMP()", '', $query);
551 $query = str_ireplace("DEFAULT CURRENT_TIMESTAMP", '', $query);
552 $query = str_ireplace("NOT NULL", '', $query);
553 return $query;
554 }
555
556 /**
557 * Add reports.
558 */
559 private function addReports() {
560 $titles = [
561 'logging/contact/detail' => ts('Logging Details'),
562 'logging/contact/summary' => ts('Contact Logging Report (Summary)'),
563 'logging/contribute/detail' => ts('Contribution Logging Report (Detail)'),
564 'logging/contribute/summary' => ts('Contribution Logging Report (Summary)'),
565 ];
566 // enable logging templates
567 CRM_Core_DAO::executeQuery("
568 UPDATE civicrm_option_value
569 SET is_active = 1
570 WHERE value IN ('" . implode("', '", $this->reports) . "')
571 ");
572
573 // add report instances
574 $domain_id = CRM_Core_Config::domainID();
575 foreach ($this->reports as $report) {
576 $dao = new CRM_Report_DAO_ReportInstance();
577 $dao->domain_id = $domain_id;
578 $dao->report_id = $report;
579 $dao->title = $titles[$report];
580 $dao->permission = 'administer CiviCRM';
581 if ($report == 'logging/contact/summary') {
582 $dao->is_reserved = 1;
583 }
584 $dao->insert();
585 }
586 }
587
588 /**
589 * Get an array of column names of the given table.
590 *
591 * @param string $table
592 * @param bool $force
593 *
594 * @return array
595 */
596 private function columnsOf($table, $force = FALSE) {
597 if ($force || !isset(\Civi::$statics[__CLASS__]['columnsOf'][$table])) {
598 $from = (substr($table, 0, 4) == 'log_') ? "`{$this->db}`.$table" : $table;
599 CRM_Core_TemporaryErrorScope::ignoreException();
600 $dao = CRM_Core_DAO::executeQuery("SHOW COLUMNS FROM $from", [], TRUE, NULL, FALSE, FALSE);
601 if (is_a($dao, 'DB_Error')) {
602 return [];
603 }
604 \Civi::$statics[__CLASS__]['columnsOf'][$table] = [];
605 while ($dao->fetch()) {
606 \Civi::$statics[__CLASS__]['columnsOf'][$table][] = CRM_Utils_type::escape($dao->Field, 'MysqlColumnNameOrAlias');
607 }
608 }
609 return \Civi::$statics[__CLASS__]['columnsOf'][$table];
610 }
611
612 /**
613 * Get an array of columns and their details like DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT for the given table.
614 *
615 * @param string $table
616 *
617 * @return array
618 */
619 private function columnSpecsOf($table) {
620 static $civiDB = NULL;
621 if (empty(\Civi::$statics[__CLASS__]['columnSpecs'])) {
622 \Civi::$statics[__CLASS__]['columnSpecs'] = [];
623 }
624 if (empty(\Civi::$statics[__CLASS__]['columnSpecs']) || !isset(\Civi::$statics[__CLASS__]['columnSpecs'][$table])) {
625 if (!$civiDB) {
626 $dao = new CRM_Contact_DAO_Contact();
627 $civiDB = $dao->_database;
628 }
629 CRM_Core_TemporaryErrorScope::ignoreException();
630 // NOTE: W.r.t Performance using one query to find all details and storing in static array is much faster
631 // than firing query for every given table.
632 $query = "
633 SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT, COLUMN_TYPE, EXTRA
634 FROM INFORMATION_SCHEMA.COLUMNS
635 WHERE table_schema IN ('{$this->db}', '{$civiDB}')";
636 $dao = CRM_Core_DAO::executeQuery($query);
637 if (is_a($dao, 'DB_Error')) {
638 return [];
639 }
640 while ($dao->fetch()) {
641 if (!array_key_exists($dao->TABLE_NAME, \Civi::$statics[__CLASS__]['columnSpecs'])) {
642 \Civi::$statics[__CLASS__]['columnSpecs'][$dao->TABLE_NAME] = [];
643 }
644 \Civi::$statics[__CLASS__]['columnSpecs'][$dao->TABLE_NAME][$dao->COLUMN_NAME] = [
645 'COLUMN_NAME' => $dao->COLUMN_NAME,
646 'DATA_TYPE' => $dao->DATA_TYPE,
647 'IS_NULLABLE' => $dao->IS_NULLABLE,
648 'COLUMN_DEFAULT' => $dao->COLUMN_DEFAULT,
649 'EXTRA' => $dao->EXTRA,
650 ];
651 if (($first = strpos($dao->COLUMN_TYPE, '(')) != 0) {
652 // this extracts the value between parentheses after the column type.
653 // it could be the column length, i.e. "int(8)", "decimal(20,2)")
654 // or the permitted values of an enum (e.g. "enum('A','B')")
655 $parValue = substr(
656 $dao->COLUMN_TYPE, $first + 1, strpos($dao->COLUMN_TYPE, ')') - $first - 1
657 );
658 if (strpos($parValue, "'") === FALSE) {
659 // no quote in value means column length
660 \Civi::$statics[__CLASS__]['columnSpecs'][$dao->TABLE_NAME][$dao->COLUMN_NAME]['LENGTH'] = $parValue;
661 }
662 else {
663 // single quote means enum permitted values
664 \Civi::$statics[__CLASS__]['columnSpecs'][$dao->TABLE_NAME][$dao->COLUMN_NAME]['ENUM_VALUES'] = $parValue;
665 }
666 }
667 }
668 }
669 return \Civi::$statics[__CLASS__]['columnSpecs'][$table];
670 }
671
672 /**
673 * Get columns that have changed.
674 *
675 * @param string $civiTable
676 * @param string $logTable
677 *
678 * @return array
679 */
680 public function columnsWithDiffSpecs($civiTable, $logTable) {
681 $civiTableSpecs = $this->columnSpecsOf($civiTable);
682 $logTableSpecs = $this->columnSpecsOf($logTable);
683
684 $diff = ['ADD' => [], 'MODIFY' => [], 'OBSOLETE' => []];
685 // columns to be added
686 $diff['ADD'] = array_diff(array_keys($civiTableSpecs), array_keys($logTableSpecs));
687 // columns to be modified
688 // NOTE: we consider only those columns for modifications where there is a spec change, and that the column definition
689 // wasn't deliberately modified by fixTimeStampAndNotNullSQL() method.
690 foreach ($civiTableSpecs as $col => $colSpecs) {
691 if (!isset($logTableSpecs[$col]) || !is_array($logTableSpecs[$col])) {
692 $logTableSpecs[$col] = [];
693 }
694 $specDiff = array_diff($civiTableSpecs[$col], $logTableSpecs[$col]);
695 if (!empty($specDiff) && $col != 'id' && !in_array($col, $diff['ADD'])) {
696 if (empty($colSpecs['EXTRA']) || (!empty($colSpecs['EXTRA']) && $colSpecs['EXTRA'] !== 'auto_increment')) {
697 // ignore 'id' column for any spec changes, to avoid any auto-increment mysql errors
698 if ($civiTableSpecs[$col]['DATA_TYPE'] != CRM_Utils_Array::value('DATA_TYPE', $logTableSpecs[$col])
699 // We won't alter the log if the length is decreased in case some of the existing data won't fit.
700 || CRM_Utils_Array::value('LENGTH', $civiTableSpecs[$col]) > CRM_Utils_Array::value('LENGTH', $logTableSpecs[$col])
701 ) {
702 // if data-type is different, surely consider the column
703 $diff['MODIFY'][] = $col;
704 }
705 elseif ($civiTableSpecs[$col]['DATA_TYPE'] == 'enum' &&
706 CRM_Utils_Array::value('ENUM_VALUES', $civiTableSpecs[$col]) != CRM_Utils_Array::value('ENUM_VALUES', $logTableSpecs[$col])
707 ) {
708 // column is enum and the permitted values have changed
709 $diff['MODIFY'][] = $col;
710 }
711 elseif ($civiTableSpecs[$col]['IS_NULLABLE'] != CRM_Utils_Array::value('IS_NULLABLE', $logTableSpecs[$col]) &&
712 $logTableSpecs[$col]['IS_NULLABLE'] == 'NO'
713 ) {
714 // if is-null property is different, and log table's column is NOT-NULL, surely consider the column
715 $diff['MODIFY'][] = $col;
716 }
717 elseif ($civiTableSpecs[$col]['COLUMN_DEFAULT'] != CRM_Utils_Array::value('COLUMN_DEFAULT', $logTableSpecs[$col]) &&
718 !strstr($civiTableSpecs[$col]['COLUMN_DEFAULT'], 'TIMESTAMP')
719 ) {
720 // if default property is different, and its not about a timestamp column, consider it
721 $diff['MODIFY'][] = $col;
722 }
723 }
724 }
725 }
726
727 // columns to made obsolete by turning into not-null
728 $oldCols = array_diff(array_keys($logTableSpecs), array_keys($civiTableSpecs));
729 foreach ($oldCols as $col) {
730 if (!in_array($col, ['log_date', 'log_conn_id', 'log_user_id', 'log_action']) &&
731 $logTableSpecs[$col]['IS_NULLABLE'] == 'NO'
732 ) {
733 // if its a column present only in log table, not among those used by log tables for special purpose, and not-null
734 $diff['OBSOLETE'][] = $col;
735 }
736 }
737
738 return $diff;
739 }
740
741 /**
742 * Getter for logTableSpec.
743 *
744 * @return array
745 */
746 public function getLogTableSpec() {
747 return $this->logTableSpec;
748 }
749
750 /**
751 * Create a log table with schema mirroring the given table’s structure and seeding it with the given table’s contents.
752 *
753 * @param string $table
754 */
755 private function createLogTableFor($table) {
756 $dao = CRM_Core_DAO::executeQuery("SHOW CREATE TABLE $table", [], TRUE, NULL, FALSE, FALSE);
757 $dao->fetch();
758 $query = $dao->Create_Table;
759
760 // rewrite the queries into CREATE TABLE queries for log tables:
761 $cols = <<<COLS
762 ,
763 log_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
764 log_conn_id VARCHAR(17),
765 log_user_id INTEGER,
766 log_action ENUM('Initialization', 'Insert', 'Update', 'Delete')
767 COLS;
768
769 if (!empty($this->logTableSpec[$table]['indexes'])) {
770 foreach ($this->logTableSpec[$table]['indexes'] as $indexName => $indexSpec) {
771 if (is_array($indexSpec)) {
772 $indexSpec = implode(" , ", $indexSpec);
773 }
774 $cols .= ", INDEX {$indexName}($indexSpec)";
775 }
776 }
777
778 // - prepend the name with log_
779 // - drop AUTO_INCREMENT columns
780 // - drop non-column rows of the query (keys, constraints, etc.)
781 // - set the ENGINE to the specified engine (default is INNODB)
782 // - add log-specific columns (at the end of the table)
783 $mysqlEngines = [];
784 $engines = CRM_Core_DAO::executeQuery("SHOW ENGINES");
785 while ($engines->fetch()) {
786 if ($engines->Support == 'YES' || $engines->Support == 'DEFAULT') {
787 $mysqlEngines[] = $engines->Engine;
788 }
789 }
790 $query = preg_replace("/^CREATE TABLE `$table`/i", "CREATE TABLE `{$this->db}`.log_$table", $query);
791 $query = preg_replace("/ AUTO_INCREMENT/i", '', $query);
792 $query = preg_replace("/^ [^`].*$/m", '', $query);
793 $engine = strtoupper(CRM_Utils_Array::value('engine', $this->logTableSpec[$table], self::ENGINE));
794 $engine .= " " . CRM_Utils_Array::value('engine_config', $this->logTableSpec[$table]);
795 $query = preg_replace("/^\) ENGINE=[^ ]+ /im", ') ENGINE=' . $engine . ' ', $query);
796
797 // log_civicrm_contact.modified_date for example would always be copied from civicrm_contact.modified_date,
798 // so there's no need for a default timestamp and therefore we remove such default timestamps
799 // also eliminate the NOT NULL constraint, since we always copy and schema can change down the road)
800 $query = self::fixTimeStampAndNotNullSQL($query);
801 $query = preg_replace("/(,*\n*\) )ENGINE/m", "$cols\n) ENGINE", $query);
802
803 CRM_Core_DAO::executeQuery($query, [], TRUE, NULL, FALSE, FALSE);
804
805 $columns = implode(', ', $this->columnsOf($table));
806 CRM_Core_DAO::executeQuery("INSERT INTO `{$this->db}`.log_$table ($columns, log_conn_id, log_user_id, log_action) SELECT $columns, @uniqueID, @civicrm_user_id, 'Initialization' FROM {$table}", [], TRUE, NULL, FALSE, FALSE);
807
808 $this->tables[] = $table;
809 if (empty($this->logs)) {
810 civicrm_api3('Setting', 'create', ['logging_uniqueid_date' => date('Y-m-d H:i:s')]);
811 civicrm_api3('Setting', 'create', ['logging_all_tables_uniquid' => 1]);
812 }
813 $this->logs[$table] = "log_$table";
814 }
815
816 /**
817 * Delete reports.
818 */
819 private function deleteReports() {
820 // disable logging templates
821 CRM_Core_DAO::executeQuery("
822 UPDATE civicrm_option_value
823 SET is_active = 0
824 WHERE value IN ('" . implode("', '", $this->reports) . "')
825 ");
826
827 // delete report instances
828 $domain_id = CRM_Core_Config::domainID();
829 foreach ($this->reports as $report) {
830 $dao = new CRM_Report_DAO_ReportInstance();
831 $dao->domain_id = $domain_id;
832 $dao->report_id = $report;
833 $dao->delete();
834 }
835 }
836
837 /**
838 * Predicate whether logging is enabled.
839 */
840 public function isEnabled() {
841 if (\Civi::settings()->get('logging')) {
842 return ($this->tablesExist() && (\Civi::settings()->get('logging_no_trigger_permission') || $this->triggersExist()));
843 }
844 return FALSE;
845 }
846
847 /**
848 * Predicate whether any log tables exist.
849 */
850 private function tablesExist() {
851 return !empty($this->logs);
852 }
853
854 /**
855 * Drop all log tables.
856 *
857 * This does not currently have a usage outside the tests.
858 */
859 public function dropAllLogTables() {
860 if ($this->tablesExist()) {
861 foreach ($this->logs as $log_table) {
862 CRM_Core_DAO::executeQuery("DROP TABLE $log_table");
863 }
864 }
865 }
866
867 /**
868 * Get an sql clause to find the names of any log tables that do not match the normal pattern.
869 *
870 * Most tables are civicrm_xxx with the log table being log_civicrm_xxx
871 * However, they don't have to match this pattern (e.g when defined by hook) so find the
872 * anomalies and return a filter string to include them.
873 *
874 * @return string
875 */
876 public function getNonStandardTableNameFilterString() {
877 $nonStandardTableNames = preg_grep('/^civicrm_/', $this->tables, PREG_GREP_INVERT);
878 if (empty($nonStandardTableNames)) {
879 return '';
880 }
881 $nonStandardTableLogs = [];
882 foreach ($nonStandardTableNames as $nonStandardTableName) {
883 $nonStandardTableLogs[] = "'log_{$nonStandardTableName}'";
884 }
885 return " OR TABLE_NAME IN (" . implode(',', $nonStandardTableLogs) . ")";
886 }
887
888 /**
889 * Predicate whether the logging triggers are in place.
890 */
891 private function triggersExist() {
892 // FIXME: probably should be a bit more thorough…
893 // note that the LIKE parameter is TABLE NAME
894 return (bool) CRM_Core_DAO::singleValueQuery("SHOW TRIGGERS LIKE 'civicrm_contact'");
895 }
896
897 /**
898 * Get trigger info.
899 *
900 * @param array $info
901 * @param null $tableName
902 * @param bool $force
903 */
904 public function triggerInfo(&$info, $tableName = NULL, $force = FALSE) {
905 if (!CRM_Core_Config::singleton()->logging) {
906 return;
907 }
908
909 $insert = ['INSERT'];
910 $update = ['UPDATE'];
911 $delete = ['DELETE'];
912
913 if ($tableName) {
914 $tableNames = [$tableName];
915 }
916 else {
917 $tableNames = $this->tables;
918 }
919
920 // logging is enabled, so now lets create the trigger info tables
921 foreach ($tableNames as $table) {
922 $columns = $this->columnsOf($table, $force);
923
924 // only do the change if any data has changed
925 $cond = [];
926 foreach ($columns as $column) {
927 $tableExceptions = array_key_exists('exceptions', $this->logTableSpec[$table]) ? $this->logTableSpec[$table]['exceptions'] : [];
928 // ignore modified_date changes
929 $tableExceptions[] = 'modified_date';
930 // exceptions may be provided with or without backticks
931 $excludeColumn = in_array($column, $tableExceptions) ||
932 in_array(str_replace('`', '', $column), $tableExceptions);
933 if (!$excludeColumn) {
934 $cond[] = "IFNULL(OLD.$column,'') <> IFNULL(NEW.$column,'')";
935 }
936 }
937 $suppressLoggingCond = "@civicrm_disable_logging IS NULL OR @civicrm_disable_logging = 0";
938 $updateSQL = "IF ( (" . implode(' OR ', $cond) . ") AND ( $suppressLoggingCond ) ) THEN ";
939
940 if ($this->useDBPrefix) {
941 $sqlStmt = "INSERT INTO `{$this->db}`.log_{tableName} (";
942 }
943 else {
944 $sqlStmt = "INSERT INTO log_{tableName} (";
945 }
946 foreach ($columns as $column) {
947 $sqlStmt .= "$column, ";
948 }
949 $sqlStmt .= "log_conn_id, log_user_id, log_action) VALUES (";
950
951 $insertSQL = $deleteSQL = "IF ( $suppressLoggingCond ) THEN $sqlStmt ";
952 $updateSQL .= $sqlStmt;
953
954 $sqlStmt = '';
955 foreach ($columns as $column) {
956 $sqlStmt .= "NEW.$column, ";
957 $deleteSQL .= "OLD.$column, ";
958 }
959 if (civicrm_api3('Setting', 'getvalue', ['name' => 'logging_uniqueid_date'])) {
960 // Note that when connecting directly via mysql @uniqueID may not be set so a fallback is
961 // 'c_' to identify a non-CRM connection + timestamp to the hour + connection_id
962 // If the connection_id is longer than 6 chars it will be truncated.
963 // We tried setting the @uniqueID in the trigger but it was unreliable.
964 // An external interaction could split over 2 connections & it seems worth blocking the revert on
965 // these reports & adding extra permissioning to the api for this.
966 $connectionSQLString = "COALESCE(@uniqueID, LEFT(CONCAT('c_', unix_timestamp()/3600, CONNECTION_ID()), 17))";
967 }
968 else {
969 // The log tables have not yet been converted to have varchar(17) fields for log_conn_id.
970 // Continue to use the less reliable connection_id for al tables for now.
971 $connectionSQLString = "CONNECTION_ID()";
972 }
973 $sqlStmt .= $connectionSQLString . ", @civicrm_user_id, '{eventName}'); END IF;";
974 $deleteSQL .= $connectionSQLString . ", @civicrm_user_id, '{eventName}'); END IF;";
975
976 $insertSQL .= $sqlStmt;
977 $updateSQL .= $sqlStmt;
978
979 $info[] = [
980 'table' => [$table],
981 'when' => 'AFTER',
982 'event' => $insert,
983 'sql' => $insertSQL,
984 ];
985
986 $info[] = [
987 'table' => [$table],
988 'when' => 'AFTER',
989 'event' => $update,
990 'sql' => $updateSQL,
991 ];
992
993 $info[] = [
994 'table' => [$table],
995 'when' => 'AFTER',
996 'event' => $delete,
997 'sql' => $deleteSQL,
998 ];
999 }
1000 }
1001
1002 /**
1003 * Disable logging temporarily.
1004 *
1005 * This allow logging to be temporarily disabled for certain cases
1006 * where we want to do a mass cleanup but do not want to bother with
1007 * an audit trail.
1008 */
1009 public static function disableLoggingForThisConnection() {
1010 if (CRM_Core_Config::singleton()->logging) {
1011 CRM_Core_DAO::executeQuery('SET @civicrm_disable_logging = 1');
1012 }
1013 }
1014
1015 /**
1016 * Get all the log tables that reference civicrm_contact.
1017 *
1018 * Note that it might make sense to wrap this in a getLogTablesForEntity
1019 * but this is the only entity currently available...
1020 */
1021 public function getLogTablesForContact() {
1022 $tables = array_keys(CRM_Core_DAO::getReferencesToContactTable());
1023 return array_intersect($tables, $this->tables);
1024 }
1025
1026 /**
1027 * Retrieve missing log tables.
1028 *
1029 * @return array
1030 */
1031 public function getMissingLogTables() {
1032 if ($this->tablesExist()) {
1033 return array_diff($this->tables, array_keys($this->logs));
1034 }
1035 return [];
1036 }
1037
1038 }