Merge pull request #12626 from eileenmcnaughton/money_fn
[civicrm-core.git] / CRM / Case / BAO / Query.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035 32 */
86a0d21e 33class CRM_Case_BAO_Query extends CRM_Core_BAO_Query {
6a488035 34
4c6ce474 35 /**
3819f101 36 * Get fields.
37 *
4c6ce474
EM
38 * @param bool $excludeActivityFields
39 *
40 * @return array
41 */
00be9182 42 public static function &getFields($excludeActivityFields = FALSE) {
6a488035
TO
43 $fields = CRM_Case_BAO_Case::exportableFields();
44
45 // add activity related fields
1cb28d5d 46 if (!$excludeActivityFields) {
47 $fields = array_merge($fields, CRM_Activity_BAO_Activity::exportableFields('Case'));
48 }
6a488035
TO
49
50 return $fields;
51 }
52
53 /**
fe482240 54 * Build select for Case.
6a488035 55 *
d76e5b23 56 * @param CRM_Contact_BAO_Query $query
6a488035 57 */
00be9182 58 public static function select(&$query) {
8cc574cf 59 if (($query->_mode & CRM_Contact_BAO_Query::MODE_CASE) || !empty($query->_returnProperties['case_id'])) {
6a488035
TO
60 $query->_select['case_id'] = "civicrm_case.id as case_id";
61 $query->_element['case_id'] = 1;
62 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
63 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
64 }
65
a7488080 66 if (!empty($query->_returnProperties['case_type_id'])) {
8ffdec17 67 $query->_select['case_type_id'] = "civicrm_case_type.id as case_type_id";
6a488035
TO
68 $query->_element['case_type_id'] = 1;
69 $query->_tables['case_type'] = $query->_whereTables['case_type'] = 1;
70 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
71 }
72
e2751e44 73 if (!empty($query->_returnProperties['case_type'])) {
8ffdec17 74 $query->_select['case_type'] = "civicrm_case_type.title as case_type";
6a488035 75 $query->_element['case_type'] = 1;
e2751e44 76 $query->_tables['case_type'] = $query->_whereTables['case_type'] = 1;
6a488035
TO
77 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
78 }
79
a7488080 80 if (!empty($query->_returnProperties['case_start_date'])) {
6a488035
TO
81 $query->_select['case_start_date'] = "civicrm_case.start_date as case_start_date";
82 $query->_element['case_start_date'] = 1;
83 $query->_tables['civicrm_case'] = 1;
84 }
85
a7488080 86 if (!empty($query->_returnProperties['case_end_date'])) {
6a488035
TO
87 $query->_select['case_end_date'] = "civicrm_case.end_date as case_end_date";
88 $query->_element['case_end_date'] = 1;
89 $query->_tables['civicrm_case'] = 1;
90 }
91
a7488080 92 if (!empty($query->_returnProperties['case_status_id'])) {
6a488035
TO
93 $query->_select['case_status_id'] = "case_status.id as case_status_id";
94 $query->_element['case_status_id'] = 1;
95 $query->_tables['case_status_id'] = $query->_whereTables['case_status_id'] = 1;
96 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
97 }
98
a7488080 99 if (!empty($query->_returnProperties['case_status'])) {
6a488035
TO
100 $query->_select['case_status'] = "case_status.label as case_status";
101 $query->_element['case_status'] = 1;
102 $query->_tables['case_status_id'] = $query->_whereTables['case_status_id'] = 1;
103 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
104 }
105
a7488080 106 if (!empty($query->_returnProperties['case_deleted'])) {
6a488035
TO
107 $query->_select['case_deleted'] = "civicrm_case.is_deleted as case_deleted";
108 $query->_element['case_deleted'] = 1;
109 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
110 }
111
a7488080 112 if (!empty($query->_returnProperties['case_role'])) {
6a488035
TO
113 $query->_select['case_role'] = "case_relation_type.label_b_a as case_role";
114 $query->_element['case_role'] = 1;
115 $query->_tables['case_relationship'] = $query->_whereTables['case_relationship'] = 1;
116 $query->_tables['case_relation_type'] = $query->_whereTables['case_relation_type'] = 1;
117 }
118
a7488080 119 if (!empty($query->_returnProperties['case_recent_activity_date'])) {
6a488035
TO
120 $query->_select['case_recent_activity_date'] = "case_activity.activity_date_time as case_recent_activity_date";
121 $query->_element['case_recent_activity_date'] = 1;
122 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
123 }
124
a7488080 125 if (!empty($query->_returnProperties['case_activity_subject'])) {
6a488035
TO
126 $query->_select['case_activity_subject'] = "case_activity.subject as case_activity_subject";
127 $query->_element['case_activity_subject'] = 1;
128 $query->_tables['case_activity'] = 1;
129 $query->_tables['civicrm_case_contact'] = 1;
130 $query->_tables['civicrm_case'] = 1;
131 }
132
a7488080 133 if (!empty($query->_returnProperties['case_subject'])) {
6a488035
TO
134 $query->_select['case_subject'] = "civicrm_case.subject as case_subject";
135 $query->_element['case_subject'] = 1;
136 $query->_tables['civicrm_case_contact'] = 1;
137 $query->_tables['civicrm_case'] = 1;
138 }
139
a7488080 140 if (!empty($query->_returnProperties['case_source_contact_id'])) {
6a488035
TO
141 $query->_select['case_source_contact_id'] = "civicrm_case_reporter.sort_name as case_source_contact_id";
142 $query->_element['case_source_contact_id'] = 1;
143 $query->_tables['civicrm_case_reporter'] = 1;
144 $query->_tables['case_activity'] = 1;
145 $query->_tables['civicrm_case_contact'] = 1;
146 $query->_tables['civicrm_case'] = 1;
147 }
148
a7488080 149 if (!empty($query->_returnProperties['case_activity_status_id'])) {
6a488035
TO
150 $query->_select['case_activity_status_id'] = "rec_activity_status.id as case_activity_status_id";
151 $query->_element['case_activity_status_id'] = 1;
152 $query->_tables['case_activity'] = 1;
153 $query->_tables['recent_activity_status'] = 1;
154 $query->_tables['civicrm_case_contact'] = 1;
155 $query->_tables['civicrm_case'] = 1;
156 }
157
a7488080 158 if (!empty($query->_returnProperties['case_activity_status'])) {
6a488035
TO
159 $query->_select['case_activity_status'] = "rec_activity_status.label as case_activity_status";
160 $query->_element['case_activity_status'] = 1;
161 $query->_tables['case_activity'] = 1;
162 $query->_tables['recent_activity_status'] = 1;
163 $query->_tables['civicrm_case_contact'] = 1;
164 $query->_tables['civicrm_case'] = 1;
165 }
166
a7488080 167 if (!empty($query->_returnProperties['case_activity_duration'])) {
6a488035
TO
168 $query->_select['case_activity_duration'] = "case_activity.duration as case_activity_duration";
169 $query->_element['case_activity_duration'] = 1;
170 $query->_tables['case_activity'] = 1;
171 $query->_tables['civicrm_case_contact'] = 1;
172 $query->_tables['civicrm_case'] = 1;
173 }
174
a7488080 175 if (!empty($query->_returnProperties['case_activity_medium_id'])) {
6a488035
TO
176 $query->_select['case_activity_medium_id'] = "recent_activity_medium.label as case_activity_medium_id";
177 $query->_element['case_activity_medium_id'] = 1;
178 $query->_tables['case_activity'] = 1;
179 $query->_tables['case_activity_medium'] = 1;
180 $query->_tables['civicrm_case_contact'] = 1;
181 $query->_tables['civicrm_case'] = 1;
182 }
183
a7488080 184 if (!empty($query->_returnProperties['case_activity_details'])) {
6a488035
TO
185 $query->_select['case_activity_details'] = "case_activity.details as case_activity_details";
186 $query->_element['case_activity_details'] = 1;
187 $query->_tables['case_activity'] = 1;
188 $query->_tables['civicrm_case_contact'] = 1;
189 $query->_tables['civicrm_case'] = 1;
190 }
191
a7488080 192 if (!empty($query->_returnProperties['case_activity_is_auto'])) {
6a488035
TO
193 $query->_select['case_activity_is_auto'] = "case_activity.is_auto as case_activity_is_auto";
194 $query->_element['case_activity_is_auto'] = 1;
195 $query->_tables['case_activity'] = 1;
196 $query->_tables['civicrm_case_contact'] = 1;
197 $query->_tables['civicrm_case'] = 1;
198 }
199
a7488080 200 if (!empty($query->_returnProperties['case_scheduled_activity_date'])) {
6a488035
TO
201 $query->_select['case_scheduled_activity_date'] = "case_activity.activity_date_time as case_scheduled_activity_date";
202 $query->_element['case_scheduled_activity_date'] = 1;
203 $query->_tables['case_activity'] = 1;
204 $query->_tables['civicrm_case_contact'] = 1;
205 $query->_tables['civicrm_case'] = 1;
206 }
a7488080 207 if (!empty($query->_returnProperties['case_recent_activity_type'])) {
6a488035
TO
208 $query->_select['case_recent_activity_type'] = "rec_activity_type.label as case_recent_activity_type";
209 $query->_element['case_recent_activity_type'] = 1;
210 $query->_tables['case_activity'] = 1;
211 $query->_tables['case_activity_type'] = 1;
212 $query->_tables['civicrm_case_contact'] = 1;
213 $query->_tables['civicrm_case'] = 1;
214 }
215 }
216
217 /**
3819f101 218 * Given a list of conditions in query generate the required where clause.
77b97be7 219 *
d76e5b23 220 * @param CRM_Contact_BAO_Query $query
6a488035 221 */
00be9182 222 public static function where(&$query) {
6a488035
TO
223 foreach ($query->_params as $id => $values) {
224 if (!is_array($values) || count($values) != 5) {
225 continue;
226 }
227
228 if (substr($query->_params[$id][0], 0, 5) == 'case_') {
229 if ($query->_mode == CRM_Contact_BAO_Query::MODE_CONTACTS) {
230 $query->_useDistinct = TRUE;
231 }
6a488035
TO
232 self::whereClauseSingle($query->_params[$id], $query);
233 }
234 }
6c051493 235 // Add acl clause
96454cad
CW
236 // This is new and so far only for cases - it would be good to find a more abstract
237 // way to auto-apply this for all search components rather than copy-pasting this code to others
238 if (isset($query->_tables['civicrm_case'])) {
239 $aclClauses = array_filter(CRM_Case_BAO_Case::getSelectWhereClause());
240 foreach ($aclClauses as $clause) {
241 $query->_where[0][] = $clause;
242 }
6c051493 243 }
6a488035
TO
244 }
245
246 /**
fe482240 247 * Where clause for a single field.
6a488035 248 *
96dc1ce0 249 * CRM-17120 adds a test that checks the Qill on some of these parameters.
250 * However, I couldn't find a way, other than via test, to access the
251 * case_activity options in the code below and invalid sql was returned.
252 * Perhaps the options are just legacy?
253 *
254 * Also, CRM-17120 locks in the Qill - but it probably is not quite right as I
255 * see 'Activity Type = Scheduled' (rather than activity status).
256 *
257 * See CRM_Case_BAO_QueryTest for more.
258 *
3819f101 259 * @param array $values
d76e5b23 260 * @param CRM_Contact_BAO_Query $query
6a488035 261 */
00be9182 262 public static function whereClauseSingle(&$values, &$query) {
6a488035
TO
263 list($name, $op, $value, $grouping, $wildcard) = $values;
264 $val = $names = array();
265 switch ($name) {
6a488035
TO
266
267 case 'case_type_id':
8ae90f85 268 case 'case_type':
37653fa0 269 case 'case_status':
270 case 'case_status_id':
271 case 'case_id':
6a488035 272
37653fa0 273 if (strpos($name, 'type')) {
274 $name = 'case_type_id';
275 $label = 'Case Type(s)';
6a488035 276 }
37653fa0 277 elseif (strpos($name, 'status')) {
278 $name = 'status_id';
279 $label = 'Case Status(s)';
8ae90f85 280 }
281 else {
37653fa0 282 $name = 'id';
283 $label = 'Case ID';
8ae90f85 284 }
6a488035 285
37653fa0 286 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case.{$name}", $op, $value, "Integer");
287 list($op, $value) = CRM_Contact_BAO_Query::buildQillForFieldValue('CRM_Case_DAO_Case', $name, $value, $op);
6a488035 288
37653fa0 289 $query->_qill[$grouping][] = ts('%1 %2 %3', array(1 => $label, 2 => $op, 3 => $value));
6a488035
TO
290 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
291 return;
292
293 case 'case_owner':
294 case 'case_mycases':
295 if (!empty($value)) {
296 if ($value == 2) {
297 $session = CRM_Core_Session::singleton();
298 $userID = $session->get('userID');
299 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_relationship.contact_id_b", $op, $userID, 'Int');
300 $query->_qill[$grouping][] = ts('Case %1 My Cases', array(1 => $op));
301 $query->_tables['case_relationship'] = $query->_whereTables['case_relationship'] = 1;
302 }
303 elseif ($value == 1) {
304 $query->_qill[$grouping][] = ts('Case %1 All Cases', array(1 => $op));
305 $query->_where[$grouping][] = "civicrm_case_contact.contact_id = contact_a.id";
306 }
307 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
308 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
309 }
310 return;
311
312 case 'case_deleted':
313 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case.is_deleted", $op, $value, 'Boolean');
314 if ($value) {
315 $query->_qill[$grouping][] = ts("Find Deleted Cases");
316 }
317 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
318 return;
319
320 case 'case_activity_subject':
321 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.subject", $op, $value, 'String');
322 $query->_qill[$grouping][] = ts("Activity Subject %1 '%2'", array(1 => $op, 2 => $value));
323 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
324 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
325 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
326 return;
327
328 case 'case_subject':
329 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case.subject", $op, $value, 'String');
330 $query->_qill[$grouping][] = ts("Case Subject %1 '%2'", array(1 => $op, 2 => $value));
331 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
332 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
333 return;
334
335 case 'case_source_contact_id':
336 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case_reporter.sort_name", $op, $value, 'String');
337 $query->_qill[$grouping][] = ts("Activity Reporter %1 '%2'", array(1 => $op, 2 => $value));
338 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
339 $query->_tables['civicrm_case_reporter'] = $query->_whereTables['civicrm_case_reporter'] = 1;
340 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
341 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
342 return;
343
344 case 'case_recent_activity_date':
345 $date = CRM_Utils_Date::format($value);
346 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.activity_date_time", $op, $date, 'Date');
347 if ($date) {
348 $date = CRM_Utils_Date::customFormat($date);
349 $query->_qill[$grouping][] = ts("Activity Actual Date %1 %2", array(1 => $op, 2 => $date));
350 }
351 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
352 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
353 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
354 return;
355
356 case 'case_scheduled_activity_date':
357 $date = CRM_Utils_Date::format($value);
358 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.activity_date_time", $op, $date, 'Date');
359 if ($date) {
360 $date = CRM_Utils_Date::customFormat($date);
361 $query->_qill[$grouping][] = ts("Activity Schedule Date %1 %2", array(1 => $op, 2 => $date));
362 }
363 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
364 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
365 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
366 return;
367
368 case 'case_recent_activity_type':
369 $names = $value;
96dc1ce0 370 if (($activityType = CRM_Core_PseudoConstant::getLabel('CRM_Activity_BAO_Activity', 'activity_type_id', $value)) != FALSE) {
6a488035
TO
371 $names = $activityType;
372 }
373
374 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.activity_type_id", $op, $value, 'Int');
375 $query->_qill[$grouping][] = ts("Activity Type %1 %2", array(1 => $op, 2 => $names));
376 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
377 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
378 $query->_tables['case_activity_type'] = 1;
379 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
380 return;
381
382 case 'case_activity_status_id':
383 $names = $value;
96dc1ce0 384 if (($activityStatus = CRM_Core_PseudoConstant::getLabel('CRM_Activity_BAO_Activity', 'status_id', $value)) != FALSE) {
6a488035
TO
385 $names = $activityStatus;
386 }
387
388 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.status_id", $op, $value, 'Int');
389 $query->_qill[$grouping][] = ts("Activity Type %1 %2", array(1 => $op, 2 => $names));
390 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
391 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
392 $query->_tables['case_activity_status'] = 1;
393 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
394 return;
395
396 case 'case_activity_duration':
397 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.duration", $op, $value, 'Int');
398 $query->_qill[$grouping][] = ts("Activity Duration %1 %2", array(1 => $op, 2 => $value));
399 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
400 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
401 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
402 return;
403
404 case 'case_activity_medium_id':
405 $names = $value;
96dc1ce0 406 if (($activityMedium = CRM_Core_PseudoConstant::getLabel('CRM_Activity_BAO_Activity', 'medium_id', $value)) != FALSE) {
6a488035
TO
407 $names = $activityMedium;
408 }
409
410 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.medium_id", $op, $value, 'Int');
411 $query->_qill[$grouping][] = ts("Activity Medium %1 %2", array(1 => $op, 2 => $names));
412 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
413 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
414 $query->_tables['case_activity_medium'] = 1;
415 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
416 return;
417
418 case 'case_activity_details':
419 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.details", $op, $value, 'String');
420 $query->_qill[$grouping][] = ts("Activity Details %1 '%2'", array(1 => $op, 2 => $value));
421 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
422 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
423 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
424 return;
425
426 case 'case_activity_is_auto':
427 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.is_auto", $op, $value, 'Boolean');
428 $query->_qill[$grouping][] = ts("Activity Auto Genrated %1 '%2'", array(1 => $op, 2 => $value));
429 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
430 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
431 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
432 return;
433
434 // adding where clause for case_role
435
436 case 'case_role':
437 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_relation_type.name_b_a", $op, $value, 'String');
438 $query->_qill[$grouping][] = ts("Role in Case %1 '%2'", array(1 => $op, 2 => $value));
439 $query->_tables['case_relation_type'] = $query->_whereTables['case_relationship_type'] = 1;
440 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
441 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
442 return;
443
444 case 'case_from_start_date_low':
445 case 'case_from_start_date_high':
446 $query->dateQueryBuilder($values,
447 'civicrm_case', 'case_from_start_date', 'start_date', 'Start Date'
448 );
449 return;
450
451 case 'case_to_end_date_low':
452 case 'case_to_end_date_high':
453 $query->dateQueryBuilder($values,
454 'civicrm_case', 'case_to_end_date', 'end_date', 'End Date'
455 );
456 return;
457
458 case 'case_start_date':
459 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case.start_date", $op, $value, 'Int');
460 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
461 return;
462
463 case 'case_end_date':
464 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case.end_date", $op, $value, 'Int');
465 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
466 return;
467
468 case 'case_taglist':
469 $taglist = $value;
470 $value = array();
471 foreach ($taglist as $val) {
472 if ($val) {
473 $val = explode(',', $val);
474 foreach ($val as $tId) {
475 if (is_numeric($tId)) {
476 $value[$tId] = 1;
477 }
478 }
479 }
480 }
481 case 'case_tags':
cd43c5e3 482 $tags = CRM_Core_PseudoConstant::get('CRM_Core_DAO_EntityTag', 'tag_id', array('onlyActive' => FALSE));
6a488035 483
dd33678f
BS
484 if (!empty($value)) {
485 $val = explode(',', $value);
486 foreach ($val as $v) {
6a488035 487 if ($v) {
dd33678f 488 $names[] = $tags[$v];
6a488035
TO
489 }
490 }
491 }
492
493 $query->_where[$grouping][] = " civicrm_case_tag.tag_id IN (" . implode(',', $val) . " )";
494 $query->_qill[$grouping][] = ts('Case Tags %1', array(1 => $op)) . ' ' . implode(' ' . ts('or') . ' ', $names);
495 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
496 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
497 $query->_tables['civicrm_case_tag'] = $query->_whereTables['civicrm_case_tag'] = 1;
498 return;
499 }
500 }
501
4c6ce474 502 /**
d76e5b23 503 * Build from clause.
504 *
100fef9d 505 * @param string $name
d76e5b23 506 * @param string $mode
507 * @param string $side
4c6ce474
EM
508 *
509 * @return string
510 */
00be9182 511 public static function from($name, $mode, $side) {
6a488035
TO
512 $from = "";
513
514 switch ($name) {
515 case 'civicrm_case_contact':
516 $from .= " $side JOIN civicrm_case_contact ON civicrm_case_contact.contact_id = contact_a.id ";
517 break;
518
519 case 'civicrm_case_reporter':
44f817d4 520 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
962c0eda 521 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
522 $from .= " $side JOIN civicrm_activity_contact as case_activity_contact ON (case_activity.id = case_activity_contact.activity_id AND case_activity_contact.record_type_id = {$sourceID} ) ";
09a5df84 523 $from .= " $side JOIN civicrm_contact as civicrm_case_reporter ON case_activity_contact.contact_id = civicrm_case_reporter.id ";
6a488035
TO
524 break;
525
526 case 'civicrm_case':
527 $from .= " INNER JOIN civicrm_case ON civicrm_case_contact.case_id = civicrm_case.id";
528 break;
529
530 case 'case_status_id':
531 $from .= " $side JOIN civicrm_option_group option_group_case_status ON (option_group_case_status.name = 'case_status')";
532 $from .= " $side JOIN civicrm_option_value case_status ON (civicrm_case.status_id = case_status.value AND option_group_case_status.id = case_status.option_group_id ) ";
533 break;
534
535 case 'case_type':
8ffdec17 536 $from .= " $side JOIN civicrm_case_type ON civicrm_case.case_type_id = civicrm_case_type.id ";
6a488035
TO
537 break;
538
539 case 'case_activity_type':
540 $from .= " $side JOIN civicrm_option_group option_group_activity_type ON (option_group_activity_type.name = 'activity_type')";
541 $from .= " $side JOIN civicrm_option_value rec_activity_type ON (case_activity.activity_type_id = rec_activity_type.value AND option_group_activity_type.id = rec_activity_type.option_group_id ) ";
542 break;
543
544 case 'recent_activity_status':
545 $from .= " $side JOIN civicrm_option_group option_group_activity_status ON (option_group_activity_status.name = 'activity_status')";
546 $from .= " $side JOIN civicrm_option_value rec_activity_status ON (case_activity.status_id = rec_activity_status.value AND option_group_activity_status.id = rec_activity_status.option_group_id ) ";
547 break;
548
549 case 'case_relationship':
550 $session = CRM_Core_Session::singleton();
353ffa53
TO
551 $userID = $session->get('userID');
552 $from .= " $side JOIN civicrm_relationship case_relationship ON ( case_relationship.contact_id_a = civicrm_case_contact.contact_id AND case_relationship.contact_id_b = {$userID} AND case_relationship.case_id = civicrm_case.id )";
6a488035
TO
553 break;
554
555 case 'case_relation_type':
556 $from .= " $side JOIN civicrm_relationship_type case_relation_type ON ( case_relation_type.id = case_relationship.relationship_type_id AND
557case_relation_type.id = case_relationship.relationship_type_id )";
558 break;
559
560 case 'case_activity_medium':
561 $from .= " $side JOIN civicrm_option_group option_group_activity_medium ON (option_group_activity_medium.name = 'encounter_medium')";
562 $from .= " $side JOIN civicrm_option_value recent_activity_medium ON (case_activity.medium_id = recent_activity_medium.value AND option_group_activity_medium.id = recent_activity_medium.option_group_id ) ";
563 break;
564
565 case 'case_activity':
566 $from .= " INNER JOIN civicrm_case_activity ON civicrm_case_activity.case_id = civicrm_case.id ";
567 $from .= " INNER JOIN civicrm_activity case_activity ON ( civicrm_case_activity.activity_id = case_activity.id
568 AND case_activity.is_current_revision = 1 )";
569 break;
570
571 case 'civicrm_case_tag':
572 $from .= " $side JOIN civicrm_entity_tag as civicrm_case_tag ON ( civicrm_case_tag.entity_table = 'civicrm_case' AND civicrm_case_tag.entity_id = civicrm_case.id ) ";
573 break;
574 }
575 return $from;
576 }
577
578 /**
fe482240 579 * Getter for the qill object.
6a488035
TO
580 *
581 * @return string
6a488035 582 */
00be9182 583 public function qill() {
6a488035
TO
584 return (isset($this->_qill)) ? $this->_qill : "";
585 }
586
4c6ce474
EM
587 /**
588 * @param $mode
589 * @param bool $includeCustomFields
590 *
591 * @return array|null
592 */
e7483cbe 593 public static function defaultReturnProperties(
28d4d481 594 $mode,
6a488035
TO
595 $includeCustomFields = TRUE
596 ) {
597
598 $properties = NULL;
599
600 if ($mode & CRM_Contact_BAO_Query::MODE_CASE) {
601 $properties = array(
602 'contact_type' => 1,
603 'contact_sub_type' => 1,
604 'contact_id' => 1,
605 'sort_name' => 1,
606 'display_name' => 1,
607 'case_id' => 1,
608 'case_activity_subject' => 1,
609 'case_subject' => 1,
610 'case_status' => 1,
611 'case_type' => 1,
612 'case_role' => 1,
613 'case_deleted' => 1,
614 'case_recent_activity_date' => 1,
615 'case_recent_activity_type' => 1,
616 'case_scheduled_activity_date' => 1,
617 'phone' => 1,
618 // 'case_scheduled_activity_type'=> 1
619 );
620
621 if ($includeCustomFields) {
622 // also get all the custom case properties
623 $fields = CRM_Core_BAO_CustomField::getFieldsForImport('Case');
624 if (!empty($fields)) {
625 foreach ($fields as $name => $dontCare) {
626 $properties[$name] = 1;
627 }
628 }
629 }
630 }
631
632 return $properties;
633 }
634
635 /**
fe482240 636 * This includes any extra fields that might need for export etc.
ad37ac8e 637 *
638 * @param string $mode
639 *
640 * @return array|null
6a488035 641 */
00be9182 642 public static function extraReturnProperties($mode) {
6a488035
TO
643 $properties = NULL;
644
645 if ($mode & CRM_Contact_BAO_Query::MODE_CASE) {
646 $properties = array(
647 'case_start_date' => 1,
648 'case_end_date' => 1,
649 'case_subject' => 1,
650 'case_source_contact_id' => 1,
651 'case_activity_status' => 1,
652 'case_activity_duration' => 1,
653 'case_activity_medium_id' => 1,
654 'case_activity_details' => 1,
655 'case_activity_is_auto' => 1,
656 );
657 }
658 return $properties;
659 }
660
4c6ce474
EM
661 /**
662 * @param $tables
663 */
00be9182 664 public static function tableNames(&$tables) {
a7488080 665 if (!empty($tables['civicrm_case'])) {
6a488035
TO
666 $tables = array_merge(array('civicrm_case_contact' => 1), $tables);
667 }
668
a7488080 669 if (!empty($tables['case_relation_type'])) {
6a488035
TO
670 $tables = array_merge(array('case_relationship' => 1), $tables);
671 }
672 }
673
674 /**
3819f101 675 * Add all the elements shared between case search and advanced search.
6a488035 676 *
c490a46a 677 * @param CRM_Core_Form $form
6a488035 678 */
00be9182 679 public static function buildSearchForm(&$form) {
6a488035
TO
680 //validate case configuration.
681 $configured = CRM_Case_BAO_Case::isCaseConfigured();
682 $form->assign('notConfigured', !$configured['configured']);
683
7a5c0c6c
CW
684 $form->addField('case_type_id', array('context' => 'search', 'entity' => 'Case'));
685 $form->addField('case_status_id', array('context' => 'search', 'entity' => 'Case'));
6a488035 686
bc3f7f04 687 CRM_Core_Form_Date::buildDateRange($form, 'case_from', 1, '_start_date_low', '_start_date_high', ts('From'), FALSE);
e547f744 688 CRM_Core_Form_Date::buildDateRange($form, 'case_to', 1, '_end_date_low', '_end_date_high', ts('From'), FALSE);
79326ee2
SB
689 $form->addElement('hidden', 'case_from_start_date_range_error');
690 $form->addElement('hidden', 'case_to_end_date_range_error');
26bf6298
SB
691 $form->addFormRule(array('CRM_Case_BAO_Query', 'formRule'), $form);
692
6a488035
TO
693 $form->assign('validCiviCase', TRUE);
694
695 //give options when all cases are accessible.
696 $accessAllCases = FALSE;
697 if (CRM_Core_Permission::check('access all cases and activities')) {
698 $accessAllCases = TRUE;
699 $caseOwner = array(1 => ts('Search All Cases'), 2 => ts('Only My Cases'));
700 $form->addRadio('case_owner', ts('Cases'), $caseOwner);
5f1c8c57 701 if ($form->get('context') != 'dashboard') {
702 $form->add('checkbox', 'upcoming', ts('Search Cases with Upcoming Activities'));
703 }
6a488035
TO
704 }
705 $form->assign('accessAllCases', $accessAllCases);
706
dd33678f 707 $caseTags = CRM_Core_BAO_Tag::getColorTags('civicrm_case');
6a488035
TO
708
709 if ($caseTags) {
dd33678f 710 $form->add('select2', 'case_tags', ts('Case Tag(s)'), $caseTags, FALSE, array('class' => 'big', 'placeholder' => ts('- select -'), 'multiple' => TRUE));
6a488035
TO
711 }
712
713 $parentNames = CRM_Core_BAO_Tag::getTagSet('civicrm_case');
4dff5e17 714 CRM_Core_Form_Tag::buildQuickForm($form, $parentNames, 'civicrm_case', NULL, TRUE, FALSE);
6a488035 715
6c051493 716 if (CRM_Core_Permission::check('administer CiviCase')) {
6a488035
TO
717 $form->addElement('checkbox', 'case_deleted', ts('Deleted Cases'));
718 }
719
2f8c5b5b 720 $form->addElement('text',
68592807
BS
721 'case_subject',
722 ts('Case Subject'),
723 array('class' => 'huge')
724 );
2f8c5b5b 725 $form->addElement('text',
68592807
BS
726 'case_id',
727 ts('Case ID')
728 );
729
86a0d21e 730 self::addCustomFormFields($form, array('Case'));
6a488035 731
c00bd201 732 $form->setDefaults(array('case_owner' => 1));
e547f744 733 }
96025800 734
26bf6298 735 /**
79326ee2 736 * Custom form rules.
26bf6298
SB
737 *
738 * @param array $fields
739 * @param array $files
740 * @param CRM_Core_Form $form
741 *
742 * @return bool|array
743 */
744 public static function formRule($fields, $files, $form) {
745 $errors = array();
746
747 if ((empty($fields['case_from_start_date_low']) || empty($fields['case_from_start_date_high'])) && (empty($fields['case_to_end_date_low']) || empty($fields['case_to_end_date_high']))) {
748 return TRUE;
749 }
26bf6298 750
79326ee2
SB
751 CRM_Utils_Rule::validDateRange($fields, 'case_from_start_date', $errors, ts('Case Start Date'));
752 CRM_Utils_Rule::validDateRange($fields, 'case_to_end_date', $errors, ts('Case End Date'));
26bf6298 753
26bf6298
SB
754 return empty($errors) ? TRUE : $errors;
755 }
756
6a488035 757}