Merge pull request #21483 from jmcclelland/leaky-honoree-variable
[civicrm-core.git] / CRM / Logging / Differ.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17 class CRM_Logging_Differ {
18 private $db;
19 private $log_conn_id;
20 private $log_date;
21 private $interval;
22
23 /**
24 * Class constructor.
25 *
26 * @param string $log_conn_id
27 * @param string $log_date
28 * @param string $interval
29 */
30 public function __construct($log_conn_id, $log_date, $interval = '10 SECOND') {
31 $dsn = defined('CIVICRM_LOGGING_DSN') ? CRM_Utils_SQL::autoSwitchDSN(CIVICRM_LOGGING_DSN) : CRM_Utils_SQL::autoSwitchDSN(CIVICRM_DSN);
32 $dsn = DB::parseDSN($dsn);
33 $this->db = $dsn['database'];
34 $this->log_conn_id = $log_conn_id;
35 $this->log_date = $log_date;
36 $this->interval = self::filterInterval($interval);
37 }
38
39 /**
40 * @param $tables
41 *
42 * @return array
43 */
44 public function diffsInTables($tables) {
45 $diffs = [];
46 foreach ($tables as $table) {
47 $diff = $this->diffsInTable($table);
48 if (!empty($diff)) {
49 $diffs[$table] = $diff;
50 }
51 }
52 return $diffs;
53 }
54
55 /**
56 * @param $table
57 * @param int $contactID
58 *
59 * @return array
60 */
61 public function diffsInTable($table, $contactID = NULL) {
62 $diffs = [];
63
64 $params = [
65 1 => [$this->log_conn_id, 'String'],
66 ];
67
68 $logging = new CRM_Logging_Schema();
69 $addressCustomTables = $logging->entityCustomDataLogTables('Address');
70
71 $contactIdClause = $join = '';
72 if ($contactID) {
73 $params[3] = [$contactID, 'Integer'];
74 switch ($table) {
75 case 'civicrm_contact':
76 $contactIdClause = "AND id = %3";
77 break;
78
79 case 'civicrm_note':
80 $contactIdClause = "AND (( entity_id = %3 AND entity_table = 'civicrm_contact' ) OR (entity_id IN (SELECT note.id FROM `{$this->db}`.log_civicrm_note note WHERE note.entity_id = %3 AND note.entity_table = 'civicrm_contact') AND entity_table = 'civicrm_note'))";
81 break;
82
83 case 'civicrm_entity_tag':
84 $contactIdClause = "AND entity_id = %3 AND entity_table = 'civicrm_contact'";
85 break;
86
87 case 'civicrm_relationship':
88 $contactIdClause = "AND (contact_id_a = %3 OR contact_id_b = %3)";
89 break;
90
91 case 'civicrm_activity':
92 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
93 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
94 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
95 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
96
97 $join = "
98 LEFT JOIN civicrm_activity_contact at ON at.activity_id = lt.id AND at.contact_id = %3 AND at.record_type_id = {$targetID}
99 LEFT JOIN civicrm_activity_contact aa ON aa.activity_id = lt.id AND aa.contact_id = %3 AND aa.record_type_id = {$assigneeID}
100 LEFT JOIN civicrm_activity_contact source ON source.activity_id = lt.id AND source.contact_id = %3 AND source.record_type_id = {$sourceID} ";
101 $contactIdClause = "AND (at.id IS NOT NULL OR aa.id IS NOT NULL OR source.id IS NOT NULL)";
102 break;
103
104 case 'civicrm_case':
105 $contactIdClause = "AND id = (select case_id FROM civicrm_case_contact WHERE contact_id = %3 LIMIT 1)";
106 break;
107
108 default:
109 if (array_key_exists($table, $addressCustomTables)) {
110 $join = "INNER JOIN `{$this->db}`.`log_civicrm_address` et ON et.id = lt.entity_id";
111 $contactIdClause = "AND contact_id = %3";
112 break;
113 }
114
115 // allow tables to be extended by report hook query objects
116 list($contactIdClause, $join) = CRM_Report_BAO_Hook::singleton()->logDiffClause($this, $table);
117
118 if (empty($contactIdClause)) {
119 $contactIdClause = "AND contact_id = %3";
120 }
121 if (strpos($table, 'civicrm_value') !== FALSE) {
122 $contactIdClause = "AND entity_id = %3";
123 }
124 }
125 }
126
127 $logDateClause = '';
128 if ($this->log_date) {
129 $params[2] = [$this->log_date, 'String'];
130 $logDateClause = "
131 AND lt.log_date BETWEEN DATE_SUB(%2, INTERVAL {$this->interval}) AND DATE_ADD(%2, INTERVAL {$this->interval})
132 ";
133 }
134
135 // find ids in this table that were affected in the given connection (based on connection id and a ±10 s time period around the date)
136 $sql = "
137 SELECT DISTINCT lt.id FROM `{$this->db}`.`log_$table` lt
138 {$join}
139 WHERE lt.log_conn_id = %1
140 $logDateClause
141 {$contactIdClause}";
142 $dao = CRM_Core_DAO::executeQuery($sql, $params);
143 while ($dao->fetch()) {
144 $diffs = array_merge($diffs, $this->diffsInTableForId($table, $dao->id));
145 }
146
147 return $diffs;
148 }
149
150 /**
151 * @param $table
152 * @param int $id
153 *
154 * @return array
155 * @throws \CRM_Core_Exception
156 */
157 private function diffsInTableForId($table, $id) {
158 $diffs = [];
159
160 $params = [
161 1 => [$this->log_conn_id, 'String'],
162 3 => [$id, 'Integer'],
163 ];
164
165 // look for all the changes in the given connection that happened less than {$this->interval} s later than log_date to the given id to catch multi-query changes
166 $logDateClause = "";
167 if ($this->log_date && $this->interval) {
168 $logDateClause = " AND log_date >= %2 AND log_date < DATE_ADD(%2, INTERVAL {$this->interval})";
169 $params[2] = [$this->log_date, 'String'];
170 }
171
172 $changedSQL = "SELECT * FROM `{$this->db}`.`log_$table` WHERE log_conn_id = %1 $logDateClause AND id = %3 ORDER BY log_date DESC LIMIT 1";
173
174 $changedDAO = CRM_Core_DAO::executeQuery($changedSQL, $params);
175 while ($changedDAO->fetch()) {
176 if (empty($this->log_date) && !self::checkLogCanBeUsedWithNoLogDate($changedDAO->log_date)) {
177 throw new CRM_Core_Exception('The connection date must be passed in to disambiguate this logging entry per CRM-18193');
178 }
179 $changed = $changedDAO->toArray();
180
181 // return early if nothing found
182 if (empty($changed)) {
183 continue;
184 }
185
186 switch ($changed['log_action']) {
187 case 'Delete':
188 // the previous state is kept in the current state, current should keep the keys and clear the values
189 $original = $changed;
190 foreach ($changed as & $val) {
191 $val = NULL;
192 }
193 $changed['log_action'] = 'Delete';
194 break;
195
196 case 'Insert':
197 // the previous state does not exist
198 $original = [];
199 break;
200
201 case 'Update':
202 $params[2] = [$changedDAO->log_date, 'String'];
203 // look for the previous state (different log_conn_id) of the given id
204 $originalSQL = "SELECT * FROM `{$this->db}`.`log_$table` WHERE log_conn_id != %1 AND log_date < %2 AND id = %3 ORDER BY log_date DESC LIMIT 1";
205 $original = $this->sqlToArray($originalSQL, $params);
206 if (empty($original)) {
207 // A blank original array is not possible for Update action, otherwise we 'll end up displaying all information
208 // in $changed variable as updated-info
209 $original = $changed;
210 }
211
212 break;
213 }
214
215 // populate $diffs with only the differences between $changed and $original
216 $skipped = ['log_action', 'log_conn_id', 'log_date', 'log_user_id'];
217 foreach (array_keys(array_diff_assoc($changed, $original)) as $diff) {
218 if (in_array($diff, $skipped)) {
219 continue;
220 }
221
222 if (CRM_Utils_Array::value($diff, $original) === CRM_Utils_Array::value($diff, $changed)) {
223 continue;
224 }
225
226 // hack: case_type_id column is a varchar with separator. For proper mapping to type labels,
227 // we need to make sure separators are trimmed
228 if ($diff == 'case_type_id') {
229 foreach (['original', 'changed'] as $var) {
230 if (!empty(${$var[$diff]})) {
231 $holder =& $$var;
232 $val = explode(CRM_Case_BAO_Case::VALUE_SEPARATOR, $holder[$diff]);
233 $holder[$diff] = $val[1] ?? NULL;
234 }
235 }
236 }
237
238 $diffs[] = [
239 'action' => $changed['log_action'],
240 'id' => $id,
241 'field' => $diff,
242 'from' => $original[$diff] ?? NULL,
243 'to' => $changed[$diff] ?? NULL,
244 'table' => $table,
245 'log_date' => $changed['log_date'],
246 'log_conn_id' => $changed['log_conn_id'],
247 ];
248 }
249 }
250
251 return $diffs;
252 }
253
254 /**
255 * Get the titles & metadata option values for the table.
256 *
257 * For custom fields the titles may change so we use the ones as at the reference date.
258 *
259 * @param string $table
260 * @param string $referenceDate
261 *
262 * @return array
263 */
264 public function titlesAndValuesForTable($table, $referenceDate) {
265 // static caches for subsequent calls with the same $table
266 static $titles = [];
267 static $values = [];
268
269 if (!isset($titles[$table]) or !isset($values[$table])) {
270 if (($tableDAO = CRM_Core_DAO_AllCoreTables::getClassForTable($table)) != FALSE) {
271 // FIXME: these should be populated with pseudo constants as they
272 // were at the time of logging rather than their current values
273 // FIXME: Use *_BAO:buildOptions() method rather than pseudoconstants & fetch programmatically
274 $values[$table] = [
275 'contribution_page_id' => CRM_Contribute_PseudoConstant::contributionPage(),
276 'contribution_status_id' => CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'label'),
277 'financial_type_id' => CRM_Contribute_PseudoConstant::financialType(),
278 'country_id' => CRM_Core_PseudoConstant::country(),
279 'gender_id' => CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'gender_id'),
280 'location_type_id' => CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id'),
281 'payment_instrument_id' => CRM_Contribute_PseudoConstant::paymentInstrument(),
282 'phone_type_id' => CRM_Core_PseudoConstant::get('CRM_Core_DAO_Phone', 'phone_type_id'),
283 'preferred_communication_method' => CRM_Contact_BAO_Contact::buildOptions('preferred_communication_method'),
284 'preferred_language' => CRM_Contact_BAO_Contact::buildOptions('preferred_language'),
285 'prefix_id' => CRM_Contact_BAO_Contact::buildOptions('prefix_id'),
286 'provider_id' => CRM_Core_PseudoConstant::get('CRM_Core_DAO_IM', 'provider_id'),
287 'state_province_id' => CRM_Core_PseudoConstant::stateProvince(),
288 'suffix_id' => CRM_Contact_BAO_Contact::buildOptions('suffix_id'),
289 'website_type_id' => CRM_Core_PseudoConstant::get('CRM_Core_DAO_Website', 'website_type_id'),
290 'activity_type_id' => CRM_Core_PseudoConstant::activityType(TRUE, TRUE, FALSE, 'label', TRUE),
291 'case_type_id' => CRM_Case_PseudoConstant::caseType('title', FALSE),
292 'priority_id' => CRM_Core_PseudoConstant::get('CRM_Activity_DAO_Activity', 'priority_id'),
293 'record_type_id' => CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'get'),
294 ];
295
296 // for columns that appear in more than 1 table
297 switch ($table) {
298 case 'civicrm_case':
299 $values[$table]['status_id'] = CRM_Case_PseudoConstant::caseStatus('label', FALSE);
300 break;
301
302 case 'civicrm_activity':
303 $values[$table]['status_id'] = CRM_Core_PseudoConstant::activityStatus();
304 break;
305 }
306
307 $dao = new $tableDAO();
308 foreach ($dao->fields() as $field) {
309 $titles[$table][$field['name']] = $field['title'] ?? NULL;
310
311 if ($field['type'] == CRM_Utils_Type::T_BOOLEAN) {
312 $values[$table][$field['name']] = ['0' => ts('false'), '1' => ts('true')];
313 }
314 }
315 }
316 elseif (substr($table, 0, 14) == 'civicrm_value_') {
317 list($titles[$table], $values[$table]) = $this->titlesAndValuesForCustomDataTable($table, $referenceDate);
318 }
319 else {
320 $titles[$table] = $values[$table] = [];
321 }
322 }
323
324 return [$titles[$table], $values[$table]];
325 }
326
327 /**
328 * @param $sql
329 * @param array $params
330 *
331 * @return mixed
332 */
333 private function sqlToArray($sql, $params) {
334 $dao = CRM_Core_DAO::executeQuery($sql, $params);
335 $dao->fetch();
336 return $dao->toArray();
337 }
338
339 /**
340 * Get the field titles & option group values for the custom table as at the reference date.
341 *
342 * @param string $table
343 * @param string $referenceDate
344 *
345 * @return array
346 */
347 private function titlesAndValuesForCustomDataTable($table, $referenceDate) {
348 $titles = [];
349 $values = [];
350
351 $params = [
352 1 => [$this->log_conn_id, 'String'],
353 2 => [$referenceDate, 'String'],
354 3 => [$table, 'String'],
355 ];
356
357 $sql = "SELECT id, title FROM `{$this->db}`.log_civicrm_custom_group WHERE log_date <= %2 AND table_name = %3 ORDER BY log_date DESC LIMIT 1";
358 $cgDao = CRM_Core_DAO::executeQuery($sql, $params);
359 $cgDao->fetch();
360
361 $params[3] = [$cgDao->id, 'Integer'];
362 $sql = "
363 SELECT column_name, data_type, label, name, option_group_id
364 FROM `{$this->db}`.log_civicrm_custom_field
365 WHERE log_date <= %2
366 AND custom_group_id = %3
367 ORDER BY log_date
368 ";
369 $cfDao = CRM_Core_DAO::executeQuery($sql, $params);
370
371 while ($cfDao->fetch()) {
372 $titles[$cfDao->column_name] = "{$cgDao->title}: {$cfDao->label}";
373
374 switch ($cfDao->data_type) {
375 case 'Boolean':
376 $values[$cfDao->column_name] = ['0' => ts('false'), '1' => ts('true')];
377 break;
378
379 case 'String':
380 $values[$cfDao->column_name] = [];
381 if (!empty($cfDao->option_group_id)) {
382 $params[3] = [$cfDao->option_group_id, 'Integer'];
383 $sql = "
384 SELECT label, value
385 FROM `{$this->db}`.log_civicrm_option_value
386 WHERE log_date <= %2
387 AND option_group_id = %3
388 ORDER BY log_date
389 ";
390 $ovDao = CRM_Core_DAO::executeQuery($sql, $params);
391 while ($ovDao->fetch()) {
392 $values[$cfDao->column_name][$ovDao->value] = $ovDao->label;
393 }
394 }
395 break;
396 }
397 }
398
399 return [$titles, $values];
400 }
401
402 /**
403 * Get all changes made in the connection.
404 *
405 * @param array $tables
406 * Array of tables to inspect.
407 * @param int $limit
408 * Limit result to x
409 * @param int $offset
410 * Offset result to y
411 *
412 * @return array
413 */
414 public function getAllChangesForConnection($tables, $limit = 0, $offset = 0) {
415 $params = [
416 1 => [$this->log_conn_id, 'String'],
417 2 => [$limit, 'Integer'],
418 3 => [$offset, 'Integer'],
419 ];
420
421 foreach ($tables as $table) {
422 if (empty($sql)) {
423 $sql = " SELECT '{$table}' as table_name, id FROM {$this->db}.log_{$table} WHERE log_conn_id = %1";
424 }
425 else {
426 $sql .= " UNION SELECT '{$table}' as table_name, id FROM {$this->db}.log_{$table} WHERE log_conn_id = %1";
427 }
428 }
429 if ($limit) {
430 $sql .= " LIMIT %2";
431 }
432 if ($offset) {
433 $sql .= " OFFSET %3";
434 }
435 $diffs = [];
436 $dao = CRM_Core_DAO::executeQuery($sql, $params);
437 while ($dao->fetch()) {
438 if (empty($this->log_date)) {
439 // look for available table in above query instead of looking for last table. this will avoid multiple loops
440 $this->log_date = CRM_Core_DAO::singleValueQuery("SELECT log_date FROM {$this->db}.log_{$dao->table_name} WHERE log_conn_id = %1 LIMIT 1", $params);
441 }
442 $diffs = array_merge($diffs, $this->diffsInTableForId($dao->table_name, $dao->id));
443 }
444 return $diffs;
445 }
446
447 /**
448 * Get count of all changes made in the connection.
449 *
450 * @param array $tables
451 * Array of tables to inspect.
452 *
453 * @return array
454 */
455 public function getCountOfAllContactChangesForConnection($tables) {
456 $count = 0;
457 $params = [1 => [$this->log_conn_id, 'String']];
458 foreach ($tables as $table) {
459 if (empty($sql)) {
460 $sql = " SELECT '{$table}' as table_name, id FROM {$this->db}.log_{$table} WHERE log_conn_id = %1";
461 }
462 else {
463 $sql .= " UNION SELECT '{$table}' as table_name, id FROM {$this->db}.log_{$table} WHERE log_conn_id = %1";
464 }
465 }
466 $countSQL = " SELECT count(*) as countOfContacts FROM ({$sql}) count";
467 $count = CRM_Core_DAO::singleValueQuery($countSQL, $params);
468 return $count;
469 }
470
471 /**
472 * Check that the log record relates to a unique log id.
473 *
474 * If the record was recorded using the old non-unique style then the
475 * log_date
476 * MUST be set to get the (fairly accurate) list of changes. In this case the
477 * nasty 10 second interval rule is applied.
478 *
479 * See CRM-18193 for a discussion of unique log id.
480 *
481 * @param string $change_date
482 *
483 * @return bool
484 * @throws \CiviCRM_API3_Exception
485 */
486 public static function checkLogCanBeUsedWithNoLogDate($change_date) {
487
488 if (civicrm_api3('Setting', 'getvalue', ['name' => 'logging_all_tables_uniquid', 'group' => 'CiviCRM Preferences'])) {
489 return TRUE;
490 };
491 $uniqueDate = civicrm_api3('Setting', 'getvalue', [
492 'name' => 'logging_uniqueid_date',
493 'group' => 'CiviCRM Preferences',
494 ]);
495 if (strtotime($uniqueDate) <= strtotime($change_date)) {
496 return TRUE;
497 }
498 else {
499 return FALSE;
500 }
501
502 }
503
504 /**
505 * Filter a MySQL interval expression.
506 *
507 * @param string $interval
508 * @return string
509 * Normalized version of $interval
510 * @throws \CRM_Core_Exception
511 * If the expression is invalid.
512 * @see https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_date-add
513 */
514 private static function filterInterval($interval) {
515 if (empty($interval)) {
516 return $interval;
517 }
518
519 $units = ['MICROSECOND', 'SECOND', 'MINUTE', 'HOUR', 'DAY', 'WEEK', 'MONTH', 'QUARTER', 'YEAR'];
520 $interval = strtoupper($interval);
521 if (preg_match('/^([0-9]+) ([A-Z]+)$/', $interval, $matches)) {
522 if (in_array($matches[2], $units)) {
523 return $interval;
524 }
525 }
526 if (preg_match('/^\'([0-9: \.\-]+)\' ([A-Z]+)_([A-Z]+)$/', $interval, $matches)) {
527 if (in_array($matches[2], $units) && in_array($matches[3], $units)) {
528 return $interval;
529 }
530 }
531 throw new CRM_Core_Exception("Malformed interval");
532 }
533
534 }