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