INFRA-132 - Remove extra newlines from the bottom of docblocks
[civicrm-core.git] / CRM / Logging / Schema.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
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 */
00be9182 58 public function __construct() {
6a488035
TO
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
3292d079 73 // do not log temp import, cache, menu and log tables
6a488035
TO
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);
6a488035 77 $this->tables = preg_grep('/^civicrm_queue_/', $this->tables, PREG_GREP_INVERT);
3292d079 78 $this->tables = preg_grep('/^civicrm_menu/', $this->tables, PREG_GREP_INVERT); //CRM-14672
db70b323 79 $this->tables = preg_grep('/_temp_/', $this->tables, PREG_GREP_INVERT);
6a488035 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 */
00be9182 110 public function customDataLogTables() {
6a488035
TO
111 return preg_grep('/^log_civicrm_value_/', $this->logs);
112 }
113
694e78fd
DS
114 /**
115 * Return custom data tables for specified entity / extends.
116 */
00be9182 117 public function entityCustomDataLogTables($extends) {
694e78fd
DS
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 */
00be9182 130 public function disableLogging() {
6a488035
TO
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 */
00be9182 145 public function dropTriggers($tableName = NULL) {
6a488035
TO
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 */
00be9182 189 public function enableLogging() {
6a488035
TO
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 */
00be9182 201 public function fixSchemaDifferences($enableLogging = FALSE) {
6a488035
TO
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 *
5a4f6742
CW
216 * @param string $table
217 * name of the relevant table.
218 * @param array $cols
4c922589 219 * Mixed array of columns to add or null (to check for the missing columns).
5a4f6742
CW
220 * @param bool $rebuildTrigger
221 * should we rebuild the triggers.
6a488035
TO
222 *
223 * @return void
224 */
00be9182 225 public function fixSchemaDifferencesFor($table, $cols = array(), $rebuildTrigger = FALSE) {
bfb723bb
DS
226 if (empty($table)) {
227 return FALSE;
228 }
6a488035
TO
229 if (empty($this->logs[$table])) {
230 $this->createLogTableFor($table);
bfb723bb 231 return TRUE;
6a488035
TO
232 }
233
6a488035 234 if (empty($cols)) {
bfb723bb 235 $cols = $this->columnsWithDiffSpecs($table, "log_$table");
6a488035
TO
236 }
237
238 // use the relevant lines from CREATE TABLE to add colums to the log table
bfb723bb
DS
239 $create = $this->_getCreateQuery($table);
240 foreach ((array('ADD', 'MODIFY')) as $alterType) {
12de149a
DS
241 if (!empty($cols[$alterType])) {
242 foreach ($cols[$alterType] as $col) {
243 $line = $this->_getColumnQuery($col, $create);
244 CRM_Core_DAO::executeQuery("ALTER TABLE `{$this->db}`.log_$table {$alterType} {$line}");
245 }
bfb723bb
DS
246 }
247 }
248
31c270e1
DS
249 // for any obsolete columns (not null) we just make the column nullable.
250 if (!empty($cols['OBSOLETE'])) {
eae2404c 251 $create = $this->_getCreateQuery("`{$this->db}`.log_{$table}");
31c270e1 252 foreach ($cols['OBSOLETE'] as $col) {
bfb723bb 253 $line = $this->_getColumnQuery($col, $create);
31c270e1
DS
254 // This is just going to make a not null column to nullable
255 CRM_Core_DAO::executeQuery("ALTER TABLE `{$this->db}`.log_$table MODIFY {$line}");
bfb723bb
DS
256 }
257 }
258
259 if ($rebuildTrigger) {
260 // invoke the meta trigger creation call
261 CRM_Core_DAO::triggerRebuild($table);
262 }
263 return TRUE;
264 }
265
e0ef6999
EM
266 /**
267 * @param $table
268 *
269 * @return array
270 */
bfb723bb
DS
271 private function _getCreateQuery($table) {
272 $dao = CRM_Core_DAO::executeQuery("SHOW CREATE TABLE {$table}");
6a488035
TO
273 $dao->fetch();
274 $create = explode("\n", $dao->Create_Table);
bfb723bb
DS
275 return $create;
276 }
6a488035 277
e0ef6999
EM
278 /**
279 * @param $col
280 * @param $createQuery
281 *
282 * @return array|mixed|string
283 */
bfb723bb
DS
284 private function _getColumnQuery($col, $createQuery) {
285 $line = preg_grep("/^ `$col` /", $createQuery);
4a423b7a 286 $line = rtrim(array_pop($line), ',');
bfb723bb 287 // CRM-11179
4a423b7a 288 $line = $this->fixTimeStampAndNotNullSQL($line);
bfb723bb
DS
289 return $line;
290 }
291
e0ef6999
EM
292 /**
293 * @param bool $rebuildTrigger
294 */
00be9182 295 public function fixSchemaDifferencesForAll($rebuildTrigger = FALSE) {
bfb723bb 296 $diffs = array();
bfb723bb
DS
297 foreach ($this->tables as $table) {
298 if (empty($this->logs[$table])) {
299 $this->createLogTableFor($table);
e53944ef
BS
300 }
301 else {
bfb723bb
DS
302 $diffs[$table] = $this->columnsWithDiffSpecs($table, "log_$table");
303 }
304 }
6a488035 305
bfb723bb
DS
306 foreach ($diffs as $table => $cols) {
307 $this->fixSchemaDifferencesFor($table, $cols, FALSE);
6a488035
TO
308 }
309
310 if ($rebuildTrigger) {
311 // invoke the meta trigger creation call
312 CRM_Core_DAO::triggerRebuild($table);
313 }
314 }
315
bfb723bb
DS
316 /*
317 * log_civicrm_contact.modified_date for example would always be copied from civicrm_contact.modified_date,
318 * so there's no need for a default timestamp and therefore we remove such default timestamps
319 * also eliminate the NOT NULL constraint, since we always copy and schema can change down the road)
320 */
e0ef6999
EM
321 /**
322 * @param $query
323 *
324 * @return mixed
325 */
00be9182 326 public function fixTimeStampAndNotNullSQL($query) {
6a488035
TO
327 $query = str_ireplace("TIMESTAMP NOT NULL", "TIMESTAMP NULL", $query);
328 $query = str_ireplace("DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP", '', $query);
329 $query = str_ireplace("DEFAULT CURRENT_TIMESTAMP", '', $query);
c28241be 330 $query = str_ireplace("NOT NULL", '', $query);
6a488035
TO
331 return $query;
332 }
333
6a488035
TO
334 private function addReports() {
335 $titles = array(
336 'logging/contact/detail' => ts('Logging Details'),
337 'logging/contact/summary' => ts('Contact Logging Report (Summary)'),
338 'logging/contribute/detail' => ts('Contribution Logging Report (Detail)'),
339 'logging/contribute/summary' => ts('Contribution Logging Report (Summary)'),
340 );
341 // enable logging templates
342 CRM_Core_DAO::executeQuery("
343 UPDATE civicrm_option_value
344 SET is_active = 1
345 WHERE value IN ('" . implode("', '", $this->reports) . "')
346 ");
347
348 // add report instances
349 $domain_id = CRM_Core_Config::domainID();
350 foreach ($this->reports as $report) {
0b25329b 351 $dao = new CRM_Report_DAO_ReportInstance;
6a488035
TO
352 $dao->domain_id = $domain_id;
353 $dao->report_id = $report;
354 $dao->title = $titles[$report];
355 $dao->permission = 'administer CiviCRM';
356 if ($report == 'logging/contact/summary')
357 $dao->is_reserved = 1;
358 $dao->insert();
359 }
360 }
361
362 /**
363 * Get an array of column names of the given table.
364 */
e53944ef 365 private function columnsOf($table, $force = FALSE) {
6a488035
TO
366 static $columnsOf = array();
367
368 $from = (substr($table, 0, 4) == 'log_') ? "`{$this->db}`.$table" : $table;
369
e53944ef 370 if (!isset($columnsOf[$table]) || $force) {
6a4257d4 371 $errorScope = CRM_Core_TemporaryErrorScope::ignoreException();
6a488035 372 $dao = CRM_Core_DAO::executeQuery("SHOW COLUMNS FROM $from");
6a488035
TO
373 if (is_a($dao, 'DB_Error')) {
374 return array();
375 }
376 $columnsOf[$table] = array();
377 while ($dao->fetch()) {
378 $columnsOf[$table][] = $dao->Field;
379 }
380 }
381
382 return $columnsOf[$table];
383 }
384
bfb723bb
DS
385 /**
386 * Get an array of columns and their details like DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT for the given table.
387 */
388 private function columnSpecsOf($table) {
389 static $columnSpecs = array(), $civiDB = NULL;
390
391 if (empty($columnSpecs)) {
392 if (!$civiDB) {
393 $dao = new CRM_Contact_DAO_Contact();
394 $civiDB = $dao->_database;
395 }
6a4257d4 396 $errorScope = CRM_Core_TemporaryErrorScope::ignoreException();
6842bb53 397 // NOTE: W.r.t Performance using one query to find all details and storing in static array is much faster
bfb723bb
DS
398 // than firing query for every given table.
399 $query = "
400SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT
401FROM INFORMATION_SCHEMA.COLUMNS
402WHERE table_schema IN ('{$this->db}', '{$civiDB}')";
bfb723bb 403 $dao = CRM_Core_DAO::executeQuery($query);
bfb723bb
DS
404 if (is_a($dao, 'DB_Error')) {
405 return array();
406 }
407 while ($dao->fetch()) {
bfb723bb
DS
408 if (!array_key_exists($dao->TABLE_NAME, $columnSpecs)) {
409 $columnSpecs[$dao->TABLE_NAME] = array();
410 }
6842bb53 411 $columnSpecs[$dao->TABLE_NAME][$dao->COLUMN_NAME] =
bfb723bb 412 array(
6842bb53
DL
413 'COLUMN_NAME' => $dao->COLUMN_NAME,
414 'DATA_TYPE' => $dao->DATA_TYPE,
415 'IS_NULLABLE' => $dao->IS_NULLABLE,
21dfd5f5 416 'COLUMN_DEFAULT' => $dao->COLUMN_DEFAULT,
bfb723bb
DS
417 );
418 }
bfb723bb 419 }
bfb723bb
DS
420 return $columnSpecs[$table];
421 }
422
e0ef6999
EM
423 /**
424 * @param $civiTable
425 * @param $logTable
426 *
427 * @return array
428 */
00be9182 429 public function columnsWithDiffSpecs($civiTable, $logTable) {
4a423b7a
DS
430 $civiTableSpecs = $this->columnSpecsOf($civiTable);
431 $logTableSpecs = $this->columnSpecsOf($logTable);
6842bb53 432
31c270e1 433 $diff = array('ADD' => array(), 'MODIFY' => array(), 'OBSOLETE' => array());
6842bb53 434
4a423b7a
DS
435 // columns to be added
436 $diff['ADD'] = array_diff(array_keys($civiTableSpecs), array_keys($logTableSpecs));
6842bb53 437
4a423b7a 438 // columns to be modified
6842bb53 439 // NOTE: we consider only those columns for modifications where there is a spec change, and that the column definition
4a423b7a
DS
440 // wasn't deliberately modified by fixTimeStampAndNotNullSQL() method.
441 foreach ($civiTableSpecs as $col => $colSpecs) {
481a74f4 442 if (!isset($logTableSpecs[$col]) || !is_array($logTableSpecs[$col])) {
e53944ef
BS
443 $logTableSpecs[$col] = array();
444 }
445
cd71572a 446 $specDiff = array_diff($civiTableSpecs[$col], $logTableSpecs[$col]);
12de149a 447 if (!empty($specDiff) && $col != 'id' && !array_key_exists($col, $diff['ADD'])) {
4a423b7a 448 // ignore 'id' column for any spec changes, to avoid any auto-increment mysql errors
c5bdd6f0 449 if ($civiTableSpecs[$col]['DATA_TYPE'] != CRM_Utils_Array::value('DATA_TYPE', $logTableSpecs[$col])) {
6842bb53 450 // if data-type is different, surely consider the column
4a423b7a 451 $diff['MODIFY'][] = $col;
0db6c3e1 452 }
4c9b6178 453 elseif ($civiTableSpecs[$col]['IS_NULLABLE'] != CRM_Utils_Array::value('IS_NULLABLE', $logTableSpecs[$col]) &&
4a423b7a
DS
454 $logTableSpecs[$col]['IS_NULLABLE'] == 'NO') {
455 // if is-null property is different, and log table's column is NOT-NULL, surely consider the column
456 $diff['MODIFY'][] = $col;
0db6c3e1 457 }
4c9b6178 458 elseif ($civiTableSpecs[$col]['COLUMN_DEFAULT'] != CRM_Utils_Array::value('COLUMN_DEFAULT', $logTableSpecs[$col]) &&
4a423b7a
DS
459 !strstr($civiTableSpecs[$col]['COLUMN_DEFAULT'], 'TIMESTAMP')) {
460 // if default property is different, and its not about a timestamp column, consider it
461 $diff['MODIFY'][] = $col;
462 }
6842bb53 463 }
bfb723bb
DS
464 }
465
4a423b7a
DS
466 // columns to made obsolete by turning into not-null
467 $oldCols = array_diff(array_keys($logTableSpecs), array_keys($civiTableSpecs));
31c270e1 468 foreach ($oldCols as $col) {
6842bb53 469 if (!in_array($col, array('log_date', 'log_conn_id', 'log_user_id', 'log_action')) &&
4a423b7a
DS
470 $logTableSpecs[$col]['IS_NULLABLE'] == 'NO') {
471 // if its a column present only in log table, not among those used by log tables for special purpose, and not-null
31c270e1 472 $diff['OBSOLETE'][] = $col;
bfb723bb
DS
473 }
474 }
475
476 return $diff;
477 }
478
6a488035
TO
479 /**
480 * Create a log table with schema mirroring the given table’s structure and seeding it with the given table’s contents.
481 */
482 private function createLogTableFor($table) {
483 $dao = CRM_Core_DAO::executeQuery("SHOW CREATE TABLE $table");
484 $dao->fetch();
485 $query = $dao->Create_Table;
486
487 // rewrite the queries into CREATE TABLE queries for log tables:
6a488035
TO
488 $cols = <<<COLS
489 log_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
490 log_conn_id INTEGER,
491 log_user_id INTEGER,
492 log_action ENUM('Initialization', 'Insert', 'Update', 'Delete')
493COLS;
c28241be
DL
494
495 // - prepend the name with log_
496 // - drop AUTO_INCREMENT columns
497 // - drop non-column rows of the query (keys, constraints, etc.)
498 // - set the ENGINE to ARCHIVE
499 // - add log-specific columns (at the end of the table)
6a488035
TO
500 $query = preg_replace("/^CREATE TABLE `$table`/i", "CREATE TABLE `{$this->db}`.log_$table", $query);
501 $query = preg_replace("/ AUTO_INCREMENT/i", '', $query);
502 $query = preg_replace("/^ [^`].*$/m", '', $query);
503 $query = preg_replace("/^\) ENGINE=[^ ]+ /im", ') ENGINE=ARCHIVE ', $query);
c28241be 504
6a488035 505 // log_civicrm_contact.modified_date for example would always be copied from civicrm_contact.modified_date,
c28241be
DL
506 // so there's no need for a default timestamp and therefore we remove such default timestamps
507 // also eliminate the NOT NULL constraint, since we always copy and schema can change down the road)
508 $query = self::fixTimeStampAndNotNullSQL($query);
6a488035
TO
509 $query = preg_replace("/^\) /m", "$cols\n) ", $query);
510
511 CRM_Core_DAO::executeQuery($query);
512
513 $columns = implode(', ', $this->columnsOf($table));
514 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}");
515
516 $this->tables[] = $table;
517 $this->logs[$table] = "log_$table";
518 }
519
520 private function deleteReports() {
521 // disable logging templates
522 CRM_Core_DAO::executeQuery("
523 UPDATE civicrm_option_value
524 SET is_active = 0
525 WHERE value IN ('" . implode("', '", $this->reports) . "')
526 ");
527
528 // delete report instances
529 $domain_id = CRM_Core_Config::domainID();
530 foreach ($this->reports as $report) {
0b25329b 531 $dao = new CRM_Report_DAO_ReportInstance;
6a488035
TO
532 $dao->domain_id = $domain_id;
533 $dao->report_id = $report;
534 $dao->delete();
535 }
536 }
537
538 /**
539 * Predicate whether logging is enabled.
540 */
541 public function isEnabled() {
542 $config = CRM_Core_Config::singleton();
543
544 if ($config->logging) {
545 return $this->tablesExist() and $this->triggersExist();
546 }
547 return FALSE;
548 }
549
550 /**
551 * Predicate whether any log tables exist.
552 */
553 private function tablesExist() {
554 return !empty($this->logs);
555 }
556
557 /**
558 * Predicate whether the logging triggers are in place.
559 */
560 private function triggersExist() {
561 // FIXME: probably should be a bit more thorough…
562 // note that the LIKE parameter is TABLE NAME
563 return (bool) CRM_Core_DAO::singleValueQuery("SHOW TRIGGERS LIKE 'civicrm_contact'");
564 }
565
e0ef6999
EM
566 /**
567 * @param $info
568 * @param null $tableName
569 * @param bool $force
570 */
00be9182 571 public function triggerInfo(&$info, $tableName = NULL, $force = FALSE) {
6a488035
TO
572 // check if we have logging enabled
573 $config =& CRM_Core_Config::singleton();
574 if (!$config->logging) {
575 return;
576 }
577
578 $insert = array('INSERT');
579 $update = array('UPDATE');
580 $delete = array('DELETE');
581
582 if ($tableName) {
583 $tableNames = array($tableName);
584 }
585 else {
586 $tableNames = $this->tables;
587 }
588
589 // logging is enabled, so now lets create the trigger info tables
590 foreach ($tableNames as $table) {
e53944ef 591 $columns = $this->columnsOf($table, $force);
6a488035
TO
592
593 // only do the change if any data has changed
481a74f4 594 $cond = array();
6a488035
TO
595 foreach ($columns as $column) {
596 // ignore modified_date changes
4d1040bb 597 if ($column != 'modified_date' && !in_array($column, CRM_Utils_Array::value($table, $this->exceptions, array()))) {
6a488035
TO
598 $cond[] = "IFNULL(OLD.$column,'') <> IFNULL(NEW.$column,'')";
599 }
600 }
601 $suppressLoggingCond = "@civicrm_disable_logging IS NULL OR @civicrm_disable_logging = 0";
481a74f4 602 $updateSQL = "IF ( (" . implode(' OR ', $cond) . ") AND ( $suppressLoggingCond ) ) THEN ";
6a488035 603
340f6aa0
DL
604 if ($this->useDBPrefix) {
605 $sqlStmt = "INSERT INTO `{$this->db}`.log_{tableName} (";
606 }
607 else {
608 $sqlStmt = "INSERT INTO log_{tableName} (";
609 }
6a488035
TO
610 foreach ($columns as $column) {
611 $sqlStmt .= "$column, ";
612 }
613 $sqlStmt .= "log_conn_id, log_user_id, log_action) VALUES (";
614
615 $insertSQL = $deleteSQL = "IF ( $suppressLoggingCond ) THEN $sqlStmt ";
616 $updateSQL .= $sqlStmt;
617
618 $sqlStmt = '';
619 foreach ($columns as $column) {
620 $sqlStmt .= "NEW.$column, ";
621 $deleteSQL .= "OLD.$column, ";
622 }
623 $sqlStmt .= "CONNECTION_ID(), @civicrm_user_id, '{eventName}');";
624 $deleteSQL .= "CONNECTION_ID(), @civicrm_user_id, '{eventName}');";
625
626 $sqlStmt .= "END IF;";
627 $deleteSQL .= "END IF;";
628
629 $insertSQL .= $sqlStmt;
630 $updateSQL .= $sqlStmt;
631
632 $info[] = array(
633 'table' => array($table),
634 'when' => 'AFTER',
635 'event' => $insert,
636 'sql' => $insertSQL,
637 );
638
639 $info[] = array(
640 'table' => array($table),
641 'when' => 'AFTER',
642 'event' => $update,
643 'sql' => $updateSQL,
644 );
645
646 $info[] = array(
647 'table' => array($table),
648 'when' => 'AFTER',
649 'event' => $delete,
650 'sql' => $deleteSQL,
651 );
652 }
653 }
654
655 /**
656 * This allow logging to be temporarily disabled for certain cases
657 * where we want to do a mass cleanup but dont want to bother with
658 * an audit trail
659 *
660 * @static
6a488035 661 */
481a74f4 662 public static function disableLoggingForThisConnection() {
6a488035 663 // do this only if logging is enabled
481a74f4
TO
664 $config = CRM_Core_Config::singleton();
665 if ($config->logging) {
666 CRM_Core_DAO::executeQuery('SET @civicrm_disable_logging = 1');
6a488035
TO
667 }
668 }
669
670}