Commit | Line | Data |
---|---|---|
6a488035 TO |
1 | <?php |
2 | /* | |
3 | +--------------------------------------------------------------------+ | |
39de6fd5 | 4 | | CiviCRM version 4.6 | |
6a488035 | 5 | +--------------------------------------------------------------------+ |
06b69b18 | 6 | | Copyright CiviCRM LLC (c) 2004-2014 | |
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 | +--------------------------------------------------------------------+ | |
26 | */ | |
27 | ||
28 | /** | |
29 | * | |
30 | * @package CRM | |
06b69b18 | 31 | * @copyright CiviCRM LLC (c) 2004-2014 |
6a488035 TO |
32 | * $Id$ |
33 | * | |
34 | */ | |
35 | ||
36 | /** | |
37 | * BAO object for crm_log table | |
38 | */ | |
39 | class CRM_Core_BAO_Log extends CRM_Core_DAO_Log { | |
40 | static $_processed = NULL; | |
41 | ||
b5c2afd0 | 42 | /** |
100fef9d | 43 | * @param int $id |
b5c2afd0 EM |
44 | * @param string $table |
45 | * | |
46 | * @return array|null | |
47 | */ | |
00be9182 | 48 | public static function &lastModified($id, $table = 'civicrm_contact') { |
6a488035 TO |
49 | |
50 | $log = new CRM_Core_DAO_Log(); | |
51 | ||
52 | $log->entity_table = $table; | |
53 | $log->entity_id = $id; | |
54 | $log->orderBy('modified_date desc'); | |
55 | $log->limit(1); | |
56 | $result = CRM_Core_DAO::$_nullObject; | |
57 | if ($log->find(TRUE)) { | |
58 | list($displayName, $contactImage) = CRM_Contact_BAO_Contact::getDisplayAndImage($log->modified_id); | |
59 | $result = array( | |
60 | 'id' => $log->modified_id, | |
61 | 'name' => $displayName, | |
62 | 'image' => $contactImage, | |
63 | 'date' => $log->modified_date, | |
64 | ); | |
65 | } | |
66 | return $result; | |
67 | } | |
68 | ||
69 | /** | |
100fef9d | 70 | * Add log to civicrm_log table |
6a488035 | 71 | * |
6a0b768e TO |
72 | * @param array $params |
73 | * Array of name-value pairs of log table. | |
6a488035 TO |
74 | * |
75 | * @static | |
76 | */ | |
00be9182 | 77 | public static function add(&$params) { |
6a488035 TO |
78 | |
79 | $log = new CRM_Core_DAO_Log(); | |
80 | $log->copyValues($params); | |
81 | $log->save(); | |
82 | } | |
83 | ||
b5c2afd0 | 84 | /** |
100fef9d CW |
85 | * @param int $contactID |
86 | * @param string $tableName | |
87 | * @param int $tableID | |
88 | * @param int $userID | |
b5c2afd0 | 89 | */ |
f9f40af3 TO |
90 | static function register( |
91 | $contactID, | |
6a488035 TO |
92 | $tableName, |
93 | $tableID, | |
94 | $userID = NULL | |
95 | ) { | |
96 | if (!self::$_processed) { | |
97 | self::$_processed = array(); | |
98 | } | |
99 | ||
100 | if (!$userID) { | |
101 | $session = CRM_Core_Session::singleton(); | |
102 | $userID = $session->get('userID'); | |
103 | } | |
104 | ||
5bd56e68 C |
105 | if (!$userID) { |
106 | $api_key = CRM_Utils_Request::retrieve('api_key', 'String', $store, FALSE, NULL, 'REQUEST'); | |
107 | ||
108 | if ($api_key && strtolower($api_key) != 'null') { | |
109 | $userID = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $api_key, 'id', 'api_key'); | |
110 | } | |
111 | } | |
112 | ||
6a488035 TO |
113 | if (!$userID) { |
114 | $userID = $contactID; | |
115 | } | |
116 | ||
117 | if (!$userID) { | |
118 | return; | |
119 | } | |
120 | ||
121 | $log = new CRM_Core_DAO_Log(); | |
122 | $log->id = NULL; | |
123 | ||
124 | if (isset(self::$_processed[$contactID])) { | |
125 | if (isset(self::$_processed[$contactID][$userID])) { | |
126 | $log->id = self::$_processed[$contactID][$userID]; | |
127 | } | |
128 | self::$_processed[$contactID][$userID] = 1; | |
129 | } | |
130 | else { | |
131 | self::$_processed[$contactID] = array($userID => 1); | |
132 | } | |
133 | ||
134 | $logData = "$tableName,$tableID"; | |
135 | if (!$log->id) { | |
136 | $log->entity_table = 'civicrm_contact'; | |
137 | $log->entity_id = $contactID; | |
138 | $log->modified_id = $userID; | |
139 | $log->modified_date = date("YmdHis"); | |
140 | $log->data = $logData; | |
141 | $log->save(); | |
142 | } | |
143 | else { | |
144 | $query = " | |
145 | UPDATE civicrm_log | |
146 | SET data = concat( data, ':$logData' ) | |
147 | WHERE id = {$log->id} | |
148 | "; | |
149 | CRM_Core_DAO::executeQuery($query); | |
150 | } | |
151 | ||
152 | self::$_processed[$contactID][$userID] = $log->id; | |
153 | } | |
154 | ||
155 | /** | |
100fef9d | 156 | * Get log record count for a Contact |
6a488035 | 157 | * |
c490a46a | 158 | * @param int $contactID |
6a488035 TO |
159 | * |
160 | * @return int count of log records | |
6a488035 TO |
161 | * @static |
162 | */ | |
00be9182 | 163 | public static function getContactLogCount($contactID) { |
6a488035 TO |
164 | $query = "SELECT count(*) FROM civicrm_log |
165 | WHERE civicrm_log.entity_table = 'civicrm_contact' AND civicrm_log.entity_id = {$contactID}"; | |
166 | return CRM_Core_DAO::singleValueQuery($query); | |
167 | } | |
168 | ||
169 | /** | |
170 | * Function for find out whether to use logging schema entries for contact | |
171 | * summary, instead of normal log entries. | |
172 | * | |
173 | * @return int report id of Contact Logging Report (Summary) / false | |
6a488035 TO |
174 | * @static |
175 | */ | |
00be9182 | 176 | public static function useLoggingReport() { |
6a488035 TO |
177 | // first check if logging is enabled |
178 | $config = CRM_Core_Config::singleton(); | |
179 | if (!$config->logging) { | |
180 | return FALSE; | |
181 | } | |
182 | ||
183 | $loggingSchema = new CRM_Logging_Schema(); | |
184 | ||
185 | if ($loggingSchema->isEnabled()) { | |
186 | $params = array('report_id' => 'logging/contact/summary'); | |
187 | $instance = array(); | |
0b25329b | 188 | CRM_Report_BAO_ReportInstance::retrieve($params, $instance); |
6a488035 TO |
189 | |
190 | if (!empty($instance) && | |
8cc574cf CW |
191 | (empty($instance['permission']) || |
192 | (!empty($instance['permission']) && CRM_Core_Permission::check($instance['permission'])) | |
6a488035 TO |
193 | ) |
194 | ) { | |
195 | return $instance['id']; | |
196 | } | |
197 | } | |
198 | ||
199 | return FALSE; | |
200 | } | |
201 | } |