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