CRM-14971 - Fix resizing of contact images
[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) {
6a488035
TO
349 CRM_Core_Error::ignoreException();
350 $dao = CRM_Core_DAO::executeQuery("SHOW COLUMNS FROM $from");
351 CRM_Core_Error::setCallback();
352 if (is_a($dao, 'DB_Error')) {
353 return array();
354 }
355 $columnsOf[$table] = array();
356 while ($dao->fetch()) {
357 $columnsOf[$table][] = $dao->Field;
358 }
359 }
360
361 return $columnsOf[$table];
362 }
363
bfb723bb
DS
364 /**
365 * Get an array of columns and their details like DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT for the given table.
366 */
367 private function columnSpecsOf($table) {
368 static $columnSpecs = array(), $civiDB = NULL;
369
370 if (empty($columnSpecs)) {
371 if (!$civiDB) {
372 $dao = new CRM_Contact_DAO_Contact();
373 $civiDB = $dao->_database;
374 }
375 CRM_Core_Error::ignoreException();
6842bb53 376 // NOTE: W.r.t Performance using one query to find all details and storing in static array is much faster
bfb723bb
DS
377 // than firing query for every given table.
378 $query = "
379SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT
380FROM INFORMATION_SCHEMA.COLUMNS
381WHERE table_schema IN ('{$this->db}', '{$civiDB}')";
bfb723bb 382 $dao = CRM_Core_DAO::executeQuery($query);
bfb723bb
DS
383 CRM_Core_Error::setCallback();
384 if (is_a($dao, 'DB_Error')) {
385 return array();
386 }
387 while ($dao->fetch()) {
bfb723bb
DS
388 if (!array_key_exists($dao->TABLE_NAME, $columnSpecs)) {
389 $columnSpecs[$dao->TABLE_NAME] = array();
390 }
6842bb53 391 $columnSpecs[$dao->TABLE_NAME][$dao->COLUMN_NAME] =
bfb723bb 392 array(
6842bb53
DL
393 'COLUMN_NAME' => $dao->COLUMN_NAME,
394 'DATA_TYPE' => $dao->DATA_TYPE,
395 'IS_NULLABLE' => $dao->IS_NULLABLE,
bfb723bb
DS
396 'COLUMN_DEFAULT' => $dao->COLUMN_DEFAULT
397 );
398 }
bfb723bb 399 }
bfb723bb
DS
400 return $columnSpecs[$table];
401 }
402
4a423b7a
DS
403 function columnsWithDiffSpecs($civiTable, $logTable) {
404 $civiTableSpecs = $this->columnSpecsOf($civiTable);
405 $logTableSpecs = $this->columnSpecsOf($logTable);
6842bb53 406
31c270e1 407 $diff = array('ADD' => array(), 'MODIFY' => array(), 'OBSOLETE' => array());
6842bb53 408
4a423b7a
DS
409 // columns to be added
410 $diff['ADD'] = array_diff(array_keys($civiTableSpecs), array_keys($logTableSpecs));
6842bb53 411
4a423b7a 412 // columns to be modified
6842bb53 413 // NOTE: we consider only those columns for modifications where there is a spec change, and that the column definition
4a423b7a
DS
414 // wasn't deliberately modified by fixTimeStampAndNotNullSQL() method.
415 foreach ($civiTableSpecs as $col => $colSpecs) {
c5bdd6f0 416 if (!isset($logTableSpecs[$col]) || !is_array($logTableSpecs[$col]) ) {
e53944ef
BS
417 $logTableSpecs[$col] = array();
418 }
419
cd71572a 420 $specDiff = array_diff($civiTableSpecs[$col], $logTableSpecs[$col]);
12de149a 421 if (!empty($specDiff) && $col != 'id' && !array_key_exists($col, $diff['ADD'])) {
4a423b7a 422 // ignore 'id' column for any spec changes, to avoid any auto-increment mysql errors
c5bdd6f0 423 if ($civiTableSpecs[$col]['DATA_TYPE'] != CRM_Utils_Array::value('DATA_TYPE', $logTableSpecs[$col])) {
6842bb53 424 // if data-type is different, surely consider the column
4a423b7a 425 $diff['MODIFY'][] = $col;
c5bdd6f0 426 } else if ($civiTableSpecs[$col]['IS_NULLABLE'] != CRM_Utils_Array::value('IS_NULLABLE', $logTableSpecs[$col]) &&
4a423b7a
DS
427 $logTableSpecs[$col]['IS_NULLABLE'] == 'NO') {
428 // if is-null property is different, and log table's column is NOT-NULL, surely consider the column
429 $diff['MODIFY'][] = $col;
c5bdd6f0 430 } else if ($civiTableSpecs[$col]['COLUMN_DEFAULT'] != CRM_Utils_Array::value('COLUMN_DEFAULT', $logTableSpecs[$col]) &&
4a423b7a
DS
431 !strstr($civiTableSpecs[$col]['COLUMN_DEFAULT'], 'TIMESTAMP')) {
432 // if default property is different, and its not about a timestamp column, consider it
433 $diff['MODIFY'][] = $col;
434 }
6842bb53 435 }
bfb723bb
DS
436 }
437
4a423b7a
DS
438 // columns to made obsolete by turning into not-null
439 $oldCols = array_diff(array_keys($logTableSpecs), array_keys($civiTableSpecs));
31c270e1 440 foreach ($oldCols as $col) {
6842bb53 441 if (!in_array($col, array('log_date', 'log_conn_id', 'log_user_id', 'log_action')) &&
4a423b7a
DS
442 $logTableSpecs[$col]['IS_NULLABLE'] == 'NO') {
443 // if its a column present only in log table, not among those used by log tables for special purpose, and not-null
31c270e1 444 $diff['OBSOLETE'][] = $col;
bfb723bb
DS
445 }
446 }
447
448 return $diff;
449 }
450
6a488035
TO
451 /**
452 * Create a log table with schema mirroring the given table’s structure and seeding it with the given table’s contents.
453 */
454 private function createLogTableFor($table) {
455 $dao = CRM_Core_DAO::executeQuery("SHOW CREATE TABLE $table");
456 $dao->fetch();
457 $query = $dao->Create_Table;
458
459 // rewrite the queries into CREATE TABLE queries for log tables:
6a488035
TO
460 $cols = <<<COLS
461 log_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
462 log_conn_id INTEGER,
463 log_user_id INTEGER,
464 log_action ENUM('Initialization', 'Insert', 'Update', 'Delete')
465COLS;
c28241be
DL
466
467 // - prepend the name with log_
468 // - drop AUTO_INCREMENT columns
469 // - drop non-column rows of the query (keys, constraints, etc.)
470 // - set the ENGINE to ARCHIVE
471 // - add log-specific columns (at the end of the table)
6a488035
TO
472 $query = preg_replace("/^CREATE TABLE `$table`/i", "CREATE TABLE `{$this->db}`.log_$table", $query);
473 $query = preg_replace("/ AUTO_INCREMENT/i", '', $query);
474 $query = preg_replace("/^ [^`].*$/m", '', $query);
475 $query = preg_replace("/^\) ENGINE=[^ ]+ /im", ') ENGINE=ARCHIVE ', $query);
c28241be 476
6a488035 477 // log_civicrm_contact.modified_date for example would always be copied from civicrm_contact.modified_date,
c28241be
DL
478 // so there's no need for a default timestamp and therefore we remove such default timestamps
479 // also eliminate the NOT NULL constraint, since we always copy and schema can change down the road)
480 $query = self::fixTimeStampAndNotNullSQL($query);
6a488035
TO
481 $query = preg_replace("/^\) /m", "$cols\n) ", $query);
482
483 CRM_Core_DAO::executeQuery($query);
484
485 $columns = implode(', ', $this->columnsOf($table));
486 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}");
487
488 $this->tables[] = $table;
489 $this->logs[$table] = "log_$table";
490 }
491
492 private function deleteReports() {
493 // disable logging templates
494 CRM_Core_DAO::executeQuery("
495 UPDATE civicrm_option_value
496 SET is_active = 0
497 WHERE value IN ('" . implode("', '", $this->reports) . "')
498 ");
499
500 // delete report instances
501 $domain_id = CRM_Core_Config::domainID();
502 foreach ($this->reports as $report) {
0b25329b 503 $dao = new CRM_Report_DAO_ReportInstance;
6a488035
TO
504 $dao->domain_id = $domain_id;
505 $dao->report_id = $report;
506 $dao->delete();
507 }
508 }
509
510 /**
511 * Predicate whether logging is enabled.
512 */
513 public function isEnabled() {
514 $config = CRM_Core_Config::singleton();
515
516 if ($config->logging) {
517 return $this->tablesExist() and $this->triggersExist();
518 }
519 return FALSE;
520 }
521
522 /**
523 * Predicate whether any log tables exist.
524 */
525 private function tablesExist() {
526 return !empty($this->logs);
527 }
528
529 /**
530 * Predicate whether the logging triggers are in place.
531 */
532 private function triggersExist() {
533 // FIXME: probably should be a bit more thorough…
534 // note that the LIKE parameter is TABLE NAME
535 return (bool) CRM_Core_DAO::singleValueQuery("SHOW TRIGGERS LIKE 'civicrm_contact'");
536 }
537
e53944ef 538 function triggerInfo(&$info, $tableName = NULL, $force = FALSE) {
6a488035
TO
539 // check if we have logging enabled
540 $config =& CRM_Core_Config::singleton();
541 if (!$config->logging) {
542 return;
543 }
544
545 $insert = array('INSERT');
546 $update = array('UPDATE');
547 $delete = array('DELETE');
548
549 if ($tableName) {
550 $tableNames = array($tableName);
551 }
552 else {
553 $tableNames = $this->tables;
554 }
555
556 // logging is enabled, so now lets create the trigger info tables
557 foreach ($tableNames as $table) {
e53944ef 558 $columns = $this->columnsOf($table, $force);
6a488035
TO
559
560 // only do the change if any data has changed
561 $cond = array( );
562 foreach ($columns as $column) {
563 // ignore modified_date changes
4d1040bb 564 if ($column != 'modified_date' && !in_array($column, CRM_Utils_Array::value($table, $this->exceptions, array()))) {
6a488035
TO
565 $cond[] = "IFNULL(OLD.$column,'') <> IFNULL(NEW.$column,'')";
566 }
567 }
568 $suppressLoggingCond = "@civicrm_disable_logging IS NULL OR @civicrm_disable_logging = 0";
569 $updateSQL = "IF ( (" . implode( ' OR ', $cond ) . ") AND ( $suppressLoggingCond ) ) THEN ";
570
340f6aa0
DL
571 if ($this->useDBPrefix) {
572 $sqlStmt = "INSERT INTO `{$this->db}`.log_{tableName} (";
573 }
574 else {
575 $sqlStmt = "INSERT INTO log_{tableName} (";
576 }
6a488035
TO
577 foreach ($columns as $column) {
578 $sqlStmt .= "$column, ";
579 }
580 $sqlStmt .= "log_conn_id, log_user_id, log_action) VALUES (";
581
582 $insertSQL = $deleteSQL = "IF ( $suppressLoggingCond ) THEN $sqlStmt ";
583 $updateSQL .= $sqlStmt;
584
585 $sqlStmt = '';
586 foreach ($columns as $column) {
587 $sqlStmt .= "NEW.$column, ";
588 $deleteSQL .= "OLD.$column, ";
589 }
590 $sqlStmt .= "CONNECTION_ID(), @civicrm_user_id, '{eventName}');";
591 $deleteSQL .= "CONNECTION_ID(), @civicrm_user_id, '{eventName}');";
592
593 $sqlStmt .= "END IF;";
594 $deleteSQL .= "END IF;";
595
596 $insertSQL .= $sqlStmt;
597 $updateSQL .= $sqlStmt;
598
599 $info[] = array(
600 'table' => array($table),
601 'when' => 'AFTER',
602 'event' => $insert,
603 'sql' => $insertSQL,
604 );
605
606 $info[] = array(
607 'table' => array($table),
608 'when' => 'AFTER',
609 'event' => $update,
610 'sql' => $updateSQL,
611 );
612
613 $info[] = array(
614 'table' => array($table),
615 'when' => 'AFTER',
616 'event' => $delete,
617 'sql' => $deleteSQL,
618 );
619 }
620 }
621
622 /**
623 * This allow logging to be temporarily disabled for certain cases
624 * where we want to do a mass cleanup but dont want to bother with
625 * an audit trail
626 *
627 * @static
628 * @public
629 */
630 static function disableLoggingForThisConnection( ) {
631 // do this only if logging is enabled
632 $config = CRM_Core_Config::singleton( );
633 if ( $config->logging ) {
634 CRM_Core_DAO::executeQuery( 'SET @civicrm_disable_logging = 1' );
635 }
636 }
637
638}
639