Merge pull request #6989 from seamuslee001/CRM-17415
[civicrm-core.git] / CRM / Case / XMLProcessor / Report.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33class CRM_Case_XMLProcessor_Report extends CRM_Case_XMLProcessor {
34
35 /**
fe482240 36 * The default variable defined.
6a488035
TO
37 *
38 * @var boolean
39 */
40 protected $_isRedact;
41
4c6ce474 42 /**
4c6ce474 43 */
e547f744
TO
44 public function __construct() {
45 }
6a488035 46
4c6ce474 47 /**
100fef9d
CW
48 * @param int $clientID
49 * @param int $caseID
50 * @param string $activitySetName
c490a46a 51 * @param array $params
4c6ce474
EM
52 *
53 * @return mixed
54 */
00be9182 55 public function run($clientID, $caseID, $activitySetName, $params) {
6a488035
TO
56 $contents = self::getCaseReport($clientID,
57 $caseID,
58 $activitySetName,
59 $params,
60 $this
61 );
62
63 return CRM_Case_Audit_Audit::run($contents, $clientID, $caseID);
64 }
65
00be9182 66 public function &getRedactionRules() {
6a488035 67 foreach (array(
353ffa53 68 'redactionStringRules',
acb1052e 69 'redactionRegexRules',
353ffa53 70 ) as $key => $rule) {
6a488035
TO
71 $$rule = CRM_Case_PseudoConstant::redactionRule($key);
72
73 if (!empty($$rule)) {
74 foreach ($$rule as & $val) {
75 //suffixed with a randomly generated 4-digit number
76 if ($key == 'redactionStringRules') {
77 $val .= rand(10000, 100000);
78 }
79 }
80
81 if (!empty($this->{'_' . $rule})) {
82 $this->{'_' . $rule} = CRM_Utils_Array::crmArrayMerge($this->{'_' . $rule}, $$rule);
83 }
84 else {
85 $this->{'_' . $rule} = $$rule;
86 }
87 }
88 }
89 }
90
4c6ce474 91 /**
100fef9d
CW
92 * @param int $clientID
93 * @param int $caseID
4c6ce474
EM
94 *
95 * @return array
96 */
acb1052e 97 public function &caseInfo(
28d4d481 98 $clientID,
6a488035
TO
99 $caseID
100 ) {
101 $case = $this->_redactionRegexRules = array();
102
103 if (empty($this->_redactionStringRules)) {
104 $this->_redactionStringRules = array();
105 }
106
107 if ($this->_isRedact == 1) {
108 $this->getRedactionRules();
109 }
110
111 $client = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $clientID, 'display_name');
112
113 // add Client to the strings to be redacted across the case session
114 if (!array_key_exists($client, $this->_redactionStringRules)) {
115 $this->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($this->_redactionStringRules,
116 array($client => 'name_' . rand(10000, 100000))
117 );
118 $clientSortName = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $clientID, 'sort_name');
119 if (!array_key_exists($clientSortName, $this->_redactionStringRules)) {
120 $this->_redactionStringRules[$clientSortName] = $this->_redactionStringRules[$client];
121 }
122 }
123
124 $case['clientName'] = $this->redact($client);
125
126 $dao = new CRM_Case_DAO_Case();
127 $dao->id = $caseID;
128 if ($dao->find(TRUE)) {
353ffa53 129 $case['subject'] = $dao->subject;
6a488035 130 $case['start_date'] = $dao->start_date;
353ffa53 131 $case['end_date'] = $dao->end_date;
6a488035
TO
132 // FIXME: when we resolve if case_type_is single or multi-select
133 if (strpos($dao->case_type_id, CRM_Core_DAO::VALUE_SEPARATOR) !== FALSE) {
134 $caseTypeID = substr($dao->case_type_id, 1, -1);
135 }
136 else {
137 $caseTypeID = $dao->case_type_id;
138 }
139 $caseTypeIDs = explode(CRM_Core_DAO::VALUE_SEPARATOR,
140 $dao->case_type_id
141 );
142
143 $case['caseType'] = CRM_Case_BAO_Case::getCaseType($caseID);
144 $case['caseTypeName'] = CRM_Case_BAO_Case::getCaseType($caseID, 'name');
145 $case['status'] = CRM_Core_OptionGroup::getLabel('case_status', $dao->status_id, FALSE);
146 }
147 return $case;
148 }
149
4c6ce474
EM
150 /**
151 * @param $xml
100fef9d 152 * @param string $activitySetName
4c6ce474
EM
153 *
154 * @return array|bool
155 */
00be9182 156 public function getActivityTypes($xml, $activitySetName) {
6a488035
TO
157 foreach ($xml->ActivitySets as $activitySetsXML) {
158 foreach ($activitySetsXML->ActivitySet as $activitySetXML) {
159 if ((string ) $activitySetXML->name == $activitySetName) {
160 $activityTypes = array();
161 $allActivityTypes = &$this->allActivityTypes();
162 foreach ($activitySetXML->ActivityTypes as $activityTypesXML) {
163 foreach ($activityTypesXML as $activityTypeXML) {
164 $activityTypeName = (string ) $activityTypeXML->name;
165 $activityTypeInfo = CRM_Utils_Array::value($activityTypeName, $allActivityTypes);
166 if ($activityTypeInfo) {
167 $activityTypes[$activityTypeInfo['id']] = $activityTypeInfo;
168 }
169 }
170 }
171 return empty($activityTypes) ? FALSE : $activityTypes;
172 }
173 }
174 }
175 return FALSE;
176 }
177
4c6ce474
EM
178 /**
179 * @param $xml
100fef9d 180 * @param string $activitySetName
4c6ce474
EM
181 *
182 * @return null|string
183 */
00be9182 184 public function getActivitySetLabel($xml, $activitySetName) {
6a488035
TO
185 foreach ($xml->ActivitySets as $activitySetsXML) {
186 foreach ($activitySetsXML->ActivitySet as $activitySetXML) {
187 if ((string ) $activitySetXML->name == $activitySetName) {
188 return (string ) $activitySetXML->label;
189 }
190 }
191 }
192 return NULL;
193 }
194
4c6ce474 195 /**
100fef9d
CW
196 * @param int $clientID
197 * @param int $caseID
4c6ce474
EM
198 * @param $activityTypes
199 * @param $activities
200 */
00be9182 201 public function getActivities($clientID, $caseID, $activityTypes, &$activities) {
6a488035
TO
202 // get all activities for this case that in this activityTypes set
203 foreach ($activityTypes as $aType) {
204 $map[$aType['id']] = $aType;
205 }
206
207 // get all core activities
208 $coreActivityTypes = CRM_Case_PseudoConstant::caseActivityType(FALSE, TRUE);
209
210 foreach ($coreActivityTypes as $aType) {
211 $map[$aType['id']] = $aType;
212 }
213
214 $activityTypeIDs = implode(',', array_keys($map));
215 $query = "
216SELECT a.*, c.id as caseID
217FROM civicrm_activity a,
218 civicrm_case c,
219 civicrm_case_activity ac
220WHERE a.is_current_revision = 1
221AND a.is_deleted =0
222AND a.activity_type_id IN ( $activityTypeIDs )
223AND c.id = ac.case_id
224AND a.id = ac.activity_id
225AND ac.case_id = %1
226";
227
228 $params = array(1 => array($caseID, 'Integer'));
229 $dao = CRM_Core_DAO::executeQuery($query, $params);
230 while ($dao->fetch()) {
231 $activityTypeInfo = $map[$dao->activity_type_id];
232 $activities[] = $this->getActivity($clientID,
233 $dao,
234 $activityTypeInfo
235 );
236 }
237 }
238
4c6ce474 239 /**
100fef9d
CW
240 * @param int $clientID
241 * @param int $activityID
4c6ce474
EM
242 * @param bool $anyActivity
243 * @param int $redact
244 *
245 * @return mixed
246 */
00be9182 247 public function &getActivityInfo($clientID, $activityID, $anyActivity = FALSE, $redact = 0) {
6a488035
TO
248 static $activityInfos = array();
249 if ($redact) {
250 $this->_isRedact = 1;
251 $this->getRedactionRules();
252 }
253
6a488035
TO
254 $index = $activityID . '_' . (int) $anyActivity;
255
256 if ($clientID) {
257 $index = $index . '_' . $clientID;
258 }
259
6a488035
TO
260 if (!array_key_exists($index, $activityInfos)) {
261 $activityInfos[$index] = array();
262 $selectCaseActivity = "";
263 $joinCaseActivity = "";
264
265 if ($clientID) {
266 $selectCaseActivity = ", ca.case_id as caseID ";
267 $joinCaseActivity = " INNER JOIN civicrm_case_activity ca ON a.id = ca.activity_id ";
268 }
269
e7e657f0 270 $activityContacts = CRM_Core_OptionGroup::values('activity_contacts', FALSE, FALSE, FALSE, NULL, 'name');
9e74e3ce 271 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
272 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
8ef12e64 273
6a488035 274 $query = "
5a1bd70b 275SELECT a.*, aa.contact_id as assigneeID, at.contact_id as targetID
6a488035
TO
276{$selectCaseActivity}
277FROM civicrm_activity a
278{$joinCaseActivity}
9e74e3ce 279LEFT JOIN civicrm_activity_contact at ON a.id = at.activity_id AND at.record_type_id = $targetID
280LEFT JOIN civicrm_activity_contact aa ON a.id = aa.activity_id AND aa.record_type_id = $assigneeID
6a488035
TO
281WHERE a.id = %1
282 ";
283 $params = array(1 => array($activityID, 'Integer'));
284 $dao = CRM_Core_DAO::executeQuery($query, $params);
285
286 if ($dao->fetch()) {
287 //if activity type is email get info of all activities.
288 if ($dao->activity_type_id == CRM_Core_OptionGroup::getValue('activity_type', 'Email', 'name')) {
289 $anyActivity = TRUE;
290 }
a953bf20 291 $activityTypes = CRM_Case_PseudoConstant::caseActivityType(FALSE, $anyActivity);
6a488035
TO
292 $activityTypeInfo = NULL;
293
294 if (isset($activityTypes[$dao->activity_type_id])) {
295 $activityTypeInfo = $activityTypes[$dao->activity_type_id];
296 }
297 if ($activityTypeInfo) {
298 $activityInfos[$index] = $this->getActivity($clientID, $dao, $activityTypeInfo);
299 }
300 }
301 }
302
303 return $activityInfos[$index];
304 }
305
4c6ce474 306 /**
100fef9d 307 * @param int $clientID
4c6ce474
EM
308 * @param $activityDAO
309 * @param $activityTypeInfo
310 *
311 * @return array
312 */
00be9182 313 public function &getActivity($clientID, $activityDAO, &$activityTypeInfo) {
6a488035
TO
314 if (empty($this->_redactionStringRules)) {
315 $this->_redactionStringRules = array();
316 }
317
318 $activity = array();
319 $activity['fields'] = array();
320 if ($clientID) {
321 $clientID = CRM_Utils_Type::escape($clientID, 'Integer');
322 if (!in_array($activityTypeInfo['name'], array(
353ffa53 323 'Email',
acb1052e 324 'Inbound Email',
353ffa53
TO
325 ))
326 ) {
6a488035
TO
327 $activity['editURL'] = CRM_Utils_System::url('civicrm/case/activity',
328 "reset=1&cid={$clientID}&caseid={$activityDAO->caseID}&action=update&atype={$activityDAO->activity_type_id}&id={$activityDAO->id}"
329 );
330 }
331 else {
332 $activity['editURL'] = '';
333 }
334
335 $client = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $clientID, 'display_name');
336 // add Client SortName as well as Display to the strings to be redacted across the case session
337 // suffixed with a randomly generated 4-digit number
338 if (!array_key_exists($client, $this->_redactionStringRules)) {
339 $this->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($this->_redactionStringRules,
340 array($client => 'name_' . rand(10000, 100000))
341 );
342
343 $clientSortName = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $clientID, 'sort_name');
344 if (!array_key_exists($clientSortName, $this->_redactionStringRules)) {
345 $this->_redactionStringRules[$clientSortName] = $this->_redactionStringRules[$client];
346 }
347 }
348
349 $activity['fields'][] = array(
350 'label' => 'Client',
351 'value' => $this->redact($client),
352 'type' => 'String',
353 );
354 }
355
e7e657f0 356 $activityContacts = CRM_Core_OptionGroup::values('activity_contacts', FALSE, FALSE, FALSE, NULL, 'name');
034500d4 357 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
358 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
6a488035
TO
359 if (!empty($activityDAO->targetID)) {
360 // Re-lookup the target ID since the DAO only has the first recipient if there are multiple.
361 // Maybe not the best solution.
353ffa53 362 $targetNames = CRM_Activity_BAO_ActivityContact::getNames($activityDAO->id, $targetID);
6a488035 363 $processTarget = FALSE;
353ffa53 364 $label = ts('With Contact(s)');
22d5fc65 365 if (in_array($activityTypeInfo['name'], array('Email', 'Inbound Email'))) {
6a488035
TO
366 $processTarget = TRUE;
367 $label = ts('Recipient');
368 }
369 if (!$processTarget) {
370 foreach ($targetNames as $targetID => $targetName) {
371 if ($targetID != $clientID) {
372 $processTarget = TRUE;
373 break;
374 }
375 }
376 }
377
378 if ($processTarget) {
379 $targetRedacted = array();
380 foreach ($targetNames as $targetID => $target) {
381 // add Recipient SortName as well as Display to the strings to be redacted across the case session
382 // suffixed with a randomly generated 4-digit number
383 if (!array_key_exists($target, $this->_redactionStringRules)) {
384 $this->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($this->_redactionStringRules,
385 array($target => 'name_' . rand(10000, 100000))
386 );
387 $targetSortName = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $targetID, 'sort_name');
388 if (!array_key_exists($targetSortName, $this->_redactionStringRules)) {
389 $this->_redactionStringRules[$targetSortName] = $this->_redactionStringRules[$target];
390 }
391 }
392 $targetRedacted[] = $this->redact($target);
393 }
394
395 $activity['fields'][] = array(
396 'label' => $label,
397 'value' => implode('; ', $targetRedacted),
398 'type' => 'String',
399 );
400 }
401 }
402
403 // Activity Type info is a special field
404 $activity['fields'][] = array(
22d5fc65 405 'label' => ts('Activity Type'),
6a488035
TO
406 'value' => $activityTypeInfo['label'],
407 'type' => 'String',
408 );
409
410 $activity['fields'][] = array(
22d5fc65 411 'label' => ts('Subject'),
6a488035
TO
412 'value' => htmlspecialchars($this->redact($activityDAO->subject)),
413 'type' => 'Memo',
414 );
415
416 $creator = $this->getCreatedBy($activityDAO->id);
417 // add Creator to the strings to be redacted across the case session
418 if (!array_key_exists($creator, $this->_redactionStringRules)) {
419 $this->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($this->_redactionStringRules,
420 array($creator => 'name_' . rand(10000, 100000))
421 );
422 }
423 $activity['fields'][] = array(
22d5fc65 424 'label' => ts('Created By'),
6a488035
TO
425 'value' => $this->redact($creator),
426 'type' => 'String',
427 );
e7e657f0 428 $activityContacts = CRM_Core_OptionGroup::values('activity_contacts', FALSE, FALSE, FALSE, NULL, 'name');
034500d4 429 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
430 $source_contact_id = CRM_Activity_BAO_Activity::getActivityContact($activityDAO->id, $sourceID);
6a488035 431 $reporter = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
034500d4 432 $source_contact_id,
6a488035
TO
433 'display_name'
434 );
435
436 // add Reporter SortName as well as Display to the strings to be redacted across the case session
437 // suffixed with a randomly generated 4-digit number
438 if (!array_key_exists($reporter, $this->_redactionStringRules)) {
439 $this->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($this->_redactionStringRules,
440 array($reporter => 'name_' . rand(10000, 100000))
441 );
442
443 $reporterSortName = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
353ffa53 444 $source_contact_id,
6a488035
TO
445 'sort_name'
446 );
447 if (!array_key_exists($reporterSortName, $this->_redactionStringRules)) {
448 $this->_redactionStringRules[$reporterSortName] = $this->_redactionStringRules[$reporter];
449 }
450 }
451
452 $activity['fields'][] = array(
22d5fc65 453 'label' => ts('Reported By'),
6a488035
TO
454 'value' => $this->redact($reporter),
455 'type' => 'String',
456 );
457
458 if (!empty($activityDAO->assigneeID)) {
459 //allow multiple assignee contacts.CRM-4503.
90b05581 460 $assignee_contact_names = CRM_Activity_BAO_ActivityAssignment::getAssigneeNames(array($activityDAO->id), TRUE);
6a488035
TO
461
462 foreach ($assignee_contact_names as & $assignee) {
463 // add Assignee to the strings to be redacted across the case session
464 $this->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($this->_redactionStringRules,
465 array($assignee => 'name_' . rand(10000, 100000))
466 );
467 $assignee = $this->redact($assignee);
468 }
469 $assigneeContacts = implode(', ', $assignee_contact_names);
470 $activity['fields'][] = array(
3bd48a28 471 'label' => ts('Assigned to'),
6a488035
TO
472 'value' => $assigneeContacts,
473 'type' => 'String',
474 );
475 }
476
477 if ($activityDAO->medium_id) {
478 $activity['fields'][] = array(
22d5fc65 479 'label' => ts('Medium'),
6a488035
TO
480 'value' => CRM_Core_OptionGroup::getLabel('encounter_medium',
481 $activityDAO->medium_id, FALSE
482 ),
483 'type' => 'String',
484 );
485 }
486
487 $activity['fields'][] = array(
22d5fc65 488 'label' => ts('Location'),
6a488035
TO
489 'value' => $activityDAO->location,
490 'type' => 'String',
491 );
492
493 $activity['fields'][] = array(
22d5fc65 494 'label' => ts('Date and Time'),
6a488035
TO
495 'value' => $activityDAO->activity_date_time,
496 'type' => 'Date',
497 );
498
499 $activity['fields'][] = array(
22d5fc65 500 'label' => ts('Details'),
6a488035
TO
501 'value' => $this->redact(CRM_Utils_String::stripAlternatives($activityDAO->details)),
502 'type' => 'Memo',
503 );
504
505 // Skip Duration field if empty (to avoid " minutes" output). Might want to do this for all fields at some point. dgg
506 if ($activityDAO->duration) {
507 $activity['fields'][] = array(
22d5fc65 508 'label' => ts('Duration'),
6a488035
TO
509 'value' => $activityDAO->duration . ' ' . ts('minutes'),
510 'type' => 'Int',
511 );
512 }
513 $activity['fields'][] = array(
22d5fc65 514 'label' => ts('Status'),
6a488035
TO
515 'value' => CRM_Core_OptionGroup::getLabel('activity_status',
516 $activityDAO->status_id
517 ),
518 'type' => 'String',
519 );
520
521 $activity['fields'][] = array(
22d5fc65 522 'label' => ts('Priority'),
6a488035
TO
523 'value' => CRM_Core_OptionGroup::getLabel('priority',
524 $activityDAO->priority_id
525 ),
526 'type' => 'String',
527 );
528
529 //for now empty custom groups
530 $activity['customGroups'] = $this->getCustomData($clientID,
531 $activityDAO,
532 $activityTypeInfo
533 );
534
535 return $activity;
536 }
537
4c6ce474 538 /**
100fef9d 539 * @param int $clientID
4c6ce474
EM
540 * @param $activityDAO
541 * @param $activityTypeInfo
542 *
543 * @return array|null
544 */
00be9182 545 public function getCustomData($clientID, $activityDAO, &$activityTypeInfo) {
6a488035
TO
546 list($typeValues, $options, $sql) = $this->getActivityTypeCustomSQL($activityTypeInfo['id'], '%Y-%m-%d');
547
548 $params = array(1 => array($activityDAO->id, 'Integer'));
549
550 $customGroups = array();
551 foreach ($sql as $tableName => $sqlClause) {
552 $dao = CRM_Core_DAO::executeQuery($sqlClause, $params);
553 if ($dao->fetch()) {
554 $customGroup = array();
555 foreach ($typeValues[$tableName] as $columnName => $typeValue) {
556 $value = CRM_Core_BAO_CustomField::getDisplayValue($dao->$columnName,
557 $typeValue['fieldID'],
558 $options
559 );
560
561 if (CRM_Utils_Array::value('type', $typeValue) == 'Date') {
562 $value = $dao->$columnName;
563 }
564
565 if ($value) {
566 // Note: this is already taken care in getDisplayValue above, but sometimes
567 // strings like '^A^A' creates problem. So to fix this special case -
568 if (strstr($value, CRM_Core_DAO::VALUE_SEPARATOR)) {
569 $value = trim($value, CRM_Core_DAO::VALUE_SEPARATOR);
570 }
571 if (CRM_Utils_Array::value('type', $typeValue) == 'String' ||
572 CRM_Utils_Array::value('type', $typeValue) == 'Memo'
573 ) {
574 $value = $this->redact($value);
575 }
576 elseif (CRM_Utils_Array::value('type', $typeValue) == 'File') {
577 $tableName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_EntityFile', $typeValue, 'entity_table');
578 $value = CRM_Core_BAO_File::attachmentInfo($tableName, $activityDAO->id);
579 }
580 elseif (CRM_Utils_Array::value('type', $typeValue) == 'Link') {
581 $value = CRM_Utils_System::formatWikiURL($value);
582 }
583 }
584 //$typeValue
585 $customGroup[] = array(
586 'label' => $typeValue['label'],
587 'value' => $value,
588 'type' => $typeValue['type'],
dc7c0d62 589 'fieldID' => $typeValue['fieldID'],
6a488035
TO
590 );
591 }
592 $customGroups[$dao->groupTitle] = $customGroup;
593 }
594 }
595
596 return empty($customGroups) ? NULL : $customGroups;
597 }
598
4c6ce474 599 /**
100fef9d 600 * @param int $activityTypeID
4c6ce474
EM
601 * @param null $dateFormat
602 *
603 * @return mixed
604 */
00be9182 605 public function getActivityTypeCustomSQL($activityTypeID, $dateFormat = NULL) {
6a488035
TO
606 static $cache = array();
607
608 if (is_null($activityTypeID)) {
609 $activityTypeID = 0;
610 }
611
612 if (!isset($cache[$activityTypeID])) {
613 $query = "
614SELECT cg.title as groupTitle,
615 cg.table_name as tableName ,
616 cf.column_name as columnName,
617 cf.label as label ,
618 cg.id as groupID ,
619 cf.id as fieldID ,
620 cf.data_type as dataType ,
621 cf.html_type as htmlType ,
622 cf.option_group_id as optionGroupID
623FROM civicrm_custom_group cg,
624 civicrm_custom_field cf
625WHERE cf.custom_group_id = cg.id
fb6aa4b9 626AND cg.extends = 'Activity'
627AND " . CRM_Core_Permission::customGroupClause(CRM_Core_Permission::VIEW, 'cg.');
6a488035
TO
628
629 if ($activityTypeID) {
630 $query .= "AND ( cg.extends_entity_column_value IS NULL OR cg.extends_entity_column_value LIKE '%" . CRM_Core_DAO::VALUE_SEPARATOR . "%1" . CRM_Core_DAO::VALUE_SEPARATOR . "%' )";
631 }
632 else {
633 $query .= "AND cg.extends_entity_column_value IS NULL";
634 }
a5c0c7f2 635 $query .= "ORDER BY cg.weight, cf.weight";
6a488035 636 $params = array(
353ffa53
TO
637 1 => array(
638 $activityTypeID,
6a488035 639 'Integer',
acb1052e 640 ),
353ffa53 641 );
6a488035
TO
642 $dao = CRM_Core_DAO::executeQuery($query, $params);
643
644 $result = $options = $sql = $groupTitle = array();
645 while ($dao->fetch()) {
646 if (!array_key_exists($dao->tableName, $result)) {
647 $result[$dao->tableName] = array();
648 $sql[$dao->tableName] = array();
649 }
650 $result[$dao->tableName][$dao->columnName] = array(
651 'label' => $dao->label,
652 'type' => $dao->dataType,
653 'fieldID' => $dao->fieldID,
654 );
655
656 $options[$dao->fieldID] = array();
657 $options[$dao->fieldID]['attributes'] = array(
658 'label' => $dao->label,
659 'data_type' => $dao->dataType,
660 'html_type' => $dao->htmlType,
661 );
662 // since we want to add ISO date format.
663 if ($dateFormat && $dao->htmlType == 'Select Date') {
664 $options[$dao->fieldID]['attributes']['format'] = $dateFormat;
665 }
666 if ($dao->optionGroupID) {
667 $query = "
668SELECT label, value
669 FROM civicrm_option_value
670 WHERE option_group_id = {$dao->optionGroupID}
671";
672
673 $option = CRM_Core_DAO::executeQuery($query);
674 while ($option->fetch()) {
675 $dataType = $dao->dataType;
676 if ($dataType == 'Int' || $dataType == 'Float') {
677 $num = round($option->value, 2);
678 $options[$dao->fieldID]["$num"] = $option->label;
679 }
680 else {
681 $options[$dao->fieldID][$option->value] = $option->label;
682 }
683 }
684 }
685
686 $sql[$dao->tableName][] = $dao->columnName;
687 $groupTitle[$dao->tableName] = $dao->groupTitle;
688 }
689
690 foreach ($sql as $tableName => $values) {
691 $columnNames = implode(',', $values);
692 $sql[$tableName] = "
693SELECT '{$groupTitle[$tableName]}' as groupTitle, $columnNames
694FROM $tableName
695WHERE entity_id = %1
696";
697 }
698
699 $cache[$activityTypeID] = array($result, $options, $sql);
700 }
701 return $cache[$activityTypeID];
702 }
703
4c6ce474 704 /**
100fef9d 705 * @param int $activityID
4c6ce474
EM
706 *
707 * @return null|string
708 */
00be9182 709 public function getCreatedBy($activityID) {
6a488035
TO
710 $query = "
711SELECT c.display_name
712FROM civicrm_contact c,
713 civicrm_log l
714WHERE l.entity_table = 'civicrm_activity'
715AND l.entity_id = %1
716AND l.modified_id = c.id
717LIMIT 1
718";
719
720 $params = array(1 => array($activityID, 'Integer'));
721 return CRM_Core_DAO::singleValueQuery($query, $params);
722 }
723
4c6ce474
EM
724 /**
725 * @param $string
726 * @param bool $printReport
727 * @param array $replaceString
728 *
729 * @return mixed
730 */
c490a46a 731 private function redact($string, $printReport = FALSE, $replaceString = array()) {
6a488035
TO
732 if ($printReport) {
733 return CRM_Utils_String::redaction($string, $replaceString);
734 }
735 elseif ($this->_isRedact) {
736 $regexToReplaceString = CRM_Utils_String::regex($string, $this->_redactionRegexRules);
737 return CRM_Utils_String::redaction($string, array_merge($this->_redactionStringRules, $regexToReplaceString));
738 }
739 return $string;
740 }
741
4c6ce474 742 /**
100fef9d
CW
743 * @param int $clientID
744 * @param int $caseID
745 * @param string $activitySetName
c490a46a
CW
746 * @param array $params
747 * @param CRM_Core_Form $form
4c6ce474
EM
748 *
749 * @return mixed
750 */
00be9182 751 public static function getCaseReport($clientID, $caseID, $activitySetName, $params, $form) {
6a488035
TO
752
753 $template = CRM_Core_Smarty::singleton();
754
755 $template->assign('caseId', $caseID);
756 $template->assign('clientID', $clientID);
757 $template->assign('activitySetName', $activitySetName);
758
a7488080 759 if (!empty($params['is_redact'])) {
6a488035
TO
760 $form->_isRedact = TRUE;
761 $template->assign('_isRedact', 'true');
762 }
763 else {
764 $form->_isRedact = FALSE;
765 $template->assign('_isRedact', 'false');
766 }
767
768 // first get all case information
769 $case = $form->caseInfo($clientID, $caseID);
770 $template->assign_by_ref('case', $case);
771
772 if ($params['include_activities'] == 1) {
773 $template->assign('includeActivities', 'All');
774 }
775 else {
776 $template->assign('includeActivities', 'Missing activities only');
777 }
778
779 $xml = $form->retrieve($case['caseTypeName']);
780
781 $activitySetNames = CRM_Case_XMLProcessor_Process::activitySets($xml->ActivitySets);
782 $pageTitle = CRM_Utils_Array::value($activitySetName, $activitySetNames);
783 $template->assign('pageTitle', $pageTitle);
784
785 if ($activitySetName) {
786 $activityTypes = $form->getActivityTypes($xml, $activitySetName);
787 }
788 else {
789 $activityTypes = CRM_Case_XMLProcessor::allActivityTypes();
790 }
791
792 if (!$activityTypes) {
793 return FALSE;
794 }
795
b44e3f84 796 // next get activity set Information
e547f744 797 $activitySet = array(
353ffa53 798 'label' => $form->getActivitySetLabel($xml, $activitySetName),
6a488035
TO
799 'includeActivities' => 'All',
800 'redact' => 'false',
801 );
802 $template->assign_by_ref('activitySet', $activitySet);
803
804 //now collect all the information about activities
805 $activities = array();
806 $form->getActivities($clientID, $caseID, $activityTypes, $activities);
807 $template->assign_by_ref('activities', $activities);
808
809 // now run the template
810 $contents = $template->fetch('CRM/Case/XMLProcessor/Report.tpl');
811 return $contents;
812 }
813
00be9182 814 public static function printCaseReport() {
353ffa53
TO
815 $caseID = CRM_Utils_Request::retrieve('caseID', 'Positive', CRM_Core_DAO::$_nullObject);
816 $clientID = CRM_Utils_Request::retrieve('cid', 'Positive', CRM_Core_DAO::$_nullObject);
817 $activitySetName = CRM_Utils_Request::retrieve('asn', 'String', CRM_Core_DAO::$_nullObject);
818 $isRedact = CRM_Utils_Request::retrieve('redact', 'Boolean', CRM_Core_DAO::$_nullObject);
6a488035 819 $includeActivities = CRM_Utils_Request::retrieve('all', 'Positive', CRM_Core_DAO::$_nullObject);
353ffa53
TO
820 $params = $otherRelationships = $globalGroupInfo = array();
821 $report = new CRM_Case_XMLProcessor_Report($isRedact);
6a488035
TO
822 if ($includeActivities) {
823 $params['include_activities'] = 1;
824 }
825
826 if ($isRedact) {
827 $params['is_redact'] = 1;
828 $report->_redactionStringRules = array();
829 }
830 $template = CRM_Core_Smarty::singleton();
831
832 //get case related relationships (Case Role)
833 $caseRelationships = CRM_Case_BAO_Case::getCaseRoles($clientID, $caseID);
834 $caseType = CRM_Case_BAO_Case::getCaseType($caseID, 'name');
835
836 $xmlProcessor = new CRM_Case_XMLProcessor_Process();
837 $caseRoles = $xmlProcessor->get($caseType, 'CaseRoles');
838 foreach ($caseRelationships as $key => & $value) {
a7488080 839 if (!empty($caseRoles[$value['relation_type']])) {
6a488035
TO
840 unset($caseRoles[$value['relation_type']]);
841 }
842 if ($isRedact) {
843 if (!array_key_exists($value['name'], $report->_redactionStringRules)) {
844 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
845 array($value['name'] => 'name_' . rand(10000, 100000))
846 );
847 }
848 $value['name'] = self::redact($value['name'], TRUE, $report->_redactionStringRules);
a7488080 849 if (!empty($value['email']) &&
6a488035
TO
850 !array_key_exists($value['email'], $report->_redactionStringRules)
851 ) {
852 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
853 array($value['email'] => 'email_' . rand(10000, 100000))
854 );
855 }
856
857 $value['email'] = self::redact($value['email'], TRUE, $report->_redactionStringRules);
858
a7488080 859 if (!empty($value['phone']) &&
6a488035
TO
860 !array_key_exists($value['phone'], $report->_redactionStringRules)
861 ) {
862 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
863 array($value['phone'] => 'phone_' . rand(10000, 100000))
864 );
865 }
866 $value['phone'] = self::redact($value['phone'], TRUE, $report->_redactionStringRules);
867 }
868 }
869
870 $caseRoles['client'] = CRM_Case_BAO_Case::getContactNames($caseID);
871 if ($isRedact) {
872 if (!array_key_exists($caseRoles['client']['sort_name'], $report->_redactionStringRules)) {
873 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
874 array($caseRoles['client']['sort_name'] => 'name_' . rand(10000, 100000))
875 );
876 }
877 if (!array_key_exists($caseRoles['client']['display_name'], $report->_redactionStringRules)) {
878 $report->_redactionStringRules[$caseRoles['client']['display_name']] = $report->_redactionStringRules[$caseRoles['client']['sort_name']];
879 }
880 $caseRoles['client']['sort_name'] = self::redact($caseRoles['client']['sort_name'], TRUE, $report->_redactionStringRules);
a7488080 881 if (!empty($caseRoles['client']['email']) &&
6a488035
TO
882 !array_key_exists($caseRoles['client']['email'], $report->_redactionStringRules)
883 ) {
884 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
885 array($caseRoles['client']['email'] => 'email_' . rand(10000, 100000))
886 );
887 }
888 $caseRoles['client']['email'] = self::redact($caseRoles['client']['email'], TRUE, $report->_redactionStringRules);
889
a7488080 890 if (!empty($caseRoles['client']['phone']) &&
6a488035
TO
891 !array_key_exists($caseRoles['client']['phone'], $report->_redactionStringRules)
892 ) {
893 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
894 array($caseRoles['client']['phone'] => 'phone_' . rand(10000, 100000))
895 );
896 }
897 $caseRoles['client']['phone'] = self::redact($caseRoles['client']['phone'], TRUE, $report->_redactionStringRules);
898 }
899
900 // Retrieve ALL client relationships
901 $relClient = CRM_Contact_BAO_Relationship::getRelationship($clientID,
902 CRM_Contact_BAO_Relationship::CURRENT,
903 0, 0, 0, NULL, NULL, FALSE
904 );
905 foreach ($relClient as $r) {
906 if ($isRedact) {
907 if (!array_key_exists($r['name'], $report->_redactionStringRules)) {
908 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
909 array($r['name'] => 'name_' . rand(10000, 100000))
910 );
911 }
912 if (!array_key_exists($r['display_name'], $report->_redactionStringRules)) {
913 $report->_redactionStringRules[$r['display_name']] = $report->_redactionStringRules[$r['name']];
914 }
915 $r['name'] = self::redact($r['name'], TRUE, $report->_redactionStringRules);
916
a7488080 917 if (!empty($r['phone']) &&
6a488035
TO
918 !array_key_exists($r['phone'], $report->_redactionStringRules)
919 ) {
920 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
921 array($r['phone'] => 'phone_' . rand(10000, 100000))
922 );
923 }
924 $r['phone'] = self::redact($r['phone'], TRUE, $report->_redactionStringRules);
925
a7488080 926 if (!empty($r['email']) &&
6a488035
TO
927 !array_key_exists($r['email'], $report->_redactionStringRules)
928 ) {
929 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
930 array($r['email'] => 'email_' . rand(10000, 100000))
931 );
932 }
933 $r['email'] = self::redact($r['email'], TRUE, $report->_redactionStringRules);
934 }
935 if (!array_key_exists($r['id'], $caseRelationships)) {
936 $otherRelationships[] = $r;
937 }
938 }
939
940 // Now global contact list that appears on all cases.
941 $relGlobal = CRM_Case_BAO_Case::getGlobalContacts($globalGroupInfo);
942 foreach ($relGlobal as & $r) {
943 if ($isRedact) {
944 if (!array_key_exists($r['sort_name'], $report->_redactionStringRules)) {
945 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
946 array($r['sort_name'] => 'name_' . rand(10000, 100000))
947 );
948 }
949 if (!array_key_exists($r['display_name'], $report->_redactionStringRules)) {
950 $report->_redactionStringRules[$r['display_name']] = $report->_redactionStringRules[$r['sort_name']];
951 }
952
953 $r['sort_name'] = self::redact($r['sort_name'], TRUE, $report->_redactionStringRules);
954
a7488080 955 if (!empty($r['phone']) &&
6a488035
TO
956 !array_key_exists($r['phone'], $report->_redactionStringRules)
957 ) {
958 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
959 array($r['phone'] => 'phone_' . rand(10000, 100000))
960 );
961 }
962 $r['phone'] = self::redact($r['phone'], TRUE, $report->_redactionStringRules);
963
a7488080 964 if (!empty($r['email']) &&
6a488035
TO
965 !array_key_exists($r['email'], $report->_redactionStringRules)
966 ) {
967 $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules,
968 array($r['email'] => 'email_' . rand(10000, 100000))
969 );
970 }
971 $r['email'] = self::redact($r['email'], TRUE, $report->_redactionStringRules);
972 }
973 }
974
b077cff9
JM
975 // Retrieve custom values for cases.
976 $customValues = CRM_Core_BAO_CustomValueTable::getEntityValues($caseID, 'Case');
977 $extends = array('case');
978 $groupTree = CRM_Core_BAO_CustomGroup::getGroupDetail(NULL, NULL, $extends);
979 $caseCustomFields = array();
219af4d3
CW
980 while (list($gid, $group_values) = each($groupTree)) {
981 while (list($id, $field_values) = each($group_values['fields'])) {
982 if (array_key_exists($id, $customValues)) {
983 $caseCustomFields[$gid]['title'] = $group_values['title'];
984 $caseCustomFields[$gid]['values'][$id] = array(
b077cff9
JM
985 'label' => $field_values['label'],
986 'value' => $customValues[$id],
987 );
988 }
989 }
990 }
6a488035
TO
991 $template->assign('caseRelationships', $caseRelationships);
992 $template->assign('caseRoles', $caseRoles);
993 $template->assign('otherRelationships', $otherRelationships);
994 $template->assign('globalRelationships', $relGlobal);
995 $template->assign('globalGroupInfo', $globalGroupInfo);
b077cff9 996 $template->assign('caseCustomFields', $caseCustomFields);
6a488035
TO
997 $contents = self::getCaseReport($clientID,
998 $caseID,
999 $activitySetName,
1000 $params,
1001 $report
1002 );
1003 $printReport = CRM_Case_Audit_Audit::run($contents, $clientID, $caseID, TRUE);
1004 echo $printReport;
1005 CRM_Utils_System::civiExit();
1006 }
96025800 1007
6a488035 1008}