Merge pull request #20685 from jaapjansma/dev_financials_6_contactsummary_3
[civicrm-core.git] / CRM / Logging / ReportDetail.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_ReportDetail extends CRM_Report_Form {
18
19 const ROW_COUNT_LIMIT = 50;
20 protected $cid;
21
22 /**
23 * Other contact ID.
24 *
25 * This would be set if we are viewing a merge of 2 contacts.
26 *
27 * @var int
28 */
29 protected $oid;
30 protected $db;
31 protected $log_conn_id;
32 protected $log_date;
33 protected $raw;
34 protected $tables = [];
35 protected $interval = '10 SECOND';
36
37 protected $altered_name;
38 protected $altered_by;
39 protected $altered_by_id;
40
41 /**
42 * detail/summary report ids
43 * @var int
44 */
45 protected $detail;
46 protected $summary;
47
48 /**
49 * Instance of Differ.
50 *
51 * @var CRM_Logging_Differ
52 */
53 protected $differ;
54
55 /**
56 * Array of changes made.
57 *
58 * @var array
59 */
60 protected $diffs = [];
61
62 /**
63 * Don't display the Add these contacts to Group button.
64 *
65 * @var bool
66 */
67 protected $_add2groupSupported = FALSE;
68
69 /**
70 * Class constructor.
71 */
72 public function __construct() {
73
74 $this->storeDB();
75
76 $this->parsePropertiesFromUrl();
77
78 parent::__construct();
79
80 CRM_Utils_System::resetBreadCrumb();
81 $breadcrumb = [
82 [
83 'title' => ts('Home'),
84 'url' => CRM_Utils_System::url(),
85 ],
86 [
87 'title' => ts('CiviCRM'),
88 'url' => CRM_Utils_System::url('civicrm', 'reset=1'),
89 ],
90 [
91 'title' => ts('View Contact'),
92 'url' => CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$this->cid}"),
93 ],
94 [
95 'title' => ts('Search Results'),
96 'url' => CRM_Utils_System::url('civicrm/contact/search', "force=1"),
97 ],
98 ];
99 CRM_Utils_System::appendBreadCrumb($breadcrumb);
100
101 if (CRM_Utils_Request::retrieve('revert', 'Boolean')) {
102 $this->revert();
103 }
104
105 $this->_columnHeaders = [
106 'field' => ['title' => ts('Field'), 'type' => CRM_Utils_Type::T_STRING],
107 'from' => ['title' => ts('Changed From'), 'type' => CRM_Utils_Type::T_STRING],
108 'to' => ['title' => ts('Changed To'), 'type' => CRM_Utils_Type::T_STRING],
109 ];
110 }
111
112 /**
113 * Build query for report.
114 *
115 * We override this to be empty & calculate the rows in the buildRows function.
116 *
117 * @param bool $applyLimit
118 */
119 public function buildQuery($applyLimit = TRUE) {
120 }
121
122 /**
123 * Build rows from query.
124 *
125 * @param string $sql
126 * @param array $rows
127 */
128 public function buildRows($sql, &$rows) {
129 // safeguard for when there aren’t any log entries yet
130 if (!$this->log_conn_id && !$this->log_date) {
131 return;
132 }
133 $this->getDiffs();
134 $rows = $this->convertDiffsToRows();
135 }
136
137 /**
138 * Get the diffs for the report, calculating them if not already done.
139 *
140 * Note that contact details report now uses a more comprehensive method but
141 * the contribution logging details report still uses this.
142 *
143 * @return array
144 */
145 protected function getDiffs() {
146 if (empty($this->diffs)) {
147 foreach ($this->tables as $table) {
148 $this->diffs = array_merge($this->diffs, $this->diffsInTable($table));
149 }
150 }
151 return $this->diffs;
152 }
153
154 /**
155 * @param $table
156 *
157 * @return array
158 */
159 protected function diffsInTable($table) {
160 $this->setDiffer();
161 return $this->differ->diffsInTable($table, $this->cid);
162 }
163
164 /**
165 * Convert the diffs to row format.
166 *
167 * @return array
168 */
169 protected function convertDiffsToRows() {
170 // return early if nothing found
171 if (empty($this->diffs)) {
172 return [];
173 }
174
175 // populate $rows with only the differences between $changed and $original (skipping certain columns and NULL ↔ empty changes unless raw requested)
176 $skipped = ['id'];
177 $nRows = $rows = [];
178 foreach ($this->diffs as $diff) {
179 $table = $diff['table'];
180 if (empty($metadata[$table])) {
181 list($metadata[$table]['titles'], $metadata[$table]['values']) = $this->differ->titlesAndValuesForTable($table, $diff['log_date']);
182 }
183 $values = CRM_Utils_Array::value('values', $metadata[$diff['table']], []);
184 $titles = $metadata[$diff['table']]['titles'];
185 $field = $diff['field'];
186 $from = $diff['from'];
187 $to = $diff['to'];
188
189 if ($this->raw) {
190 $field = "$table.$field";
191 }
192 else {
193 if (in_array($field, $skipped)) {
194 continue;
195 }
196 // $differ filters out === values; for presentation hide changes like 42 → '42'
197 if ($from == $to) {
198 continue;
199 }
200
201 // special-case for multiple values. Also works for CRM-7251: preferred_communication_method
202 if ((substr($from, 0, 1) == CRM_Core_DAO::VALUE_SEPARATOR &&
203 substr($from, -1, 1) == CRM_Core_DAO::VALUE_SEPARATOR) ||
204 (substr($to, 0, 1) == CRM_Core_DAO::VALUE_SEPARATOR &&
205 substr($to, -1, 1) == CRM_Core_DAO::VALUE_SEPARATOR)
206 ) {
207 $froms = $tos = [];
208 foreach (explode(CRM_Core_DAO::VALUE_SEPARATOR, trim($from, CRM_Core_DAO::VALUE_SEPARATOR)) as $val) {
209 $froms[] = $values[$field][$val] ?? NULL;
210 }
211 foreach (explode(CRM_Core_DAO::VALUE_SEPARATOR, trim($to, CRM_Core_DAO::VALUE_SEPARATOR)) as $val) {
212 $tos[] = $values[$field][$val] ?? NULL;
213 }
214 $from = implode(', ', array_filter($froms));
215 $to = implode(', ', array_filter($tos));
216 }
217
218 if (isset($values[$field][$from])) {
219 $from = $values[$field][$from];
220 }
221 if (isset($values[$field][$to])) {
222 $to = $values[$field][$to];
223 }
224 if (isset($titles[$field])) {
225 $field = $titles[$field];
226 }
227 if ($diff['action'] == 'Insert') {
228 $from = '';
229 }
230 if ($diff['action'] == 'Delete') {
231 $to = '';
232 }
233 }
234 // Rework the results to provide grouping based on the ID
235 // We don't need that field displayed so we will output empty
236 if ($field == 'Modified Date') {
237 $nRows[$diff['id']][] = ['field' => '', 'from' => $from, 'to' => $to];
238 }
239 else {
240 $nRows[$diff['id']][] = ['field' => $field . " (id: {$diff['id']})", 'from' => $from, 'to' => $to];
241 }
242 }
243 // Transform the output so that we can compact the changes into the proper amount of rows IF trData is holding more than 1 array
244 foreach ($nRows as $trData) {
245 if (count($trData) > 1) {
246 $keys = array_intersect(...array_map('array_keys', $trData));
247 $mergedRes = array_combine($keys, array_map(function ($key) use ($trData) {
248 // If more than 1 entry is found, we are assigning them as subarrays, then the tpls will be responsible for concatenating the results
249 return array_column($trData, $key);
250 }, $keys));
251 $rows[] = $mergedRes;
252 }
253 else {
254 // We always need the first row of that array
255 $rows[] = $trData[0];
256 }
257
258 }
259 return $rows;
260 }
261
262 public function buildQuickForm() {
263 parent::buildQuickForm();
264
265 $this->assign('whom_url', CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$this->cid}"));
266 $this->assign('who_url', CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$this->altered_by_id}"));
267 $this->assign('whom_name', $this->altered_name);
268 $this->assign('who_name', $this->altered_by);
269
270 $this->assign('log_date', CRM_Utils_Date::mysqlToIso($this->log_date));
271
272 $q = "reset=1&log_conn_id={$this->log_conn_id}&log_date={$this->log_date}";
273 if ($this->oid) {
274 $q .= '&oid=' . $this->oid;
275 }
276 $this->assign('revertURL', CRM_Report_Utils_Report::getNextUrl($this->detail, "$q&revert=1", FALSE, TRUE));
277 $this->assign('revertConfirm', ts('Are you sure you want to revert all changes?'));
278 $this->assign('sections', []);
279 }
280
281 /**
282 * Store the dsn for the logging database in $this->db.
283 */
284 protected function storeDB() {
285 $dsn = defined('CIVICRM_LOGGING_DSN') ? CRM_Utils_SQL::autoSwitchDSN(CIVICRM_LOGGING_DSN) : CRM_Utils_SQL::autoSwitchDSN(CIVICRM_DSN);
286 $dsn = DB::parseDSN($dsn);
287 $this->db = $dsn['database'];
288 }
289
290 /**
291 * Calculate all the contact related diffs for the change.
292 */
293 protected function calculateContactDiffs() {
294 $this->_rowsFound = $this->getCountOfAllContactChangesForConnection();
295 // Apply some limits before asking for all contact changes
296 $this->getLimit();
297 $this->diffs = $this->getAllContactChangesForConnection();
298 }
299
300 /**
301 * Get an array of changes made in the mysql connection.
302 *
303 * @return mixed
304 */
305 public function getAllContactChangesForConnection() {
306 if (empty($this->log_conn_id)) {
307 return [];
308 }
309 $this->setDiffer();
310 try {
311 return $this->differ->getAllChangesForConnection($this->tables, $this->dblimit, $this->dboffset);
312 }
313 catch (CRM_Core_Exception $e) {
314 CRM_Core_Error::statusBounce($e->getMessage());
315 }
316 }
317
318 /**
319 * Get an count of contacts with changes.
320 *
321 * @return mixed
322 */
323 public function getCountOfAllContactChangesForConnection() {
324 if (empty($this->log_conn_id)) {
325 return [];
326 }
327 $this->setDiffer();
328 try {
329 return $this->differ->getCountOfAllContactChangesForConnection($this->tables);
330 }
331 catch (CRM_Core_Exception $e) {
332 CRM_Core_Error::statusBounce($e->getMessage());
333 }
334 }
335
336 /**
337 * Make sure the differ is defined.
338 */
339 protected function setDiffer() {
340 if (empty($this->differ)) {
341 $this->differ = new CRM_Logging_Differ($this->log_conn_id, $this->log_date, $this->interval);
342 }
343 }
344
345 /**
346 * Set this tables to reflect tables changed in a merge.
347 */
348 protected function setTablesToContactRelatedTables() {
349 $schema = new CRM_Logging_Schema();
350 $this->tables = $schema->getLogTablesForContact();
351 // allow tables to be extended by report hook query objects.
352 // This is a report specific hook. It's unclear how it interacts to / overlaps the main one.
353 // It probably precedes the main one and was never reconciled with it....
354 CRM_Report_BAO_Hook::singleton()->alterLogTables($this, $this->tables);
355 }
356
357 /**
358 * Revert the changes defined by the parameters.
359 */
360 protected function revert() {
361 $reverter = new CRM_Logging_Reverter($this->log_conn_id, $this->log_date);
362 $reverter->calculateDiffsFromLogConnAndDate($this->tables);
363 $reverter->revert();
364 CRM_Core_Session::setStatus(ts('The changes have been reverted.'), ts('Reverted'), 'success');
365 if ($this->cid) {
366 if ($this->oid) {
367 CRM_Utils_System::redirect(CRM_Utils_System::url(
368 'civicrm/contact/merge',
369 "reset=1&cid={$this->cid}&oid={$this->oid}",
370 FALSE,
371 NULL,
372 FALSE)
373 );
374 }
375 else {
376 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contact/view', "reset=1&selectedChild=log&cid={$this->cid}", FALSE, NULL, FALSE));
377 }
378 }
379 else {
380 CRM_Utils_System::redirect(CRM_Report_Utils_Report::getNextUrl($this->summary, 'reset=1', FALSE, TRUE));
381 }
382 }
383
384 /**
385 * Get the properties that might be in the URL.
386 */
387 protected function parsePropertiesFromUrl() {
388 $this->log_conn_id = CRM_Utils_Request::retrieve('log_conn_id', 'String');
389 $this->log_date = CRM_Utils_Request::retrieve('log_date', 'String');
390 $this->cid = CRM_Utils_Request::retrieve('cid', 'Integer');
391 $this->raw = CRM_Utils_Request::retrieve('raw', 'Boolean');
392
393 $this->altered_name = CRM_Utils_Request::retrieve('alteredName', 'String');
394 $this->altered_by = CRM_Utils_Request::retrieve('alteredBy', 'String');
395 $this->altered_by_id = CRM_Utils_Request::retrieve('alteredById', 'Integer');
396 $this->layout = CRM_Utils_Request::retrieve('layout', 'String');
397 }
398
399 /**
400 * Override to set limit
401 * @param int $rowCount
402 */
403 public function limit($rowCount = self::ROW_COUNT_LIMIT) {
404 parent::limit($rowCount);
405 }
406
407 /**
408 * Override to set pager with limit
409 * @param int $rowCount
410 */
411 public function setPager($rowCount = self::ROW_COUNT_LIMIT) {
412 // We should not be rendering the pager in overlay mode
413 if (!isset($this->layout)) {
414 $this->_dashBoardRowCount = $rowCount;
415 $this->_limit = TRUE;
416 parent::setPager($rowCount);
417 }
418 }
419
420 /**
421 * This is a function similar to limit, in fact we copied it as-is and removed
422 * some `set` statements
423 *
424 */
425 public function getLimit($rowCount = self::ROW_COUNT_LIMIT) {
426 if ($this->addPaging) {
427
428 $pageId = CRM_Utils_Request::retrieve('crmPID', 'Integer');
429
430 // @todo all http vars should be extracted in the preProcess
431 // - not randomly in the class
432 if (!$pageId && !empty($_POST)) {
433 if (isset($_POST['PagerBottomButton']) && isset($_POST['crmPID_B'])) {
434 $pageId = max((int) $_POST['crmPID_B'], 1);
435 }
436 elseif (isset($_POST['PagerTopButton']) && isset($_POST['crmPID'])) {
437 $pageId = max((int) $_POST['crmPID'], 1);
438 }
439 unset($_POST['crmPID_B'], $_POST['crmPID']);
440 }
441
442 $pageId = $pageId ? $pageId : 1;
443 $offset = ($pageId - 1) * $rowCount;
444
445 $offset = CRM_Utils_Type::escape($offset, 'Int');
446 $rowCount = CRM_Utils_Type::escape($rowCount, 'Int');
447 $this->_limit = " LIMIT $offset, $rowCount";
448 $this->dblimit = $rowCount;
449 $this->dboffset = $offset;
450 }
451 }
452
453 }