Error handling - Replace calls to CRM_Core_Error::ignoreException with CRM_Core_Tempo...
[civicrm-core.git] / CRM / Logging / Schema.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35class CRM_Logging_Schema {
36 private $logs = array();
37 private $tables = array();
38
39 private $db;
340f6aa0 40 private $useDBPrefix = TRUE;
6a488035
TO
41
42 private $reports = array(
43 'logging/contact/detail',
44 'logging/contact/summary',
45 'logging/contribute/detail',
46 'logging/contribute/summary',
47 );
48
6842bb53 49 //CRM-13028 / NYSS-6933 - table => array (cols) - to be excluded from the update statement
4d1040bb
DS
50 private $exceptions = array(
51 'civicrm_job' => array('last_run'),
52 'civicrm_group' => array('cache_date'),
6842bb53 53 );
4d1040bb 54
6a488035
TO
55 /**
56 * Populate $this->tables and $this->logs with current db state.
57 */
58 function __construct() {
59 $dao = new CRM_Contact_DAO_Contact();
60 $civiDBName = $dao->_database;
61
62 $dao = CRM_Core_DAO::executeQuery("
63SELECT TABLE_NAME
64FROM INFORMATION_SCHEMA.TABLES
65WHERE TABLE_SCHEMA = '{$civiDBName}'
66AND TABLE_TYPE = 'BASE TABLE'
67AND TABLE_NAME LIKE 'civicrm_%'
68");
69 while ($dao->fetch()) {
70 $this->tables[] = $dao->TABLE_NAME;
71 }
72
73 // do not log temp import, cache and log tables
74 $this->tables = preg_grep('/^civicrm_import_job_/', $this->tables, PREG_GREP_INVERT);
75 $this->tables = preg_grep('/_cache$/', $this->tables, PREG_GREP_INVERT);
76 $this->tables = preg_grep('/_log/', $this->tables, PREG_GREP_INVERT);
77 $this->tables = preg_grep('/^civicrm_task_action_temp_/', $this->tables, PREG_GREP_INVERT);
78 $this->tables = preg_grep('/^civicrm_export_temp_/', $this->tables, PREG_GREP_INVERT);
79 $this->tables = preg_grep('/^civicrm_queue_/', $this->tables, PREG_GREP_INVERT);
80
f9b793b0
DL
81 // do not log civicrm_mailing_event* tables, CRM-12300
82 $this->tables = preg_grep('/^civicrm_mailing_event_/', $this->tables, PREG_GREP_INVERT);
83
340f6aa0
DL
84 if (defined('CIVICRM_LOGGING_DSN')) {
85 $dsn = DB::parseDSN(CIVICRM_LOGGING_DSN);
86 $this->useDBPrefix = (CIVICRM_LOGGING_DSN != CIVICRM_DSN);
87 }
88 else {
89 $dsn = DB::parseDSN(CIVICRM_DSN);
90 $this->useDBPrefix = FALSE;
91 }
6a488035
TO
92 $this->db = $dsn['database'];
93
94 $dao = CRM_Core_DAO::executeQuery("
95SELECT TABLE_NAME
96FROM INFORMATION_SCHEMA.TABLES
97WHERE TABLE_SCHEMA = '{$this->db}'
98AND TABLE_TYPE = 'BASE TABLE'
99AND TABLE_NAME LIKE 'log_civicrm_%'
100");
101 while ($dao->fetch()) {
102 $log = $dao->TABLE_NAME;
103 $this->logs[substr($log, 4)] = $log;
104 }
105 }
106
107 /**
108 * Return logging custom data tables.
109 */
110 function customDataLogTables() {
111 return preg_grep('/^log_civicrm_value_/', $this->logs);
112 }
113
694e78fd
DS
114 /**
115 * Return custom data tables for specified entity / extends.
116 */
117 function entityCustomDataLogTables($extends) {
118 $customGroupTables = array();
119 $customGroupDAO = CRM_Core_BAO_CustomGroup::getAllCustomGroupsByBaseEntity($extends);
120 $customGroupDAO->find();
121 while ($customGroupDAO->fetch()) {
122 $customGroupTables[$customGroupDAO->table_name] = $this->logs[$customGroupDAO->table_name];
123 }
124 return $customGroupTables;
125 }
126
6a488035
TO
127 /**
128 * Disable logging by dropping the triggers (but keep the log tables intact).
129 */
130 function disableLogging() {
131 $config = CRM_Core_Config::singleton();
132 $config->logging = FALSE;
133
134 $this->dropTriggers();
135
136 // invoke the meta trigger creation call
137 CRM_Core_DAO::triggerRebuild();
138
139 $this->deleteReports();
140 }
141
142 /**
143 * Drop triggers for all logged tables.
144 */
145 function dropTriggers($tableName = NULL) {
146 $dao = new CRM_Core_DAO;
147
148 if ($tableName) {
149 $tableNames = array($tableName);
150 }
151 else {
152 $tableNames = $this->tables;
153 }
154
155 foreach ($tableNames as $table) {
6842bb53
DL
156 $validName = CRM_Core_DAO::shortenSQLName($table, 48, TRUE);
157
6a488035 158 // before triggers
6842bb53
DL
159 $dao->executeQuery("DROP TRIGGER IF EXISTS {$validName}_before_insert");
160 $dao->executeQuery("DROP TRIGGER IF EXISTS {$validName}_before_update");
161 $dao->executeQuery("DROP TRIGGER IF EXISTS {$validName}_before_delete");
6a488035
TO
162
163 // after triggers
6842bb53
DL
164 $dao->executeQuery("DROP TRIGGER IF EXISTS {$validName}_after_insert");
165 $dao->executeQuery("DROP TRIGGER IF EXISTS {$validName}_after_update");
166 $dao->executeQuery("DROP TRIGGER IF EXISTS {$validName}_after_delete");
6a488035 167 }
a8dd306e
DL
168
169 // now lets also be safe and drop all triggers that start with
170 // civicrm_ if we are dropping all triggers
171 // we need to do this to capture all the leftover triggers since
172 // we did the shortening trigger name for CRM-11794
173 if ($tableName === NULL) {
174 $triggers = $dao->executeQuery("SHOW TRIGGERS LIKE 'civicrm_%'");
175
176 while ($triggers->fetch()) {
177 // note that drop trigger has a wierd syntax and hence we do not
178 // send the trigger name as a string (i.e. its not quoted
179 $dao->executeQuery("DROP TRIGGER IF EXISTS {$triggers->Trigger}");
180 }
181 }
6a488035
TO
182 }
183
184 /**
185 * Enable sitewide logging.
186 *
187 * @return void
188 */
189 function enableLogging() {
190 $this->fixSchemaDifferences(TRUE);
191 $this->addReports();
192 }
193
194 /**
195 * Sync log tables and rebuild triggers.
196 *
197 * @param bool $enableLogging: Ensure logging is enabled
198 *
199 * @return void
200 */
201 function fixSchemaDifferences($enableLogging = FALSE) {
202 $config = CRM_Core_Config::singleton();
203 if ($enableLogging) {
204 $config->logging = TRUE;
205 }
206 if ($config->logging) {
bfb723bb 207 $this->fixSchemaDifferencesForALL();
6a488035
TO
208 }
209 // invoke the meta trigger creation call
e53944ef 210 CRM_Core_DAO::triggerRebuild(NULL, TRUE);
6a488035
TO
211 }
212
213 /**
214 * Add missing (potentially specified) log table columns for the given table.
215 *
216 * @param $table string name of the relevant table
217 * @param $cols mixed array of columns to add or null (to check for the missing columns)
218 * @param $rebuildTrigger boolean should we rebuild the triggers
219 *
220 * @return void
221 */
bfb723bb
DS
222 function fixSchemaDifferencesFor($table, $cols = array(), $rebuildTrigger = FALSE) {
223 if (empty($table)) {
224 return FALSE;
225 }
6a488035
TO
226 if (empty($this->logs[$table])) {
227 $this->createLogTableFor($table);
bfb723bb 228 return TRUE;
6a488035
TO
229 }
230
6a488035 231 if (empty($cols)) {
bfb723bb 232 $cols = $this->columnsWithDiffSpecs($table, "log_$table");
6a488035
TO
233 }
234
235 // use the relevant lines from CREATE TABLE to add colums to the log table
bfb723bb
DS
236 $create = $this->_getCreateQuery($table);
237 foreach ((array('ADD', 'MODIFY')) as $alterType) {
12de149a
DS
238 if (!empty($cols[$alterType])) {
239 foreach ($cols[$alterType] as $col) {
240 $line = $this->_getColumnQuery($col, $create);
241 CRM_Core_DAO::executeQuery("ALTER TABLE `{$this->db}`.log_$table {$alterType} {$line}");
242 }
bfb723bb
DS
243 }
244 }
245
31c270e1
DS
246 // for any obsolete columns (not null) we just make the column nullable.
247 if (!empty($cols['OBSOLETE'])) {
eae2404c 248 $create = $this->_getCreateQuery("`{$this->db}`.log_{$table}");
31c270e1 249 foreach ($cols['OBSOLETE'] as $col) {
bfb723bb 250 $line = $this->_getColumnQuery($col, $create);
31c270e1
DS
251 // This is just going to make a not null column to nullable
252 CRM_Core_DAO::executeQuery("ALTER TABLE `{$this->db}`.log_$table MODIFY {$line}");
bfb723bb
DS
253 }
254 }
255
256 if ($rebuildTrigger) {
257 // invoke the meta trigger creation call
258 CRM_Core_DAO::triggerRebuild($table);
259 }
260 return TRUE;
261 }
262
263 private function _getCreateQuery($table) {
264 $dao = CRM_Core_DAO::executeQuery("SHOW CREATE TABLE {$table}");
6a488035
TO
265 $dao->fetch();
266 $create = explode("\n", $dao->Create_Table);
bfb723bb
DS
267 return $create;
268 }
6a488035 269
bfb723bb
DS
270 private function _getColumnQuery($col, $createQuery) {
271 $line = preg_grep("/^ `$col` /", $createQuery);
4a423b7a 272 $line = rtrim(array_pop($line), ',');
bfb723bb 273 // CRM-11179
4a423b7a 274 $line = $this->fixTimeStampAndNotNullSQL($line);
bfb723bb
DS
275 return $line;
276 }
277
278 function fixSchemaDifferencesForAll($rebuildTrigger = FALSE) {
279 $diffs = array();
bfb723bb
DS
280 foreach ($this->tables as $table) {
281 if (empty($this->logs[$table])) {
282 $this->createLogTableFor($table);
e53944ef
BS
283 }
284 else {
bfb723bb
DS
285 $diffs[$table] = $this->columnsWithDiffSpecs($table, "log_$table");
286 }
287 }
6a488035 288
bfb723bb
DS
289 foreach ($diffs as $table => $cols) {
290 $this->fixSchemaDifferencesFor($table, $cols, FALSE);
6a488035
TO
291 }
292
293 if ($rebuildTrigger) {
294 // invoke the meta trigger creation call
295 CRM_Core_DAO::triggerRebuild($table);
296 }
297 }
298
bfb723bb
DS
299 /*
300 * log_civicrm_contact.modified_date for example would always be copied from civicrm_contact.modified_date,
301 * so there's no need for a default timestamp and therefore we remove such default timestamps
302 * also eliminate the NOT NULL constraint, since we always copy and schema can change down the road)
303 */
c28241be 304 function fixTimeStampAndNotNullSQL($query) {
6a488035
TO
305 $query = str_ireplace("TIMESTAMP NOT NULL", "TIMESTAMP NULL", $query);
306 $query = str_ireplace("DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP", '', $query);
307 $query = str_ireplace("DEFAULT CURRENT_TIMESTAMP", '', $query);
c28241be 308 $query = str_ireplace("NOT NULL", '', $query);
6a488035
TO
309 return $query;
310 }
311
6a488035
TO
312 private function addReports() {
313 $titles = array(
314 'logging/contact/detail' => ts('Logging Details'),
315 'logging/contact/summary' => ts('Contact Logging Report (Summary)'),
316 'logging/contribute/detail' => ts('Contribution Logging Report (Detail)'),
317 'logging/contribute/summary' => ts('Contribution Logging Report (Summary)'),
318 );
319 // enable logging templates
320 CRM_Core_DAO::executeQuery("
321 UPDATE civicrm_option_value
322 SET is_active = 1
323 WHERE value IN ('" . implode("', '", $this->reports) . "')
324 ");
325
326 // add report instances
327 $domain_id = CRM_Core_Config::domainID();
328 foreach ($this->reports as $report) {
0b25329b 329 $dao = new CRM_Report_DAO_ReportInstance;
6a488035
TO
330 $dao->domain_id = $domain_id;
331 $dao->report_id = $report;
332 $dao->title = $titles[$report];
333 $dao->permission = 'administer CiviCRM';
334 if ($report == 'logging/contact/summary')
335 $dao->is_reserved = 1;
336 $dao->insert();
337 }
338 }
339
340 /**
341 * Get an array of column names of the given table.
342 */
e53944ef 343 private function columnsOf($table, $force = FALSE) {
6a488035
TO
344 static $columnsOf = array();
345
346 $from = (substr($table, 0, 4) == 'log_') ? "`{$this->db}`.$table" : $table;
347
e53944ef 348 if (!isset($columnsOf[$table]) || $force) {
6a4257d4 349 $errorScope = CRM_Core_TemporaryErrorScope::ignoreException();
6a488035 350 $dao = CRM_Core_DAO::executeQuery("SHOW COLUMNS FROM $from");
6a488035
TO
351 if (is_a($dao, 'DB_Error')) {
352 return array();
353 }
354 $columnsOf[$table] = array();
355 while ($dao->fetch()) {
356 $columnsOf[$table][] = $dao->Field;
357 }
358 }
359
360 return $columnsOf[$table];
361 }
362
bfb723bb
DS
363 /**
364 * Get an array of columns and their details like DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT for the given table.
365 */
366 private function columnSpecsOf($table) {
367 static $columnSpecs = array(), $civiDB = NULL;
368
369 if (empty($columnSpecs)) {
370 if (!$civiDB) {
371 $dao = new CRM_Contact_DAO_Contact();
372 $civiDB = $dao->_database;
373 }
6a4257d4 374 $errorScope = CRM_Core_TemporaryErrorScope::ignoreException();
6842bb53 375 // NOTE: W.r.t Performance using one query to find all details and storing in static array is much faster
bfb723bb
DS
376 // than firing query for every given table.
377 $query = "
378SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT
379FROM INFORMATION_SCHEMA.COLUMNS
380WHERE table_schema IN ('{$this->db}', '{$civiDB}')";
bfb723bb 381 $dao = CRM_Core_DAO::executeQuery($query);
bfb723bb
DS
382 if (is_a($dao, 'DB_Error')) {
383 return array();
384 }
385 while ($dao->fetch()) {
bfb723bb
DS
386 if (!array_key_exists($dao->TABLE_NAME, $columnSpecs)) {
387 $columnSpecs[$dao->TABLE_NAME] = array();
388 }
6842bb53 389 $columnSpecs[$dao->TABLE_NAME][$dao->COLUMN_NAME] =
bfb723bb 390 array(
6842bb53
DL
391 'COLUMN_NAME' => $dao->COLUMN_NAME,
392 'DATA_TYPE' => $dao->DATA_TYPE,
393 'IS_NULLABLE' => $dao->IS_NULLABLE,
bfb723bb
DS
394 'COLUMN_DEFAULT' => $dao->COLUMN_DEFAULT
395 );
396 }
bfb723bb 397 }
bfb723bb
DS
398 return $columnSpecs[$table];
399 }
400
4a423b7a
DS
401 function columnsWithDiffSpecs($civiTable, $logTable) {
402 $civiTableSpecs = $this->columnSpecsOf($civiTable);
403 $logTableSpecs = $this->columnSpecsOf($logTable);
6842bb53 404
31c270e1 405 $diff = array('ADD' => array(), 'MODIFY' => array(), 'OBSOLETE' => array());
6842bb53 406
4a423b7a
DS
407 // columns to be added
408 $diff['ADD'] = array_diff(array_keys($civiTableSpecs), array_keys($logTableSpecs));
6842bb53 409
4a423b7a 410 // columns to be modified
6842bb53 411 // NOTE: we consider only those columns for modifications where there is a spec change, and that the column definition
4a423b7a
DS
412 // wasn't deliberately modified by fixTimeStampAndNotNullSQL() method.
413 foreach ($civiTableSpecs as $col => $colSpecs) {
e53944ef
BS
414 if ( !is_array($logTableSpecs[$col]) ) {
415 $logTableSpecs[$col] = array();
416 }
417
cd71572a 418 $specDiff = array_diff($civiTableSpecs[$col], $logTableSpecs[$col]);
12de149a 419 if (!empty($specDiff) && $col != 'id' && !array_key_exists($col, $diff['ADD'])) {
4a423b7a
DS
420 // ignore 'id' column for any spec changes, to avoid any auto-increment mysql errors
421 if ($civiTableSpecs[$col]['DATA_TYPE'] != $logTableSpecs[$col]['DATA_TYPE']) {
6842bb53 422 // if data-type is different, surely consider the column
4a423b7a 423 $diff['MODIFY'][] = $col;
6842bb53 424 } else if ($civiTableSpecs[$col]['IS_NULLABLE'] != $logTableSpecs[$col]['IS_NULLABLE'] &&
4a423b7a
DS
425 $logTableSpecs[$col]['IS_NULLABLE'] == 'NO') {
426 // if is-null property is different, and log table's column is NOT-NULL, surely consider the column
427 $diff['MODIFY'][] = $col;
6842bb53 428 } else if ($civiTableSpecs[$col]['COLUMN_DEFAULT'] != $logTableSpecs[$col]['COLUMN_DEFAULT'] &&
4a423b7a
DS
429 !strstr($civiTableSpecs[$col]['COLUMN_DEFAULT'], 'TIMESTAMP')) {
430 // if default property is different, and its not about a timestamp column, consider it
431 $diff['MODIFY'][] = $col;
432 }
6842bb53 433 }
bfb723bb
DS
434 }
435
4a423b7a
DS
436 // columns to made obsolete by turning into not-null
437 $oldCols = array_diff(array_keys($logTableSpecs), array_keys($civiTableSpecs));
31c270e1 438 foreach ($oldCols as $col) {
6842bb53 439 if (!in_array($col, array('log_date', 'log_conn_id', 'log_user_id', 'log_action')) &&
4a423b7a
DS
440 $logTableSpecs[$col]['IS_NULLABLE'] == 'NO') {
441 // if its a column present only in log table, not among those used by log tables for special purpose, and not-null
31c270e1 442 $diff['OBSOLETE'][] = $col;
bfb723bb
DS
443 }
444 }
445
446 return $diff;
447 }
448
6a488035
TO
449 /**
450 * Create a log table with schema mirroring the given table’s structure and seeding it with the given table’s contents.
451 */
452 private function createLogTableFor($table) {
453 $dao = CRM_Core_DAO::executeQuery("SHOW CREATE TABLE $table");
454 $dao->fetch();
455 $query = $dao->Create_Table;
456
457 // rewrite the queries into CREATE TABLE queries for log tables:
6a488035
TO
458 $cols = <<<COLS
459 log_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
460 log_conn_id INTEGER,
461 log_user_id INTEGER,
462 log_action ENUM('Initialization', 'Insert', 'Update', 'Delete')
463COLS;
c28241be
DL
464
465 // - prepend the name with log_
466 // - drop AUTO_INCREMENT columns
467 // - drop non-column rows of the query (keys, constraints, etc.)
468 // - set the ENGINE to ARCHIVE
469 // - add log-specific columns (at the end of the table)
6a488035
TO
470 $query = preg_replace("/^CREATE TABLE `$table`/i", "CREATE TABLE `{$this->db}`.log_$table", $query);
471 $query = preg_replace("/ AUTO_INCREMENT/i", '', $query);
472 $query = preg_replace("/^ [^`].*$/m", '', $query);
473 $query = preg_replace("/^\) ENGINE=[^ ]+ /im", ') ENGINE=ARCHIVE ', $query);
c28241be 474
6a488035 475 // log_civicrm_contact.modified_date for example would always be copied from civicrm_contact.modified_date,
c28241be
DL
476 // so there's no need for a default timestamp and therefore we remove such default timestamps
477 // also eliminate the NOT NULL constraint, since we always copy and schema can change down the road)
478 $query = self::fixTimeStampAndNotNullSQL($query);
6a488035
TO
479 $query = preg_replace("/^\) /m", "$cols\n) ", $query);
480
481 CRM_Core_DAO::executeQuery($query);
482
483 $columns = implode(', ', $this->columnsOf($table));
484 CRM_Core_DAO::executeQuery("INSERT INTO `{$this->db}`.log_$table ($columns, log_conn_id, log_user_id, log_action) SELECT $columns, CONNECTION_ID(), @civicrm_user_id, 'Initialization' FROM {$table}");
485
486 $this->tables[] = $table;
487 $this->logs[$table] = "log_$table";
488 }
489
490 private function deleteReports() {
491 // disable logging templates
492 CRM_Core_DAO::executeQuery("
493 UPDATE civicrm_option_value
494 SET is_active = 0
495 WHERE value IN ('" . implode("', '", $this->reports) . "')
496 ");
497
498 // delete report instances
499 $domain_id = CRM_Core_Config::domainID();
500 foreach ($this->reports as $report) {
0b25329b 501 $dao = new CRM_Report_DAO_ReportInstance;
6a488035
TO
502 $dao->domain_id = $domain_id;
503 $dao->report_id = $report;
504 $dao->delete();
505 }
506 }
507
508 /**
509 * Predicate whether logging is enabled.
510 */
511 public function isEnabled() {
512 $config = CRM_Core_Config::singleton();
513
514 if ($config->logging) {
515 return $this->tablesExist() and $this->triggersExist();
516 }
517 return FALSE;
518 }
519
520 /**
521 * Predicate whether any log tables exist.
522 */
523 private function tablesExist() {
524 return !empty($this->logs);
525 }
526
527 /**
528 * Predicate whether the logging triggers are in place.
529 */
530 private function triggersExist() {
531 // FIXME: probably should be a bit more thorough…
532 // note that the LIKE parameter is TABLE NAME
533 return (bool) CRM_Core_DAO::singleValueQuery("SHOW TRIGGERS LIKE 'civicrm_contact'");
534 }
535
e53944ef 536 function triggerInfo(&$info, $tableName = NULL, $force = FALSE) {
6a488035
TO
537 // check if we have logging enabled
538 $config =& CRM_Core_Config::singleton();
539 if (!$config->logging) {
540 return;
541 }
542
543 $insert = array('INSERT');
544 $update = array('UPDATE');
545 $delete = array('DELETE');
546
547 if ($tableName) {
548 $tableNames = array($tableName);
549 }
550 else {
551 $tableNames = $this->tables;
552 }
553
554 // logging is enabled, so now lets create the trigger info tables
555 foreach ($tableNames as $table) {
e53944ef 556 $columns = $this->columnsOf($table, $force);
6a488035
TO
557
558 // only do the change if any data has changed
559 $cond = array( );
560 foreach ($columns as $column) {
561 // ignore modified_date changes
4d1040bb 562 if ($column != 'modified_date' && !in_array($column, CRM_Utils_Array::value($table, $this->exceptions, array()))) {
6a488035
TO
563 $cond[] = "IFNULL(OLD.$column,'') <> IFNULL(NEW.$column,'')";
564 }
565 }
566 $suppressLoggingCond = "@civicrm_disable_logging IS NULL OR @civicrm_disable_logging = 0";
567 $updateSQL = "IF ( (" . implode( ' OR ', $cond ) . ") AND ( $suppressLoggingCond ) ) THEN ";
568
340f6aa0
DL
569 if ($this->useDBPrefix) {
570 $sqlStmt = "INSERT INTO `{$this->db}`.log_{tableName} (";
571 }
572 else {
573 $sqlStmt = "INSERT INTO log_{tableName} (";
574 }
6a488035
TO
575 foreach ($columns as $column) {
576 $sqlStmt .= "$column, ";
577 }
578 $sqlStmt .= "log_conn_id, log_user_id, log_action) VALUES (";
579
580 $insertSQL = $deleteSQL = "IF ( $suppressLoggingCond ) THEN $sqlStmt ";
581 $updateSQL .= $sqlStmt;
582
583 $sqlStmt = '';
584 foreach ($columns as $column) {
585 $sqlStmt .= "NEW.$column, ";
586 $deleteSQL .= "OLD.$column, ";
587 }
588 $sqlStmt .= "CONNECTION_ID(), @civicrm_user_id, '{eventName}');";
589 $deleteSQL .= "CONNECTION_ID(), @civicrm_user_id, '{eventName}');";
590
591 $sqlStmt .= "END IF;";
592 $deleteSQL .= "END IF;";
593
594 $insertSQL .= $sqlStmt;
595 $updateSQL .= $sqlStmt;
596
597 $info[] = array(
598 'table' => array($table),
599 'when' => 'AFTER',
600 'event' => $insert,
601 'sql' => $insertSQL,
602 );
603
604 $info[] = array(
605 'table' => array($table),
606 'when' => 'AFTER',
607 'event' => $update,
608 'sql' => $updateSQL,
609 );
610
611 $info[] = array(
612 'table' => array($table),
613 'when' => 'AFTER',
614 'event' => $delete,
615 'sql' => $deleteSQL,
616 );
617 }
618 }
619
620 /**
621 * This allow logging to be temporarily disabled for certain cases
622 * where we want to do a mass cleanup but dont want to bother with
623 * an audit trail
624 *
625 * @static
626 * @public
627 */
628 static function disableLoggingForThisConnection( ) {
629 // do this only if logging is enabled
630 $config = CRM_Core_Config::singleton( );
631 if ( $config->logging ) {
632 CRM_Core_DAO::executeQuery( 'SET @civicrm_disable_logging = 1' );
633 }
634 }
635
636}
637