dev/core#561 Convert Case date fields on search forms from jcalendar to datepicker
[civicrm-core.git] / CRM / Case / BAO / Query.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
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'])) {
41cf58d3 113 $query->_select['case_role'] = "IF(case_relationship.contact_id_b = contact_a.id, case_relation_type.label_b_a, case_relation_type.label_a_b) as case_role";
6a488035
TO
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) {
7d832c0c
SL
263 if ($query->buildDateRangeQuery($values)) {
264 // @todo - move this to Contact_Query in or near the call to
265 // $this->buildRelativeDateQuery($values);
266 return;
267 }
6a488035 268 list($name, $op, $value, $grouping, $wildcard) = $values;
be2fb01f 269 $val = $names = [];
6a488035 270 switch ($name) {
6a488035
TO
271
272 case 'case_type_id':
8ae90f85 273 case 'case_type':
37653fa0 274 case 'case_status':
275 case 'case_status_id':
276 case 'case_id':
6a488035 277
37653fa0 278 if (strpos($name, 'type')) {
279 $name = 'case_type_id';
280 $label = 'Case Type(s)';
6a488035 281 }
37653fa0 282 elseif (strpos($name, 'status')) {
283 $name = 'status_id';
284 $label = 'Case Status(s)';
8ae90f85 285 }
286 else {
37653fa0 287 $name = 'id';
288 $label = 'Case ID';
8ae90f85 289 }
6a488035 290
37653fa0 291 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case.{$name}", $op, $value, "Integer");
292 list($op, $value) = CRM_Contact_BAO_Query::buildQillForFieldValue('CRM_Case_DAO_Case', $name, $value, $op);
6a488035 293
be2fb01f 294 $query->_qill[$grouping][] = ts('%1 %2 %3', [1 => $label, 2 => $op, 3 => $value]);
6a488035
TO
295 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
296 return;
297
298 case 'case_owner':
299 case 'case_mycases':
300 if (!empty($value)) {
301 if ($value == 2) {
302 $session = CRM_Core_Session::singleton();
303 $userID = $session->get('userID');
41cf58d3 304 $query->_where[$grouping][] = ' (( ' . CRM_Contact_BAO_Query::buildClause("case_relationship.contact_id_b", $op, $userID, 'Int') . ' AND ' . CRM_Contact_BAO_Query::buildClause("case_relationship.is_active", '<>', 0, 'Int') . ' ) OR ( ' . CRM_Contact_BAO_Query::buildClause("case_relationship.contact_id_a", $op, $userID, 'Int') . ' AND ' . CRM_Contact_BAO_Query::buildClause("case_relationship.is_active", '<>', 0, 'Int') . ' ))';
be2fb01f 305 $query->_qill[$grouping][] = ts('Case %1 My Cases', [1 => $op]);
6a488035
TO
306 $query->_tables['case_relationship'] = $query->_whereTables['case_relationship'] = 1;
307 }
308 elseif ($value == 1) {
be2fb01f 309 $query->_qill[$grouping][] = ts('Case %1 All Cases', [1 => $op]);
6a488035
TO
310 $query->_where[$grouping][] = "civicrm_case_contact.contact_id = contact_a.id";
311 }
312 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
313 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
314 }
315 return;
316
317 case 'case_deleted':
318 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case.is_deleted", $op, $value, 'Boolean');
319 if ($value) {
320 $query->_qill[$grouping][] = ts("Find Deleted Cases");
321 }
322 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
323 return;
324
325 case 'case_activity_subject':
326 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.subject", $op, $value, 'String');
be2fb01f 327 $query->_qill[$grouping][] = ts("Activity Subject %1 '%2'", [1 => $op, 2 => $value]);
6a488035
TO
328 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
329 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
330 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
331 return;
332
333 case 'case_subject':
334 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case.subject", $op, $value, 'String');
be2fb01f 335 $query->_qill[$grouping][] = ts("Case Subject %1 '%2'", [1 => $op, 2 => $value]);
6a488035
TO
336 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
337 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
338 return;
339
340 case 'case_source_contact_id':
341 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case_reporter.sort_name", $op, $value, 'String');
be2fb01f 342 $query->_qill[$grouping][] = ts("Activity Reporter %1 '%2'", [1 => $op, 2 => $value]);
6a488035
TO
343 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
344 $query->_tables['civicrm_case_reporter'] = $query->_whereTables['civicrm_case_reporter'] = 1;
345 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
346 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
347 return;
348
349 case 'case_recent_activity_date':
350 $date = CRM_Utils_Date::format($value);
351 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.activity_date_time", $op, $date, 'Date');
352 if ($date) {
353 $date = CRM_Utils_Date::customFormat($date);
be2fb01f 354 $query->_qill[$grouping][] = ts("Activity Actual Date %1 %2", [1 => $op, 2 => $date]);
6a488035
TO
355 }
356 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
357 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
358 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
359 return;
360
361 case 'case_scheduled_activity_date':
362 $date = CRM_Utils_Date::format($value);
363 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.activity_date_time", $op, $date, 'Date');
364 if ($date) {
365 $date = CRM_Utils_Date::customFormat($date);
be2fb01f 366 $query->_qill[$grouping][] = ts("Activity Schedule Date %1 %2", [1 => $op, 2 => $date]);
6a488035
TO
367 }
368 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
369 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
370 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
371 return;
372
373 case 'case_recent_activity_type':
374 $names = $value;
96dc1ce0 375 if (($activityType = CRM_Core_PseudoConstant::getLabel('CRM_Activity_BAO_Activity', 'activity_type_id', $value)) != FALSE) {
6a488035
TO
376 $names = $activityType;
377 }
378
379 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.activity_type_id", $op, $value, 'Int');
be2fb01f 380 $query->_qill[$grouping][] = ts("Activity Type %1 %2", [1 => $op, 2 => $names]);
6a488035
TO
381 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
382 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
383 $query->_tables['case_activity_type'] = 1;
384 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
385 return;
386
387 case 'case_activity_status_id':
388 $names = $value;
96dc1ce0 389 if (($activityStatus = CRM_Core_PseudoConstant::getLabel('CRM_Activity_BAO_Activity', 'status_id', $value)) != FALSE) {
6a488035
TO
390 $names = $activityStatus;
391 }
392
393 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.status_id", $op, $value, 'Int');
be2fb01f 394 $query->_qill[$grouping][] = ts("Activity Type %1 %2", [1 => $op, 2 => $names]);
6a488035
TO
395 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
396 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
397 $query->_tables['case_activity_status'] = 1;
398 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
399 return;
400
401 case 'case_activity_duration':
402 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.duration", $op, $value, 'Int');
be2fb01f 403 $query->_qill[$grouping][] = ts("Activity Duration %1 %2", [1 => $op, 2 => $value]);
6a488035
TO
404 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
405 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
406 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
407 return;
408
409 case 'case_activity_medium_id':
410 $names = $value;
96dc1ce0 411 if (($activityMedium = CRM_Core_PseudoConstant::getLabel('CRM_Activity_BAO_Activity', 'medium_id', $value)) != FALSE) {
6a488035
TO
412 $names = $activityMedium;
413 }
414
415 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.medium_id", $op, $value, 'Int');
be2fb01f 416 $query->_qill[$grouping][] = ts("Activity Medium %1 %2", [1 => $op, 2 => $names]);
6a488035
TO
417 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
418 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
419 $query->_tables['case_activity_medium'] = 1;
420 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
421 return;
422
423 case 'case_activity_details':
424 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.details", $op, $value, 'String');
be2fb01f 425 $query->_qill[$grouping][] = ts("Activity Details %1 '%2'", [1 => $op, 2 => $value]);
6a488035
TO
426 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
427 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
428 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
429 return;
430
431 case 'case_activity_is_auto':
432 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("case_activity.is_auto", $op, $value, 'Boolean');
be2fb01f 433 $query->_qill[$grouping][] = ts("Activity Auto Genrated %1 '%2'", [1 => $op, 2 => $value]);
6a488035
TO
434 $query->_tables['case_activity'] = $query->_whereTables['case_activity'] = 1;
435 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
436 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
437 return;
438
439 // adding where clause for case_role
440
441 case 'case_role':
be2fb01f 442 $query->_qill[$grouping][] = ts("Role in Case %1 '%2'", [1 => $op, 2 => $value]);
6a488035
TO
443 $query->_tables['case_relation_type'] = $query->_whereTables['case_relationship_type'] = 1;
444 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
445 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
446 return;
447
448 case 'case_from_start_date_low':
449 case 'case_from_start_date_high':
450 $query->dateQueryBuilder($values,
451 'civicrm_case', 'case_from_start_date', 'start_date', 'Start Date'
452 );
453 return;
454
455 case 'case_to_end_date_low':
456 case 'case_to_end_date_high':
457 $query->dateQueryBuilder($values,
458 'civicrm_case', 'case_to_end_date', 'end_date', 'End Date'
459 );
460 return;
461
462 case 'case_start_date':
463 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case.start_date", $op, $value, 'Int');
464 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
465 return;
466
467 case 'case_end_date':
468 $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("civicrm_case.end_date", $op, $value, 'Int');
469 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
470 return;
471
472 case 'case_taglist':
473 $taglist = $value;
be2fb01f 474 $value = [];
6a488035
TO
475 foreach ($taglist as $val) {
476 if ($val) {
477 $val = explode(',', $val);
478 foreach ($val as $tId) {
479 if (is_numeric($tId)) {
480 $value[$tId] = 1;
481 }
482 }
483 }
484 }
485 case 'case_tags':
be2fb01f 486 $tags = CRM_Core_PseudoConstant::get('CRM_Core_DAO_EntityTag', 'tag_id', ['onlyActive' => FALSE]);
6a488035 487
dd33678f 488 if (!empty($value)) {
0e80e389 489 if (is_array($value)) {
490 // Search tag(s) are part of a tag set
491 $val = array_keys($value);
492 }
493 else {
494 // Search tag(s) are part of the tag tree
495 $val = explode(',', $value);
496 }
dd33678f 497 foreach ($val as $v) {
6a488035 498 if ($v) {
dd33678f 499 $names[] = $tags[$v];
6a488035
TO
500 }
501 }
502 }
503
504 $query->_where[$grouping][] = " civicrm_case_tag.tag_id IN (" . implode(',', $val) . " )";
be2fb01f 505 $query->_qill[$grouping][] = ts('Case Tags %1', [1 => $op]) . ' ' . implode(' ' . ts('or') . ' ', $names);
6a488035
TO
506 $query->_tables['civicrm_case'] = $query->_whereTables['civicrm_case'] = 1;
507 $query->_tables['civicrm_case_contact'] = $query->_whereTables['civicrm_case_contact'] = 1;
508 $query->_tables['civicrm_case_tag'] = $query->_whereTables['civicrm_case_tag'] = 1;
509 return;
510 }
511 }
512
4c6ce474 513 /**
d76e5b23 514 * Build from clause.
515 *
100fef9d 516 * @param string $name
d76e5b23 517 * @param string $mode
518 * @param string $side
4c6ce474
EM
519 *
520 * @return string
521 */
00be9182 522 public static function from($name, $mode, $side) {
6a488035
TO
523 $from = "";
524
525 switch ($name) {
526 case 'civicrm_case_contact':
527 $from .= " $side JOIN civicrm_case_contact ON civicrm_case_contact.contact_id = contact_a.id ";
528 break;
529
530 case 'civicrm_case_reporter':
44f817d4 531 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
962c0eda 532 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
533 $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 534 $from .= " $side JOIN civicrm_contact as civicrm_case_reporter ON case_activity_contact.contact_id = civicrm_case_reporter.id ";
6a488035
TO
535 break;
536
537 case 'civicrm_case':
538 $from .= " INNER JOIN civicrm_case ON civicrm_case_contact.case_id = civicrm_case.id";
539 break;
540
541 case 'case_status_id':
542 $from .= " $side JOIN civicrm_option_group option_group_case_status ON (option_group_case_status.name = 'case_status')";
543 $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 ) ";
544 break;
545
546 case 'case_type':
8ffdec17 547 $from .= " $side JOIN civicrm_case_type ON civicrm_case.case_type_id = civicrm_case_type.id ";
6a488035
TO
548 break;
549
550 case 'case_activity_type':
551 $from .= " $side JOIN civicrm_option_group option_group_activity_type ON (option_group_activity_type.name = 'activity_type')";
552 $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 ) ";
553 break;
554
555 case 'recent_activity_status':
556 $from .= " $side JOIN civicrm_option_group option_group_activity_status ON (option_group_activity_status.name = 'activity_status')";
557 $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 ) ";
558 break;
559
560 case 'case_relationship':
561 $session = CRM_Core_Session::singleton();
353ffa53 562 $userID = $session->get('userID');
41cf58d3 563 $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 OR case_relationship.contact_id_b = civicrm_case_contact.contact_id AND case_relationship.contact_id_a = {$userID} AND case_relationship.case_id = civicrm_case.id )";
6a488035
TO
564 break;
565
566 case 'case_relation_type':
567 $from .= " $side JOIN civicrm_relationship_type case_relation_type ON ( case_relation_type.id = case_relationship.relationship_type_id AND
568case_relation_type.id = case_relationship.relationship_type_id )";
569 break;
570
571 case 'case_activity_medium':
572 $from .= " $side JOIN civicrm_option_group option_group_activity_medium ON (option_group_activity_medium.name = 'encounter_medium')";
573 $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 ) ";
574 break;
575
576 case 'case_activity':
577 $from .= " INNER JOIN civicrm_case_activity ON civicrm_case_activity.case_id = civicrm_case.id ";
578 $from .= " INNER JOIN civicrm_activity case_activity ON ( civicrm_case_activity.activity_id = case_activity.id
579 AND case_activity.is_current_revision = 1 )";
580 break;
581
582 case 'civicrm_case_tag':
583 $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 ) ";
584 break;
585 }
586 return $from;
587 }
588
589 /**
fe482240 590 * Getter for the qill object.
6a488035
TO
591 *
592 * @return string
6a488035 593 */
00be9182 594 public function qill() {
6a488035
TO
595 return (isset($this->_qill)) ? $this->_qill : "";
596 }
597
4c6ce474
EM
598 /**
599 * @param $mode
600 * @param bool $includeCustomFields
601 *
602 * @return array|null
603 */
e7483cbe 604 public static function defaultReturnProperties(
28d4d481 605 $mode,
6a488035
TO
606 $includeCustomFields = TRUE
607 ) {
608
609 $properties = NULL;
610
611 if ($mode & CRM_Contact_BAO_Query::MODE_CASE) {
be2fb01f 612 $properties = [
6a488035
TO
613 'contact_type' => 1,
614 'contact_sub_type' => 1,
615 'contact_id' => 1,
616 'sort_name' => 1,
617 'display_name' => 1,
618 'case_id' => 1,
619 'case_activity_subject' => 1,
620 'case_subject' => 1,
621 'case_status' => 1,
622 'case_type' => 1,
623 'case_role' => 1,
624 'case_deleted' => 1,
625 'case_recent_activity_date' => 1,
626 'case_recent_activity_type' => 1,
627 'case_scheduled_activity_date' => 1,
628 'phone' => 1,
629 // 'case_scheduled_activity_type'=> 1
be2fb01f 630 ];
6a488035
TO
631
632 if ($includeCustomFields) {
633 // also get all the custom case properties
634 $fields = CRM_Core_BAO_CustomField::getFieldsForImport('Case');
635 if (!empty($fields)) {
636 foreach ($fields as $name => $dontCare) {
637 $properties[$name] = 1;
638 }
639 }
640 }
641 }
642
643 return $properties;
644 }
645
646 /**
fe482240 647 * This includes any extra fields that might need for export etc.
ad37ac8e 648 *
649 * @param string $mode
650 *
651 * @return array|null
6a488035 652 */
00be9182 653 public static function extraReturnProperties($mode) {
6a488035
TO
654 $properties = NULL;
655
656 if ($mode & CRM_Contact_BAO_Query::MODE_CASE) {
be2fb01f 657 $properties = [
6a488035
TO
658 'case_start_date' => 1,
659 'case_end_date' => 1,
660 'case_subject' => 1,
661 'case_source_contact_id' => 1,
662 'case_activity_status' => 1,
663 'case_activity_duration' => 1,
664 'case_activity_medium_id' => 1,
665 'case_activity_details' => 1,
666 'case_activity_is_auto' => 1,
be2fb01f 667 ];
6a488035
TO
668 }
669 return $properties;
670 }
671
4c6ce474
EM
672 /**
673 * @param $tables
674 */
00be9182 675 public static function tableNames(&$tables) {
a7488080 676 if (!empty($tables['civicrm_case'])) {
be2fb01f 677 $tables = array_merge(['civicrm_case_contact' => 1], $tables);
6a488035
TO
678 }
679
a7488080 680 if (!empty($tables['case_relation_type'])) {
be2fb01f 681 $tables = array_merge(['case_relationship' => 1], $tables);
6a488035
TO
682 }
683 }
684
b62aa188
MD
685 /**
686 * Get the metadata for fields to be included on the case search form.
687 *
688 * @todo ideally this would be a trait included on the case search & advanced search
689 * rather than a static function.
690 */
691 public static function getSearchFieldMetadata() {
692 $fields = ['case_type_id', 'case_status_id', 'case_start_date', 'case_end_date', 'case_subject', 'case_id', 'case_deleted'];
693 $metadata = civicrm_api3('Case', 'getfields', [])['values'];
694 $metadata = array_intersect_key($metadata, array_flip($fields));
695 $metadata['case_tags'] = [
696 'title' => ts('Case Tag(s)'),
697 'type' => CRM_Utils_Type::T_INT,
698 'is_pseudofield' => TRUE,
699 ];
700 if (CRM_Core_Permission::check('access all cases and activities')) {
701 $metadata['case_owner'] = [
702 'title' => ts('Cases'),
703 'type' => CRM_Utils_Type::T_INT,
704 'is_pseudofield' => TRUE,
705 ];
706 }
707 if (!CRM_Core_Permission::check('administer CiviCase')) {
708 unset($metadata['case_deleted']);
709 }
710 return $metadata;
711 }
712
6a488035 713 /**
3819f101 714 * Add all the elements shared between case search and advanced search.
6a488035 715 *
c490a46a 716 * @param CRM_Core_Form $form
6a488035 717 */
00be9182 718 public static function buildSearchForm(&$form) {
6a488035
TO
719 //validate case configuration.
720 $configured = CRM_Case_BAO_Case::isCaseConfigured();
721 $form->assign('notConfigured', !$configured['configured']);
722
b62aa188
MD
723 $form->addSearchFieldMetadata(['Case' => self::getSearchFieldMetadata()]);
724 $form->addFormFieldsFromMetadata();
6a488035 725
6a488035
TO
726 $form->assign('validCiviCase', TRUE);
727
728 //give options when all cases are accessible.
729 $accessAllCases = FALSE;
730 if (CRM_Core_Permission::check('access all cases and activities')) {
731 $accessAllCases = TRUE;
be2fb01f 732 $caseOwner = [1 => ts('Search All Cases'), 2 => ts('Only My Cases')];
6a488035 733 $form->addRadio('case_owner', ts('Cases'), $caseOwner);
5f1c8c57 734 if ($form->get('context') != 'dashboard') {
735 $form->add('checkbox', 'upcoming', ts('Search Cases with Upcoming Activities'));
736 }
6a488035
TO
737 }
738 $form->assign('accessAllCases', $accessAllCases);
739
dd33678f 740 $caseTags = CRM_Core_BAO_Tag::getColorTags('civicrm_case');
6a488035
TO
741
742 if ($caseTags) {
be2fb01f 743 $form->add('select2', 'case_tags', ts('Case Tag(s)'), $caseTags, FALSE, ['class' => 'big', 'placeholder' => ts('- select -'), 'multiple' => TRUE]);
6a488035
TO
744 }
745
746 $parentNames = CRM_Core_BAO_Tag::getTagSet('civicrm_case');
4dff5e17 747 CRM_Core_Form_Tag::buildQuickForm($form, $parentNames, 'civicrm_case', NULL, TRUE, FALSE);
6a488035 748
be2fb01f 749 self::addCustomFormFields($form, ['Case']);
6a488035 750
be2fb01f 751 $form->setDefaults(['case_owner' => 1]);
e547f744 752 }
96025800 753
6a488035 754}