Merge pull request #15921 from civicrm/5.20
[civicrm-core.git] / CRM / Core / BAO / Log.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
18 /**
19 * BAO object for crm_log table
20 */
21 class CRM_Core_BAO_Log extends CRM_Core_DAO_Log {
22 public static $_processed = NULL;
23
24 /**
25 * @param int $id
26 * @param string $table
27 *
28 * @return array|null
29 *
30 */
31 public static function &lastModified($id, $table = 'civicrm_contact') {
32
33 $log = new CRM_Core_DAO_Log();
34
35 $log->entity_table = $table;
36 $log->entity_id = $id;
37 $log->orderBy('modified_date desc');
38 $log->limit(1);
39 $displayName = $result = $contactImage = NULL;
40 if ($log->find(TRUE)) {
41 if ($log->modified_id) {
42 list($displayName, $contactImage) = CRM_Contact_BAO_Contact::getDisplayAndImage($log->modified_id);
43 }
44 $result = [
45 'id' => $log->modified_id,
46 'name' => $displayName,
47 'image' => $contactImage,
48 'date' => $log->modified_date,
49 ];
50 }
51 return $result;
52 }
53
54 /**
55 * Add log to civicrm_log table.
56 *
57 * @param array $params
58 * Array of name-value pairs of log table.
59 *
60 */
61 public static function add(&$params) {
62
63 $log = new CRM_Core_DAO_Log();
64 $log->copyValues($params);
65 $log->save();
66 }
67
68 /**
69 * @param int $contactID
70 * @param string $tableName
71 * @param int $tableID
72 * @param int $userID
73 */
74 public static function register(
75 $contactID,
76 $tableName,
77 $tableID,
78 $userID = NULL
79 ) {
80 if (!self::$_processed) {
81 self::$_processed = [];
82 }
83
84 if (!$userID) {
85 $session = CRM_Core_Session::singleton();
86 $userID = $session->get('userID');
87 }
88
89 if (!$userID) {
90 $api_key = CRM_Utils_Request::retrieve('api_key', 'String', $store, FALSE, NULL, 'REQUEST');
91
92 if ($api_key && strtolower($api_key) != 'null') {
93 $userID = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $api_key, 'id', 'api_key');
94 }
95 }
96
97 if (!$userID) {
98 $userID = $contactID;
99 }
100
101 if (!$userID) {
102 return;
103 }
104
105 $log = new CRM_Core_DAO_Log();
106 $log->id = NULL;
107
108 if (isset(self::$_processed[$contactID])) {
109 if (isset(self::$_processed[$contactID][$userID])) {
110 $log->id = self::$_processed[$contactID][$userID];
111 }
112 self::$_processed[$contactID][$userID] = 1;
113 }
114 else {
115 self::$_processed[$contactID] = [$userID => 1];
116 }
117
118 $logData = "$tableName,$tableID";
119 if (!$log->id) {
120 $log->entity_table = 'civicrm_contact';
121 $log->entity_id = $contactID;
122 $log->modified_id = $userID;
123 $log->modified_date = date("YmdHis");
124 $log->data = $logData;
125 $log->save();
126 }
127 else {
128 $query = "
129 UPDATE civicrm_log
130 SET data = concat( data, ':$logData' )
131 WHERE id = {$log->id}
132 ";
133 CRM_Core_DAO::executeQuery($query);
134 }
135
136 self::$_processed[$contactID][$userID] = $log->id;
137 }
138
139 /**
140 * Get log record count for a Contact.
141 *
142 * @param int $contactID
143 *
144 * @return int
145 * count of log records
146 */
147 public static function getContactLogCount($contactID) {
148 $query = "SELECT count(*) FROM civicrm_log
149 WHERE civicrm_log.entity_table = 'civicrm_contact' AND civicrm_log.entity_id = {$contactID}";
150 return CRM_Core_DAO::singleValueQuery($query);
151 }
152
153 /**
154 * Get the id of the report to use to display the change log.
155 *
156 * If logging is not enabled a return value of FALSE means to use the
157 * basic change log view.
158 *
159 * @return int|FALSE
160 * report id of Contact Logging Report (Summary)
161 */
162 public static function useLoggingReport() {
163 if (!\Civi::settings()->get('logging')) {
164 return FALSE;
165 }
166
167 $loggingSchema = new CRM_Logging_Schema();
168
169 if ($loggingSchema->isEnabled()) {
170 $params = ['report_id' => 'logging/contact/summary'];
171 $instance = [];
172 CRM_Report_BAO_ReportInstance::retrieve($params, $instance);
173
174 if (!empty($instance) &&
175 (empty($instance['permission']) ||
176 (!empty($instance['permission']) && CRM_Core_Permission::check($instance['permission']))
177 )
178 ) {
179 return $instance['id'];
180 }
181 }
182
183 return FALSE;
184 }
185
186 }