Merge pull request #11773 from civicrm/4.7.31-rc
[civicrm-core.git] / CRM / Logging / ReportSummary.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
32 * $Id$
33 */
34 class CRM_Logging_ReportSummary extends CRM_Report_Form {
35 protected $cid;
36
37 protected $_logTables = array();
38
39 protected $loggingDB;
40
41 /**
42 * The log table currently being processed.
43 *
44 * @var string
45 */
46 protected $currentLogTable;
47
48 /**
49 * Class constructor.
50 */
51 public function __construct() {
52 // don’t display the ‘Add these Contacts to Group’ button
53 $this->_add2groupSupported = FALSE;
54
55 $dsn = defined('CIVICRM_LOGGING_DSN') ? DB::parseDSN(CIVICRM_LOGGING_DSN) : DB::parseDSN(CIVICRM_DSN);
56 $this->loggingDB = $dsn['database'];
57
58 // used for redirect back to contact summary
59 $this->cid = CRM_Utils_Request::retrieve('cid', 'Integer');
60
61 $this->_logTables = array(
62 'log_civicrm_contact' => array(
63 'fk' => 'id',
64 ),
65 'log_civicrm_email' => array(
66 'fk' => 'contact_id',
67 'log_type' => 'Contact',
68 ),
69 'log_civicrm_phone' => array(
70 'fk' => 'contact_id',
71 'log_type' => 'Contact',
72 ),
73 'log_civicrm_address' => array(
74 'fk' => 'contact_id',
75 'log_type' => 'Contact',
76 ),
77 'log_civicrm_note' => array(
78 'fk' => 'entity_id',
79 'entity_table' => TRUE,
80 'bracket_info' => array(
81 'table' => 'log_civicrm_note',
82 'column' => 'subject',
83 ),
84 ),
85 'log_civicrm_note_comment' => array(
86 'fk' => 'entity_id',
87 'table_name' => 'log_civicrm_note',
88 'joins' => array(
89 'table' => 'log_civicrm_note',
90 'join' => "entity_log_civireport.entity_id = fk_table.id AND entity_log_civireport.entity_table = 'civicrm_note'",
91 ),
92 'entity_table' => TRUE,
93 'bracket_info' => array(
94 'table' => 'log_civicrm_note',
95 'column' => 'subject',
96 ),
97 ),
98 'log_civicrm_group_contact' => array(
99 'fk' => 'contact_id',
100 'bracket_info' => array(
101 'entity_column' => 'group_id',
102 'table' => 'log_civicrm_group',
103 'column' => 'title',
104 ),
105 'action_column' => 'status',
106 'log_type' => 'Group',
107 ),
108 'log_civicrm_entity_tag' => array(
109 'fk' => 'entity_id',
110 'bracket_info' => array(
111 'entity_column' => 'tag_id',
112 'table' => 'log_civicrm_tag',
113 'column' => 'name',
114 ),
115 'entity_table' => TRUE,
116 ),
117 'log_civicrm_relationship' => array(
118 'fk' => 'contact_id_a',
119 'bracket_info' => array(
120 'entity_column' => 'relationship_type_id',
121 'table' => 'log_civicrm_relationship_type',
122 'column' => 'label_a_b',
123 ),
124 ),
125 'log_civicrm_activity_contact' => array(
126 'fk' => 'contact_id',
127 'table_name' => 'log_civicrm_activity_contact',
128 'log_type' => 'Activity',
129 'field' => 'activity_id',
130 'extra_joins' => array(
131 'table' => 'log_civicrm_activity',
132 'join' => 'extra_table.id = entity_log_civireport.activity_id',
133 ),
134
135 'bracket_info' => array(
136 'entity_column' => 'activity_type_id',
137 'options' => CRM_Core_PseudoConstant::activityType(TRUE, TRUE, FALSE, 'label', TRUE),
138 'lookup_table' => 'log_civicrm_activity',
139 ),
140 ),
141 'log_civicrm_case' => array(
142 'fk' => 'contact_id',
143 'joins' => array(
144 'table' => 'log_civicrm_case_contact',
145 'join' => 'entity_log_civireport.id = fk_table.case_id',
146 ),
147 'bracket_info' => array(
148 'entity_column' => 'case_type_id',
149 'options' => CRM_Case_BAO_Case::buildOptions('case_type_id', 'search'),
150 ),
151 ),
152 );
153
154 $logging = new CRM_Logging_Schema();
155
156 // build _logTables for contact custom tables
157 $customTables = $logging->entityCustomDataLogTables('Contact');
158 foreach ($customTables as $table) {
159 $this->_logTables[$table] = array(
160 'fk' => 'entity_id',
161 'log_type' => 'Contact',
162 );
163 }
164
165 // build _logTables for address custom tables
166 $customTables = $logging->entityCustomDataLogTables('Address');
167 foreach ($customTables as $table) {
168 $this->_logTables[$table] = array(
169 // For join of fk_table with contact table.
170 'fk' => 'contact_id',
171 'joins' => array(
172 // fk_table
173 'table' => 'log_civicrm_address',
174 'join' => 'entity_log_civireport.entity_id = fk_table.id',
175 ),
176 'log_type' => 'Contact',
177 );
178 }
179
180 // Allow log tables to be extended via report hooks.
181 CRM_Report_BAO_Hook::singleton()->alterLogTables($this, $this->_logTables);
182
183 parent::__construct();
184 }
185
186 public function groupBy() {
187 $this->_groupBy = 'GROUP BY entity_log_civireport.log_conn_id, entity_log_civireport.log_user_id, EXTRACT(DAY_MICROSECOND FROM entity_log_civireport.log_date), entity_log_civireport.id';
188 }
189
190 /**
191 * Adjust query for the activity_contact table.
192 *
193 * As this is just a join table the ID we REALLY care about is the activity id.
194 *
195 * @param string $tableName
196 * @param string $tableKey
197 * @param string $fieldName
198 * @param string $field
199 *
200 * @return string
201 */
202 public function selectClause(&$tableName, $tableKey, &$fieldName, &$field) {
203 if ($this->currentLogTable == 'log_civicrm_activity_contact' && $fieldName == 'id') {
204 $alias = "{$tableName}_{$fieldName}";
205 $select[] = "{$tableName}.activity_id as $alias";
206 $this->_selectAliases[] = $alias;
207 return "activity_id";
208 }
209 if ($fieldName == 'log_grouping') {
210 if ($this->currentLogTable != 'log_civicrm_activity_contact') {
211 return 1;
212 }
213 $mergeActivityID = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Contact Merged');
214 return " IF (entity_log_civireport.log_action = 'Insert' AND extra_table.activity_type_id = $mergeActivityID , GROUP_CONCAT(entity_log_civireport.contact_id), 1) ";
215 }
216 }
217
218 public function where() {
219 // reset where clause as its called multiple times, every time insert sql is built.
220 $this->_whereClauses = array();
221
222 parent::where();
223 $this->_where .= " AND (entity_log_civireport.log_action != 'Initialization')";
224 }
225
226 public function postProcess() {
227 $this->beginPostProcess();
228 $rows = array();
229
230 $tempColumns = "id int(10), log_civicrm_entity_log_grouping varchar(32)";
231 if (!empty($this->_params['fields']['log_action'])) {
232 $tempColumns .= ", log_action varchar(64)";
233 }
234 $tempColumns .= ", log_type varchar(64), log_user_id int(10), log_date timestamp";
235 if (!empty($this->_params['fields']['altered_contact'])) {
236 $tempColumns .= ", altered_contact varchar(128)";
237 }
238 $tempColumns .= ", altered_contact_id int(10), log_conn_id varchar(17), is_deleted tinyint(4)";
239 if (!empty($this->_params['fields']['display_name'])) {
240 $tempColumns .= ", display_name varchar(128)";
241 }
242
243 // temp table to hold all altered contact-ids
244 $sql = "CREATE TEMPORARY TABLE civicrm_temp_civireport_logsummary ( {$tempColumns} ) ENGINE=HEAP";
245 CRM_Core_DAO::executeQuery($sql);
246
247 $logTypes = CRM_Utils_Array::value('log_type_value', $this->_params);
248 unset($this->_params['log_type_value']);
249 if (empty($logTypes)) {
250 foreach (array_keys($this->_logTables) as $table) {
251 $type = $this->getLogType($table);
252 $logTypes[$type] = $type;
253 }
254 }
255
256 $logTypeTableClause = '(1)';
257 if ($logTypeTableValue = CRM_Utils_Array::value("log_type_table_value", $this->_params)) {
258 $logTypeTableClause = $this->whereClause($this->_columns['log_civicrm_entity']['filters']['log_type_table'],
259 $this->_params['log_type_table_op'], $logTypeTableValue, NULL, NULL);
260 unset($this->_params['log_type_table_value']);
261 }
262
263 foreach ($this->_logTables as $entity => $detail) {
264 if ((in_array($this->getLogType($entity), $logTypes) &&
265 CRM_Utils_Array::value('log_type_op', $this->_params) == 'in') ||
266 (!in_array($this->getLogType($entity), $logTypes) &&
267 CRM_Utils_Array::value('log_type_op', $this->_params) == 'notin')
268 ) {
269 $this->currentLogTable = $entity;
270 $sql = $this->buildQuery(FALSE);
271 $sql = str_replace("entity_log_civireport.log_type as", "'{$entity}' as", $sql);
272 $sql = "INSERT IGNORE INTO civicrm_temp_civireport_logsummary {$sql}";
273 CRM_Core_DAO::executeQuery($sql);
274 }
275 }
276
277 $this->currentLogTable = '';
278
279 // add computed log_type column so that we can do a group by after that, which will help
280 // alterDisplay() counts sync with pager counts
281 $sql = "SELECT DISTINCT log_type FROM civicrm_temp_civireport_logsummary";
282 $dao = CRM_Core_DAO::executeQuery($sql);
283 $replaceWith = array();
284 while ($dao->fetch()) {
285 $type = $this->getLogType($dao->log_type);
286 if (!array_key_exists($type, $replaceWith)) {
287 $replaceWith[$type] = array();
288 }
289 $replaceWith[$type][] = $dao->log_type;
290 }
291 foreach ($replaceWith as $type => $tables) {
292 if (!empty($tables)) {
293 $replaceWith[$type] = implode("','", $tables);
294 }
295 }
296
297 $sql = "ALTER TABLE civicrm_temp_civireport_logsummary ADD COLUMN log_civicrm_entity_log_type_label varchar(64)";
298 CRM_Core_DAO::executeQuery($sql);
299 foreach ($replaceWith as $type => $in) {
300 $sql = "UPDATE civicrm_temp_civireport_logsummary SET log_civicrm_entity_log_type_label='{$type}', log_date=log_date WHERE log_type IN('$in')";
301 CRM_Core_DAO::executeQuery($sql);
302 }
303
304 // note the group by columns are same as that used in alterDisplay as $newRows - $key
305 $this->limit();
306 $this->orderBy();
307 $sql = "{$this->_select}
308 FROM civicrm_temp_civireport_logsummary entity_log_civireport
309 WHERE {$logTypeTableClause}
310 GROUP BY log_civicrm_entity_log_date, log_civicrm_entity_log_type_label, log_civicrm_entity_log_conn_id, log_civicrm_entity_log_user_id, log_civicrm_entity_altered_contact_id, log_civicrm_entity_log_grouping
311 {$this->_orderBy}
312 {$this->_limit} ";
313 $sql = str_replace('modified_contact_civireport.display_name', 'entity_log_civireport.altered_contact', $sql);
314 $sql = str_replace('modified_contact_civireport.id', 'entity_log_civireport.altered_contact_id', $sql);
315 $sql = str_replace(array(
316 'modified_contact_civireport.',
317 'altered_by_contact_civireport.',
318 ), 'entity_log_civireport.', $sql);
319 $this->buildRows($sql, $rows);
320
321 // format result set.
322 $this->formatDisplay($rows);
323
324 // assign variables to templates
325 $this->doTemplateAssignment($rows);
326
327 // do print / pdf / instance stuff if needed
328 $this->endPostProcess($rows);
329 }
330
331 /**
332 * Get log type.
333 *
334 * @param string $entity
335 *
336 * @return string
337 */
338 public function getLogType($entity) {
339 if (!empty($this->_logTables[$entity]['log_type'])) {
340 return $this->_logTables[$entity]['log_type'];
341 }
342 $logType = ucfirst(substr($entity, strrpos($entity, '_') + 1));
343 return $logType;
344 }
345
346 /**
347 * Get entity value.
348 *
349 * @param int $id
350 * @param $entity
351 * @param $logDate
352 *
353 * @return mixed|null|string
354 */
355 public function getEntityValue($id, $entity, $logDate) {
356 if (!empty($this->_logTables[$entity]['bracket_info'])) {
357 if (!empty($this->_logTables[$entity]['bracket_info']['entity_column'])) {
358 $logTable = !empty($this->_logTables[$entity]['table_name']) ? $this->_logTables[$entity]['table_name'] : $entity;
359 if (!empty($this->_logTables[$entity]['bracket_info']['lookup_table'])) {
360 $logTable = $this->_logTables[$entity]['bracket_info']['lookup_table'];
361 }
362 $sql = "
363 SELECT {$this->_logTables[$entity]['bracket_info']['entity_column']}
364 FROM `{$this->loggingDB}`.{$logTable}
365 WHERE log_date <= %1 AND id = %2 ORDER BY log_date DESC LIMIT 1";
366
367 $entityID = CRM_Core_DAO::singleValueQuery($sql, array(
368 1 => array(
369 CRM_Utils_Date::isoToMysql($logDate),
370 'Timestamp',
371 ),
372 2 => array($id, 'Integer'),
373 ));
374 }
375 else {
376 $entityID = $id;
377 }
378
379 if ($entityID && $logDate &&
380 array_key_exists('table', $this->_logTables[$entity]['bracket_info'])
381 ) {
382 $sql = "
383 SELECT {$this->_logTables[$entity]['bracket_info']['column']}
384 FROM `{$this->loggingDB}`.{$this->_logTables[$entity]['bracket_info']['table']}
385 WHERE log_date <= %1 AND id = %2 ORDER BY log_date DESC LIMIT 1";
386 return CRM_Core_DAO::singleValueQuery($sql, array(
387 1 => array(CRM_Utils_Date::isoToMysql($logDate), 'Timestamp'),
388 2 => array($entityID, 'Integer'),
389 ));
390 }
391 else {
392 if (array_key_exists('options', $this->_logTables[$entity]['bracket_info']) &&
393 $entityID
394 ) {
395 return CRM_Utils_Array::value($entityID, $this->_logTables[$entity]['bracket_info']['options']);
396 }
397 }
398 }
399 return NULL;
400 }
401
402 /**
403 * Get entity action.
404 *
405 * @param int $id
406 * @param int $connId
407 * @param $entity
408 * @param $oldAction
409 *
410 * @return null|string
411 */
412 public function getEntityAction($id, $connId, $entity, $oldAction) {
413 if (!empty($this->_logTables[$entity]['action_column'])) {
414 $sql = "select {$this->_logTables[$entity]['action_column']} from `{$this->loggingDB}`.{$entity} where id = %1 AND log_conn_id = %2";
415 $newAction = CRM_Core_DAO::singleValueQuery($sql, array(
416 1 => array($id, 'Integer'),
417 2 => array($connId, 'String'),
418 ));
419
420 switch ($entity) {
421 case 'log_civicrm_group_contact':
422 if ($oldAction !== 'Update') {
423 $newAction = $oldAction;
424 }
425 if ($oldAction == 'Insert') {
426 $newAction = 'Added';
427 }
428 break;
429 }
430 return $newAction;
431 }
432 return NULL;
433 }
434
435 }