Merge pull request #15109 from civicrm/5.17
[civicrm-core.git] / CRM / Export / BAO / ExportProcessor.php
CommitLineData
6003a964 1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6003a964 7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6003a964 32 */
33
34/**
35 * Class CRM_Export_BAO_ExportProcessor
36 *
37 * Class to handle logic of export.
38 */
39class CRM_Export_BAO_ExportProcessor {
40
41 /**
42 * @var int
43 */
44 protected $queryMode;
45
46 /**
47 * @var int
48 */
49 protected $exportMode;
50
adabfa40 51 /**
52 * Array of fields in the main query.
53 *
54 * @var array
55 */
56 protected $queryFields = [];
57
71464b73 58 /**
59 * Either AND or OR.
60 *
61 * @var string
62 */
63 protected $queryOperator;
64
d41ab886 65 /**
66 * Requested output fields.
67 *
68 * If set to NULL then it is 'primary fields only'
69 * which actually means pretty close to all fields!
70 *
71 * @var array|null
72 */
73 protected $requestedFields;
74
b7db6051 75 /**
76 * Is the contact being merged into a single household.
77 *
78 * @var bool
79 */
80 protected $isMergeSameHousehold;
81
2761a916 82 /**
83 * Should contacts with the same address be merged.
84 *
85 * @var bool
86 */
87 protected $isMergeSameAddress = FALSE;
88
89 /**
90 * Fields that need to be retrieved for address merge purposes but should not be in output.
91 *
92 * @var array
93 */
94 protected $additionalFieldsForSameAddressMerge = [];
95
d97cefdc 96 /**
97 * Fields used for merging same contacts.
98 *
99 * @var array
100 */
101 protected $contactGreetingFields = [];
102
2761a916 103 /**
104 * Get additional non-visible fields for address merge purposes.
105 *
106 * @return array
107 */
108 public function getAdditionalFieldsForSameAddressMerge(): array {
109 return $this->additionalFieldsForSameAddressMerge;
110 }
111
112 /**
113 * Set additional non-visible fields for address merge purposes.
114 */
115 public function setAdditionalFieldsForSameAddressMerge() {
116 if ($this->isMergeSameAddress) {
117 $fields = ['id', 'master_id', 'state_province_id', 'postal_greeting_id', 'addressee_id'];
118 foreach ($fields as $index => $field) {
119 if (!empty($this->getReturnProperties()[$field])) {
120 unset($fields[$index]);
121 }
122 }
123 $this->additionalFieldsForSameAddressMerge = array_fill_keys($fields, 1);
124 }
125 }
126
127 /**
128 * Should contacts with the same address be merged.
129 *
130 * @return bool
131 */
132 public function isMergeSameAddress(): bool {
133 return $this->isMergeSameAddress;
134 }
135
136 /**
137 * Set same address is to be merged.
138 *
139 * @param bool $isMergeSameAddress
140 */
141 public function setIsMergeSameAddress(bool $isMergeSameAddress) {
142 $this->isMergeSameAddress = $isMergeSameAddress;
143 }
144
51d84eca 145 /**
146 * Additional fields required to export postal fields.
147 *
148 * @var array
149 */
150 protected $additionalFieldsForPostalExport = [];
151
152 /**
153 * Get additional fields required to do a postal export.
154 *
155 * @return array
156 */
157 public function getAdditionalFieldsForPostalExport() {
158 return $this->additionalFieldsForPostalExport;
159 }
160
161 /**
162 * Set additional fields required for a postal export.
163 */
164 public function setAdditionalFieldsForPostalExport() {
165 if ($this->getRequestedFields() && $this->isPostalableOnly()) {
166 $fields = ['is_deceased', 'do_not_mail', 'street_address', 'supplemental_address_1'];
167 foreach ($fields as $index => $field) {
168 if (!empty($this->getReturnProperties()[$field])) {
169 unset($field[$index]);
170 }
171 }
172 $this->additionalFieldsForPostalExport = array_fill_keys($fields, 1);
173 }
174 }
175
6d52bfe5 176 /**
177 * Only export contacts that can receive postal mail.
178 *
179 * Includes being alive, having an address & not having do_not_mail.
180 *
181 * @var bool
182 */
183 protected $isPostalableOnly;
184
944ed388 185 /**
186 * Key representing the head of household in the relationship array.
187 *
188 * e.g. ['8_b_a' => 'Household Member Is', '8_a_b = 'Household Member Of'.....]
189 *
7b966967 190 * @var array
944ed388 191 */
192 protected $relationshipTypes = [];
193
704e3e9a 194 /**
195 * Array of properties to retrieve for relationships.
196 *
197 * @var array
198 */
199 protected $relationshipReturnProperties = [];
200
136f69a8 201 /**
202 * IDs of households that have already been exported.
203 *
204 * @var array
205 */
206 protected $exportedHouseholds = [];
207
ebebd629 208 /**
209 * Households to skip during export as they will be exported via their relationships anyway.
210 *
211 * @var array
212 */
213 protected $householdsToSkip = [];
214
e530cef4 215 /**
216 * Additional fields to return.
217 *
218 * This doesn't make much sense when we have a fields set but search build add it's own onto
219 * the 'Primary fields' (all) option.
220 *
221 * @var array
222 */
223 protected $additionalRequestedReturnProperties = [];
224
225 /**
226 * Get additional return properties.
227 *
228 * @return array
229 */
230 public function getAdditionalRequestedReturnProperties() {
231 return $this->additionalRequestedReturnProperties;
232 }
233
234 /**
235 * Set additional return properties.
236 *
237 * @param array $value
238 */
239 public function setAdditionalRequestedReturnProperties($value) {
240 // fix for CRM-7066
241 if (!empty($value['group'])) {
242 unset($value['group']);
243 $value['groups'] = 1;
244 }
245 $this->additionalRequestedReturnProperties = $value;
246 }
247
ce12a9e0 248 /**
249 * Get return properties by relationship.
250 * @return array
251 */
252 public function getRelationshipReturnProperties() {
253 return $this->relationshipReturnProperties;
254 }
255
256 /**
257 * Export values for related contacts.
258 *
259 * @var array
260 */
261 protected $relatedContactValues = [];
262
c66a5741 263 /**
264 * @var array
265 */
266 protected $returnProperties = [];
267
28254dcb 268 /**
269 * @var array
270 */
271 protected $outputSpecification = [];
272
e034ee91 273 /**
274 * @var string
275 */
276 protected $componentTable = '';
277
278 /**
279 * @return string
280 */
281 public function getComponentTable() {
282 return $this->componentTable;
283 }
284
285 /**
286 * Set the component table (if any).
287 *
288 * @param string $componentTable
289 */
290 public function setComponentTable($componentTable) {
291 $this->componentTable = $componentTable;
292 }
293
294 /**
295 * Clause from component search.
296 *
297 * @var string
298 */
299 protected $componentClause = '';
300
301 /**
302 * @return string
303 */
304 public function getComponentClause() {
305 return $this->componentClause;
306 }
307
308 /**
309 * @param string $componentClause
310 */
311 public function setComponentClause($componentClause) {
312 $this->componentClause = $componentClause;
313 }
314
68989e71 315 /**
316 * Name of a temporary table created to hold the results.
317 *
318 * Current decision making on when to create a temp table is kinda bad so this might change
319 * a bit as it is reviewed but basically we need a temp table or similar to calculate merging
320 * addresses. Merging households is handled in php. We create a temp table even when we don't need them.
321 *
322 * @var string
323 */
324 protected $temporaryTable;
325
326 /**
327 * @return string
328 */
329 public function getTemporaryTable(): string {
330 return $this->temporaryTable;
331 }
332
333 /**
334 * @param string $temporaryTable
335 */
336 public function setTemporaryTable(string $temporaryTable) {
337 $this->temporaryTable = $temporaryTable;
338 }
339
a2b21ae3 340 protected $postalGreetingTemplate;
341
342 /**
343 * @return mixed
344 */
345 public function getPostalGreetingTemplate() {
346 return $this->postalGreetingTemplate;
347 }
348
349 /**
350 * @param mixed $postalGreetingTemplate
351 */
352 public function setPostalGreetingTemplate($postalGreetingTemplate) {
353 $this->postalGreetingTemplate = $postalGreetingTemplate;
354 }
355
356 /**
357 * @return mixed
358 */
359 public function getAddresseeGreetingTemplate() {
360 return $this->addresseeGreetingTemplate;
361 }
362
363 /**
364 * @param mixed $addresseeGreetingTemplate
365 */
366 public function setAddresseeGreetingTemplate($addresseeGreetingTemplate) {
367 $this->addresseeGreetingTemplate = $addresseeGreetingTemplate;
368 }
369
370 protected $addresseeGreetingTemplate;
371
71464b73 372 /**
373 * CRM_Export_BAO_ExportProcessor constructor.
374 *
375 * @param int $exportMode
041ecc95 376 * @param array|null $requestedFields
71464b73 377 * @param string $queryOperator
b7db6051 378 * @param bool $isMergeSameHousehold
6d52bfe5 379 * @param bool $isPostalableOnly
2761a916 380 * @param bool $isMergeSameAddress
1e9e062d 381 * @param array $formValues
382 * Values from the export options form on contact export. We currently support these keys
383 * - postal_greeting
384 * - postal_other
385 * - addresee_greeting
386 * - addressee_other
387 */
388 public function __construct($exportMode, $requestedFields, $queryOperator, $isMergeSameHousehold = FALSE, $isPostalableOnly = FALSE, $isMergeSameAddress = FALSE, $formValues = []) {
71464b73 389 $this->setExportMode($exportMode);
390 $this->setQueryMode();
391 $this->setQueryOperator($queryOperator);
d41ab886 392 $this->setRequestedFields($requestedFields);
944ed388 393 $this->setRelationshipTypes();
b7db6051 394 $this->setIsMergeSameHousehold($isMergeSameHousehold);
806c5e1e 395 $this->setIsPostalableOnly($isPostalableOnly);
2761a916 396 $this->setIsMergeSameAddress($isMergeSameAddress);
806c5e1e 397 $this->setReturnProperties($this->determineReturnProperties());
2761a916 398 $this->setAdditionalFieldsForSameAddressMerge();
51d84eca 399 $this->setAdditionalFieldsForPostalExport();
3611a532 400 $this->setHouseholdMergeReturnProperties();
1e9e062d 401 $this->setGreetingStringsForSameAddressMerge($formValues);
d41ab886 402 }
403
6d52bfe5 404 /**
405 * @return bool
406 */
407 public function isPostalableOnly() {
408 return $this->isPostalableOnly;
409 }
410
411 /**
412 * @param bool $isPostalableOnly
413 */
414 public function setIsPostalableOnly($isPostalableOnly) {
415 $this->isPostalableOnly = $isPostalableOnly;
416 }
7b966967 417
d41ab886 418 /**
419 * @return array|null
420 */
421 public function getRequestedFields() {
04f8f758 422 return empty($this->requestedFields) ? NULL : $this->requestedFields;
d41ab886 423 }
424
425 /**
426 * @param array|null $requestedFields
427 */
428 public function setRequestedFields($requestedFields) {
429 $this->requestedFields = $requestedFields;
71464b73 430 }
431
c66a5741 432 /**
433 * @return array
434 */
435 public function getReturnProperties() {
51d84eca 436 return array_merge($this->returnProperties, $this->getAdditionalRequestedReturnProperties(), $this->getAdditionalFieldsForSameAddressMerge(), $this->getAdditionalFieldsForPostalExport());
c66a5741 437 }
438
439 /**
440 * @param array $returnProperties
441 */
442 public function setReturnProperties($returnProperties) {
443 $this->returnProperties = $returnProperties;
444 }
445
944ed388 446 /**
447 * @return array
448 */
449 public function getRelationshipTypes() {
450 return $this->relationshipTypes;
451 }
452
453 /**
454 */
455 public function setRelationshipTypes() {
456 $this->relationshipTypes = CRM_Contact_BAO_Relationship::getContactRelationshipType(
457 NULL,
458 NULL,
459 NULL,
460 NULL,
461 TRUE,
462 'name',
463 FALSE
464 );
465 }
466
ce12a9e0 467 /**
468 * Set the value for a relationship type field.
469 *
470 * In this case we are building up an array of properties for a related contact.
471 *
472 * These may be used for direct exporting or for merge to household depending on the
473 * options selected.
474 *
475 * @param string $relationshipType
476 * @param int $contactID
477 * @param string $field
478 * @param string $value
479 */
480 public function setRelationshipValue($relationshipType, $contactID, $field, $value) {
481 $this->relatedContactValues[$relationshipType][$contactID][$field] = $value;
ebebd629 482 if ($field === 'id') {
483 $this->householdsToSkip[] = $value;
484 }
ce12a9e0 485 }
486
487 /**
488 * Get the value for a relationship type field.
489 *
490 * In this case we are building up an array of properties for a related contact.
491 *
492 * These may be used for direct exporting or for merge to household depending on the
493 * options selected.
494 *
495 * @param string $relationshipType
496 * @param int $contactID
497 * @param string $field
498 *
499 * @return string
500 */
501 public function getRelationshipValue($relationshipType, $contactID, $field) {
502 return isset($this->relatedContactValues[$relationshipType][$contactID][$field]) ? $this->relatedContactValues[$relationshipType][$contactID][$field] : '';
503 }
504
136f69a8 505 /**
506 * Get the id of the related household.
507 *
508 * @param int $contactID
509 * @param string $relationshipType
510 *
511 * @return int
512 */
513 public function getRelatedHouseholdID($contactID, $relationshipType) {
514 return $this->relatedContactValues[$relationshipType][$contactID]['id'];
515 }
516
517 /**
518 * Has the household already been exported.
519 *
520 * @param int $housholdContactID
521 *
522 * @return bool
523 */
524 public function isHouseholdExported($housholdContactID) {
525 return isset($this->exportedHouseholds[$housholdContactID]);
526
527 }
528
b7db6051 529 /**
530 * @return bool
531 */
532 public function isMergeSameHousehold() {
533 return $this->isMergeSameHousehold;
534 }
535
536 /**
537 * @param bool $isMergeSameHousehold
538 */
539 public function setIsMergeSameHousehold($isMergeSameHousehold) {
540 $this->isMergeSameHousehold = $isMergeSameHousehold;
541 }
542
543 /**
544 * Return relationship types for household merge.
545 *
546 * @return mixed
547 */
548 public function getHouseholdRelationshipTypes() {
549 if (!$this->isMergeSameHousehold()) {
550 return [];
551 }
552 return [
553 CRM_Utils_Array::key('Household Member of', $this->getRelationshipTypes()),
554 CRM_Utils_Array::key('Head of Household for', $this->getRelationshipTypes()),
555 ];
556 }
944ed388 557
558 /**
559 * @param $fieldName
560 * @return bool
561 */
562 public function isRelationshipTypeKey($fieldName) {
563 return array_key_exists($fieldName, $this->relationshipTypes);
564 }
565
b7db6051 566 /**
567 * @param $fieldName
568 * @return bool
569 */
570 public function isHouseholdMergeRelationshipTypeKey($fieldName) {
571 return in_array($fieldName, $this->getHouseholdRelationshipTypes());
572 }
573
71464b73 574 /**
575 * @return string
576 */
577 public function getQueryOperator() {
578 return $this->queryOperator;
579 }
580
581 /**
582 * @param string $queryOperator
583 */
584 public function setQueryOperator($queryOperator) {
585 $this->queryOperator = $queryOperator;
586 }
587
adabfa40 588 /**
589 * @return array
590 */
591 public function getQueryFields() {
592 return $this->queryFields;
593 }
594
595 /**
596 * @param array $queryFields
597 */
598 public function setQueryFields($queryFields) {
5ebd7d09 599 // legacy hacks - we add these to queryFields because this
600 // pseudometadata is currently required.
601 $queryFields['im_provider']['pseudoconstant']['var'] = 'imProviders';
602 $queryFields['country']['context'] = 'country';
603 $queryFields['world_region']['context'] = 'country';
604 $queryFields['state_province']['context'] = 'province';
adabfa40 605 $this->queryFields = $queryFields;
606 }
607
6003a964 608 /**
609 * @return int
610 */
611 public function getQueryMode() {
612 return $this->queryMode;
613 }
614
615 /**
616 * Set the query mode based on the export mode.
617 */
618 public function setQueryMode() {
619
620 switch ($this->getExportMode()) {
621 case CRM_Export_Form_Select::CONTRIBUTE_EXPORT:
622 $this->queryMode = CRM_Contact_BAO_Query::MODE_CONTRIBUTE;
623 break;
624
625 case CRM_Export_Form_Select::EVENT_EXPORT:
626 $this->queryMode = CRM_Contact_BAO_Query::MODE_EVENT;
627 break;
628
629 case CRM_Export_Form_Select::MEMBER_EXPORT:
630 $this->queryMode = CRM_Contact_BAO_Query::MODE_MEMBER;
631 break;
632
633 case CRM_Export_Form_Select::PLEDGE_EXPORT:
634 $this->queryMode = CRM_Contact_BAO_Query::MODE_PLEDGE;
635 break;
636
637 case CRM_Export_Form_Select::CASE_EXPORT:
638 $this->queryMode = CRM_Contact_BAO_Query::MODE_CASE;
639 break;
640
641 case CRM_Export_Form_Select::GRANT_EXPORT:
642 $this->queryMode = CRM_Contact_BAO_Query::MODE_GRANT;
643 break;
644
645 case CRM_Export_Form_Select::ACTIVITY_EXPORT:
646 $this->queryMode = CRM_Contact_BAO_Query::MODE_ACTIVITY;
647 break;
648
649 default:
650 $this->queryMode = CRM_Contact_BAO_Query::MODE_CONTACTS;
651 }
652 }
653
654 /**
655 * @return int
656 */
657 public function getExportMode() {
658 return $this->exportMode;
659 }
660
661 /**
662 * @param int $exportMode
663 */
664 public function setExportMode($exportMode) {
665 $this->exportMode = $exportMode;
666 }
667
29034a98 668 /**
669 * Get the name for the export file.
670 *
671 * @return string
672 */
673 public function getExportFileName() {
674 switch ($this->getExportMode()) {
675 case CRM_Export_Form_Select::CONTACT_EXPORT:
676 return ts('CiviCRM Contact Search');
677
678 case CRM_Export_Form_Select::CONTRIBUTE_EXPORT:
679 return ts('CiviCRM Contribution Search');
680
681 case CRM_Export_Form_Select::MEMBER_EXPORT:
682 return ts('CiviCRM Member Search');
683
684 case CRM_Export_Form_Select::EVENT_EXPORT:
685 return ts('CiviCRM Participant Search');
686
687 case CRM_Export_Form_Select::PLEDGE_EXPORT:
688 return ts('CiviCRM Pledge Search');
689
690 case CRM_Export_Form_Select::CASE_EXPORT:
691 return ts('CiviCRM Case Search');
692
693 case CRM_Export_Form_Select::GRANT_EXPORT:
694 return ts('CiviCRM Grant Search');
695
696 case CRM_Export_Form_Select::ACTIVITY_EXPORT:
697 return ts('CiviCRM Activity Search');
698
699 default:
700 // Legacy code suggests the value could be 'financial' - ie. something
701 // other than what should be accepted. However, I suspect that this line is
702 // never hit.
703 return ts('CiviCRM Search');
704 }
705 }
706
af17bedf 707 /**
708 * Get the label for the header row based on the field to output.
709 *
710 * @param string $field
711 *
712 * @return string
713 */
714 public function getHeaderForRow($field) {
715 if (substr($field, -11) == 'campaign_id') {
716 // @todo - set this correctly in the xml rather than here.
717 // This will require a generalised handling cleanup
718 return ts('Campaign ID');
719 }
720 if ($this->isMergeSameHousehold() && $field === 'id') {
721 return ts('Household ID');
722 }
723 elseif (isset($this->getQueryFields()[$field]['title'])) {
724 return $this->getQueryFields()[$field]['title'];
725 }
726 elseif ($this->isExportPaymentFields() && array_key_exists($field, $this->getcomponentPaymentFields())) {
727 return CRM_Utils_Array::value($field, $this->getcomponentPaymentFields());
728 }
729 else {
730 return $field;
731 }
732 }
733
adabfa40 734 /**
735 * @param $params
736 * @param $order
6df77635 737 *
adabfa40 738 * @return array
739 */
6df77635 740 public function runQuery($params, $order) {
741 $returnProperties = $this->getReturnProperties();
6d52bfe5 742 $params = array_merge($params, $this->getWhereParams());
efaa3367 743
adabfa40 744 $query = new CRM_Contact_BAO_Query($params, $returnProperties, NULL,
745 FALSE, FALSE, $this->getQueryMode(),
71464b73 746 FALSE, TRUE, TRUE, NULL, $this->getQueryOperator()
adabfa40 747 );
748
749 //sort by state
750 //CRM-15301
751 $query->_sort = $order;
752 list($select, $from, $where, $having) = $query->query();
753 $this->setQueryFields($query->_fields);
e034ee91 754 $whereClauses = ['trash_clause' => "contact_a.is_deleted != 1"];
9858dc0b 755 if ($this->getRequestedFields() && ($this->getComponentTable())) {
e034ee91 756 $from .= " INNER JOIN " . $this->getComponentTable() . " ctTable ON ctTable.contact_id = contact_a.id ";
757 }
758 elseif ($this->getComponentClause()) {
759 $whereClauses[] = $this->getComponentClause();
760 }
761
762 // CRM-13982 - check if is deleted
763 foreach ($params as $value) {
764 if ($value[0] == 'contact_is_deleted') {
765 unset($whereClauses['trash_clause']);
766 }
767 }
768
efaa3367 769 if ($this->isPostalableOnly) {
770 if (array_key_exists('street_address', $returnProperties)) {
771 $addressWhere = " civicrm_address.street_address <> ''";
772 if (array_key_exists('supplemental_address_1', $returnProperties)) {
773 // We need this to be an OR rather than AND on the street_address so, hack it in.
774 $addressOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
775 'address_options', TRUE, NULL, TRUE
776 );
777 if (!empty($addressOptions['supplemental_address_1'])) {
778 $addressWhere .= " OR civicrm_address.supplemental_address_1 <> ''";
779 }
780 }
781 $whereClauses['address'] = $addressWhere;
782 }
783 }
784
e034ee91 785 if (empty($where)) {
786 $where = "WHERE " . implode(' AND ', $whereClauses);
787 }
788 else {
789 $where .= " AND " . implode(' AND ', $whereClauses);
790 }
7628764a 791
792 $groupBy = $this->getGroupBy($query);
43767da2 793 $queryString = "$select $from $where $having $groupBy";
794 if ($order) {
795 // always add contact_a.id to the ORDER clause
796 // so the order is deterministic
797 //CRM-15301
798 if (strpos('contact_a.id', $order) === FALSE) {
799 $order .= ", contact_a.id";
800 }
801
802 list($field, $dir) = explode(' ', $order, 2);
803 $field = trim($field);
804 if (!empty($this->getReturnProperties()[$field])) {
805 //CRM-15301
806 $queryString .= " ORDER BY $order";
807 }
808 }
809 return [$query, $queryString];
adabfa40 810 }
811
28254dcb 812 /**
813 * Add a row to the specification for how to output data.
ae5d4caf 814 *
28254dcb 815 * @param string $key
28254dcb 816 * @param string $relationshipType
ae5d4caf 817 * @param string $locationType
818 * @param int $entityTypeID phone_type_id or provider_id for phone or im fields.
28254dcb 819 */
ae5d4caf 820 public function addOutputSpecification($key, $relationshipType = NULL, $locationType = NULL, $entityTypeID = NULL) {
5ebd7d09 821 $entityLabel = '';
ae5d4caf 822 if ($entityTypeID) {
823 if ($key === 'phone') {
5ebd7d09 824 $entityLabel = CRM_Core_PseudoConstant::getLabel('CRM_Core_BAO_Phone', 'phone_type_id', $entityTypeID);
ae5d4caf 825 }
826 if ($key === 'im') {
5ebd7d09 827 $entityLabel = CRM_Core_PseudoConstant::getLabel('CRM_Core_BAO_IM', 'provider_id', $entityTypeID);
ae5d4caf 828 }
829 }
ae5d4caf 830
5ebd7d09 831 // These oddly constructed keys are for legacy reasons. Altering them will affect test success
832 // but in time it may be good to rationalise them.
833 $label = $this->getOutputSpecificationLabel($key, $relationshipType, $locationType, $entityLabel);
834 $index = $this->getOutputSpecificationIndex($key, $relationshipType, $locationType, $entityLabel);
835 $fieldKey = $this->getOutputSpecificationFieldKey($key, $relationshipType, $locationType, $entityLabel);
836
837 $this->outputSpecification[$index]['header'] = $label;
838 $this->outputSpecification[$index]['sql_columns'] = $this->getSqlColumnDefinition($fieldKey, $key);
839
840 if ($relationshipType && $this->isHouseholdMergeRelationshipTypeKey($relationshipType)) {
841 $this->setColumnAsCalculationOnly($index);
842 }
843 $this->outputSpecification[$index]['metadata'] = $this->getMetaDataForField($key);
844 }
845
846 /**
847 * Get the metadata for the given field.
848 *
849 * @param $key
850 *
851 * @return array
852 */
853 public function getMetaDataForField($key) {
854 $mappings = ['contact_id' => 'id'];
855 if (isset($this->getQueryFields()[$key])) {
856 return $this->getQueryFields()[$key];
857 }
858 if (isset($mappings[$key])) {
859 return $this->getQueryFields()[$mappings[$key]];
860 }
861 return [];
2cd3d767 862 }
ae5d4caf 863
2cd3d767 864 /**
865 * @param $key
866 */
867 public function setSqlColumnDefn($key) {
5ebd7d09 868 $this->outputSpecification[$this->getMungedFieldName($key)]['sql_columns'] = $this->getSqlColumnDefinition($key, $this->getMungedFieldName($key));
de6ff509 869 }
870
871 /**
872 * Mark a column as only required for calculations.
873 *
874 * Do not include the row with headers.
875 *
876 * @param string $column
877 */
878 public function setColumnAsCalculationOnly($column) {
879 $this->outputSpecification[$column]['do_not_output_to_csv'] = TRUE;
28254dcb 880 }
881
882 /**
883 * @return array
884 */
885 public function getHeaderRows() {
886 $headerRows = [];
887 foreach ($this->outputSpecification as $key => $spec) {
de6ff509 888 if (empty($spec['do_not_output_to_csv'])) {
889 $headerRows[] = $spec['header'];
890 }
28254dcb 891 }
892 return $headerRows;
893 }
894
2cd3d767 895 /**
896 * @return array
897 */
898 public function getSQLColumns() {
899 $sqlColumns = [];
900 foreach ($this->outputSpecification as $key => $spec) {
901 if (empty($spec['do_not_output_to_sql'])) {
902 $sqlColumns[$key] = $spec['sql_columns'];
903 }
904 }
905 return $sqlColumns;
906 }
907
5ebd7d09 908 /**
909 * @return array
910 */
911 public function getMetadata() {
912 $metadata = [];
913 foreach ($this->outputSpecification as $key => $spec) {
914 $metadata[$key] = $spec['metadata'];
915 }
916 return $metadata;
917 }
2cd3d767 918
6e2de55d 919 /**
920 * Build the row for output.
921 *
922 * @param \CRM_Contact_BAO_Query $query
923 * @param CRM_Core_DAO $iterationDAO
924 * @param array $outputColumns
925 * @param $metadata
926 * @param $paymentDetails
927 * @param $addPaymentHeader
6e2de55d 928 *
136f69a8 929 * @return array|bool
6e2de55d 930 */
c58085f8 931 public function buildRow($query, $iterationDAO, $outputColumns, $metadata, $paymentDetails, $addPaymentHeader) {
932 $paymentTableId = $this->getPaymentTableID();
ebebd629 933 if ($this->isHouseholdToSkip($iterationDAO->contact_id)) {
934 return FALSE;
935 }
6e2de55d 936 $phoneTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Phone', 'phone_type_id');
937 $imProviders = CRM_Core_PseudoConstant::get('CRM_Core_DAO_IM', 'provider_id');
938
939 $row = [];
136f69a8 940 $householdMergeRelationshipType = $this->getHouseholdMergeTypeForRow($iterationDAO->contact_id);
941 if ($householdMergeRelationshipType) {
942 $householdID = $this->getRelatedHouseholdID($iterationDAO->contact_id, $householdMergeRelationshipType);
943 if ($this->isHouseholdExported($householdID)) {
944 return FALSE;
945 }
946 foreach (array_keys($outputColumns) as $column) {
947 $row[$column] = $this->getRelationshipValue($householdMergeRelationshipType, $iterationDAO->contact_id, $column);
948 }
949 $this->markHouseholdExported($householdID);
950 return $row;
951 }
952
6e2de55d 953 $query->convertToPseudoNames($iterationDAO);
954
955 //first loop through output columns so that we return what is required, and in same order.
956 foreach ($outputColumns as $field => $value) {
6e2de55d 957 // add im_provider to $dao object
958 if ($field == 'im_provider' && property_exists($iterationDAO, 'provider_id')) {
959 $iterationDAO->im_provider = $iterationDAO->provider_id;
960 }
961
962 //build row values (data)
963 $fieldValue = NULL;
964 if (property_exists($iterationDAO, $field)) {
965 $fieldValue = $iterationDAO->$field;
966 // to get phone type from phone type id
967 if ($field == 'phone_type_id' && isset($phoneTypes[$fieldValue])) {
968 $fieldValue = $phoneTypes[$fieldValue];
969 }
970 elseif ($field == 'provider_id' || $field == 'im_provider') {
971 $fieldValue = CRM_Utils_Array::value($fieldValue, $imProviders);
972 }
973 elseif (strstr($field, 'master_id')) {
ffd511ee 974 // @todo - why not just $field === 'master_id' - what else would it be?
975 $masterAddressId = $iterationDAO->$field ?? NULL;
6e2de55d 976 // get display name of contact that address is shared.
977 $fieldValue = CRM_Contact_BAO_Contact::getMasterDisplayName($masterAddressId);
978 }
979 }
980
981 if ($this->isRelationshipTypeKey($field)) {
136f69a8 982 $this->buildRelationshipFieldsForRow($row, $iterationDAO->contact_id, $value, $field);
6e2de55d 983 }
984 else {
985 $row[$field] = $this->getTransformedFieldValue($field, $iterationDAO, $fieldValue, $metadata, $paymentDetails);
986 }
987 }
988
989 // If specific payment fields have been selected for export, payment
990 // data will already be in $row. Otherwise, add payment related
991 // information, if appropriate.
992 if ($addPaymentHeader) {
993 if (!$this->isExportSpecifiedPaymentFields()) {
994 $nullContributionDetails = array_fill_keys(array_keys($this->getPaymentHeaders()), NULL);
995 if ($this->isExportPaymentFields()) {
996 $paymentData = CRM_Utils_Array::value($row[$paymentTableId], $paymentDetails);
997 if (!is_array($paymentData) || empty($paymentData)) {
998 $paymentData = $nullContributionDetails;
999 }
1000 $row = array_merge($row, $paymentData);
1001 }
1002 elseif (!empty($paymentDetails)) {
1003 $row = array_merge($row, $nullContributionDetails);
1004 }
1005 }
1006 }
1007 //remove organization name for individuals if it is set for current employer
1008 if (!empty($row['contact_type']) &&
1009 $row['contact_type'] == 'Individual' && array_key_exists('organization_name', $row)
1010 ) {
1011 $row['organization_name'] = '';
1012 }
1013 return $row;
1014 }
1015
136f69a8 1016 /**
1017 * If this row has a household whose details we should use get the relationship type key.
1018 *
1019 * @param $contactID
1020 *
1021 * @return bool
1022 */
1023 public function getHouseholdMergeTypeForRow($contactID) {
1024 if (!$this->isMergeSameHousehold()) {
1025 return FALSE;
1026 }
1027 foreach ($this->getHouseholdRelationshipTypes() as $relationshipType) {
1028 if (isset($this->relatedContactValues[$relationshipType][$contactID])) {
1029 return $relationshipType;
1030 }
1031 }
1032 }
1033
1034 /**
1035 * Mark the given household as already exported.
1036 *
1037 * @param $householdID
1038 */
1039 public function markHouseholdExported($householdID) {
1040 $this->exportedHouseholds[$householdID] = $householdID;
1041 }
1042
8bd67f47 1043 /**
1044 * @param $field
1045 * @param $iterationDAO
1046 * @param $fieldValue
1047 * @param $metadata
1048 * @param $paymentDetails
1049 *
1050 * @return string
1051 */
1052 public function getTransformedFieldValue($field, $iterationDAO, $fieldValue, $metadata, $paymentDetails) {
1053
1054 $i18n = CRM_Core_I18n::singleton();
1055 if ($field == 'id') {
1056 return $iterationDAO->contact_id;
1057 // special case for calculated field
1058 }
1059 elseif ($field == 'source_contact_id') {
1060 return $iterationDAO->contact_id;
1061 }
1062 elseif ($field == 'pledge_balance_amount') {
1063 return $iterationDAO->pledge_amount - $iterationDAO->pledge_total_paid;
1064 // special case for calculated field
1065 }
1066 elseif ($field == 'pledge_next_pay_amount') {
1067 return $iterationDAO->pledge_next_pay_amount + $iterationDAO->pledge_outstanding_amount;
1068 }
1069 elseif (isset($fieldValue) &&
1070 $fieldValue != ''
1071 ) {
1072 //check for custom data
1073 if ($cfID = CRM_Core_BAO_CustomField::getKeyID($field)) {
1074 return CRM_Core_BAO_CustomField::displayValue($fieldValue, $cfID);
1075 }
1076
be2fb01f 1077 elseif (in_array($field, [
8bd67f47 1078 'email_greeting',
1079 'postal_greeting',
1080 'addressee',
be2fb01f 1081 ])) {
8bd67f47 1082 //special case for greeting replacement
1083 $fldValue = "{$field}_display";
1084 return $iterationDAO->$fldValue;
1085 }
1086 else {
1087 //normal fields with a touch of CRM-3157
1088 switch ($field) {
1089 case 'country':
1090 case 'world_region':
be2fb01f 1091 return $i18n->crm_translate($fieldValue, ['context' => 'country']);
8bd67f47 1092
1093 case 'state_province':
be2fb01f 1094 return $i18n->crm_translate($fieldValue, ['context' => 'province']);
8bd67f47 1095
1096 case 'gender':
1097 case 'preferred_communication_method':
1098 case 'preferred_mail_format':
1099 case 'communication_style':
1100 return $i18n->crm_translate($fieldValue);
1101
1102 default:
1103 if (isset($metadata[$field])) {
1104 // No I don't know why we do it this way & whether we could
1105 // make better use of pseudoConstants.
1106 if (!empty($metadata[$field]['context'])) {
1107 return $i18n->crm_translate($fieldValue, $metadata[$field]);
1108 }
1109 if (!empty($metadata[$field]['pseudoconstant'])) {
001a515b 1110 if (!empty($metadata[$field]['bao'])) {
1111 return CRM_Core_PseudoConstant::getLabel($metadata[$field]['bao'], $metadata[$field]['name'], $fieldValue);
1112 }
8bd67f47 1113 // This is not our normal syntax for pseudoconstants but I am a bit loath to
1114 // call an external function until sure it is not increasing php processing given this
1115 // may be iterated 100,000 times & we already have the $imProvider var loaded.
1116 // That can be next refactor...
1117 // Yes - definitely feeling hatred for this bit of code - I know you will beat me up over it's awfulness
1118 // but I have to reach a stable point....
1119 $varName = $metadata[$field]['pseudoconstant']['var'];
1120 if ($varName === 'imProviders') {
1121 return CRM_Core_PseudoConstant::getLabel('CRM_Core_DAO_IM', 'provider_id', $fieldValue);
1122 }
1123 if ($varName === 'phoneTypes') {
1124 return CRM_Core_PseudoConstant::getLabel('CRM_Core_DAO_Phone', 'phone_type_id', $fieldValue);
1125 }
1126 }
1127
1128 }
1129 return $fieldValue;
1130 }
1131 }
1132 }
1133 elseif ($this->isExportSpecifiedPaymentFields() && array_key_exists($field, $this->getcomponentPaymentFields())) {
1134 $paymentTableId = $this->getPaymentTableID();
1135 $paymentData = CRM_Utils_Array::value($iterationDAO->$paymentTableId, $paymentDetails);
be2fb01f 1136 $payFieldMapper = [
8bd67f47 1137 'componentPaymentField_total_amount' => 'total_amount',
1138 'componentPaymentField_contribution_status' => 'contribution_status',
1139 'componentPaymentField_payment_instrument' => 'pay_instru',
1140 'componentPaymentField_transaction_id' => 'trxn_id',
1141 'componentPaymentField_received_date' => 'receive_date',
be2fb01f 1142 ];
8bd67f47 1143 return CRM_Utils_Array::value($payFieldMapper[$field], $paymentData, '');
1144 }
1145 else {
1146 // if field is empty or null
1147 return '';
1148 }
1149 }
1150
ce14544c 1151 /**
1152 * Get array of fields to return, over & above those defined in the main contact exportable fields.
1153 *
1154 * These include export mode specific fields & some fields apparently required as 'exportableFields'
1155 * but not returned by the function of the same name.
1156 *
1157 * @return array
1158 * Array of fields to return in the format ['field_name' => 1,...]
1159 */
1160 public function getAdditionalReturnProperties() {
ce14544c 1161 if ($this->getQueryMode() === CRM_Contact_BAO_Query::MODE_CONTACTS) {
1162 $componentSpecificFields = [];
1163 }
1164 else {
1165 $componentSpecificFields = CRM_Contact_BAO_Query::defaultReturnProperties($this->getQueryMode());
1166 }
1167 if ($this->getQueryMode() === CRM_Contact_BAO_Query::MODE_PLEDGE) {
1168 $componentSpecificFields = array_merge($componentSpecificFields, CRM_Pledge_BAO_Query::extraReturnProperties($this->getQueryMode()));
d28b6cf2 1169 unset($componentSpecificFields['contribution_status_id']);
1170 unset($componentSpecificFields['pledge_status_id']);
1171 unset($componentSpecificFields['pledge_payment_status_id']);
ce14544c 1172 }
1173 if ($this->getQueryMode() === CRM_Contact_BAO_Query::MODE_CASE) {
1174 $componentSpecificFields = array_merge($componentSpecificFields, CRM_Case_BAO_Query::extraReturnProperties($this->getQueryMode()));
1175 }
1176 if ($this->getQueryMode() === CRM_Contact_BAO_Query::MODE_CONTRIBUTE) {
1177 $componentSpecificFields = array_merge($componentSpecificFields, CRM_Contribute_BAO_Query::softCreditReturnProperties(TRUE));
d28b6cf2 1178 unset($componentSpecificFields['contribution_status_id']);
ce14544c 1179 }
7626754f 1180 return $componentSpecificFields;
ce14544c 1181 }
1182
d41ab886 1183 /**
1184 * Should payment fields be appended to the export.
1185 *
1186 * (This is pretty hacky so hopefully this function won't last long - notice
1187 * how obviously it should be part of the above function!).
1188 */
1189 public function isExportPaymentFields() {
1190 if ($this->getRequestedFields() === NULL
f065c170 1191 && in_array($this->getQueryMode(), [
d41ab886 1192 CRM_Contact_BAO_Query::MODE_EVENT,
1193 CRM_Contact_BAO_Query::MODE_MEMBER,
1194 CRM_Contact_BAO_Query::MODE_PLEDGE,
1195 ])) {
1196 return TRUE;
1197 }
c66a5741 1198 elseif ($this->isExportSpecifiedPaymentFields()) {
1199 return TRUE;
1200 }
d41ab886 1201 return FALSE;
1202 }
1203
c66a5741 1204 /**
1205 * Has specific payment fields been requested (as opposed to via all fields).
1206 *
1207 * If specific fields have been requested then they get added at various points.
1208 *
1209 * @return bool
1210 */
1211 public function isExportSpecifiedPaymentFields() {
1212 if ($this->getRequestedFields() !== NULL && $this->hasRequestedComponentPaymentFields()) {
1213 return TRUE;
1214 }
1215 }
1216
d41ab886 1217 /**
1218 * Get the name of the id field in the table that connects contributions to the export entity.
1219 */
1220 public function getPaymentTableID() {
1221 if ($this->getRequestedFields() === NULL) {
1222 $mapping = [
1223 CRM_Contact_BAO_Query::MODE_EVENT => 'participant_id',
1224 CRM_Contact_BAO_Query::MODE_MEMBER => 'membership_id',
1225 CRM_Contact_BAO_Query::MODE_PLEDGE => 'pledge_payment_id',
1226 ];
1227 return isset($mapping[$this->getQueryMode()]) ? $mapping[$this->getQueryMode()] : '';
1228 }
c66a5741 1229 elseif ($this->hasRequestedComponentPaymentFields()) {
1230 return 'participant_id';
1231 }
d41ab886 1232 return FALSE;
1233 }
1234
c66a5741 1235 /**
1236 * Have component payment fields been requested.
1237 *
1238 * @return bool
1239 */
1240 protected function hasRequestedComponentPaymentFields() {
1241 if ($this->getQueryMode() === CRM_Contact_BAO_Query::MODE_EVENT) {
1242 $participantPaymentFields = array_intersect_key($this->getComponentPaymentFields(), $this->getReturnProperties());
1243 if (!empty($participantPaymentFields)) {
1244 return TRUE;
1245 }
1246 }
d41ab886 1247 return FALSE;
1248 }
1249
c66a5741 1250 /**
1251 * Get fields that indicate payment fields have been requested for a component.
1252 *
0e32ed68 1253 * Ideally this should be protected but making it temporarily public helps refactoring..
1254 *
c66a5741 1255 * @return array
1256 */
0e32ed68 1257 public function getComponentPaymentFields() {
c66a5741 1258 return [
1259 'componentPaymentField_total_amount' => ts('Total Amount'),
1260 'componentPaymentField_contribution_status' => ts('Contribution Status'),
1261 'componentPaymentField_received_date' => ts('Date Received'),
1262 'componentPaymentField_payment_instrument' => ts('Payment Method'),
1263 'componentPaymentField_transaction_id' => ts('Transaction ID'),
1264 ];
1265 }
1266
05ad310f 1267 /**
1268 * Get headers for payment fields.
1269 *
1270 * Returns an array of contribution fields when the entity supports payment fields and specific fields
1271 * are not specified. This is a transitional function for refactoring legacy code.
1272 */
1273 public function getPaymentHeaders() {
1274 if ($this->isExportPaymentFields() && !$this->isExportSpecifiedPaymentFields()) {
1275 return $this->getcomponentPaymentFields();
1276 }
1277 return [];
1278 }
1279
d41ab886 1280 /**
1281 * Get the default properties when not specified.
1282 *
1283 * In the UI this appears as 'Primary fields only' but in practice it's
1284 * most of the kitchen sink and the hallway closet thrown in.
1285 *
1286 * Since CRM-952 custom fields are excluded, but no other form of mercy is shown.
1287 *
1288 * @return array
1289 */
1290 public function getDefaultReturnProperties() {
1291 $returnProperties = [];
1292 $fields = CRM_Contact_BAO_Contact::exportableFields('All', TRUE, TRUE);
704e3e9a 1293 $skippedFields = ($this->getQueryMode() === CRM_Contact_BAO_Query::MODE_CONTACTS) ? [] : [
1294 'groups',
1295 'tags',
7b966967 1296 'notes',
704e3e9a 1297 ];
d41ab886 1298
1299 foreach ($fields as $key => $var) {
1300 if ($key && (substr($key, 0, 6) != 'custom') && !in_array($key, $skippedFields)) {
1301 $returnProperties[$key] = 1;
1302 }
1303 }
1304 $returnProperties = array_merge($returnProperties, $this->getAdditionalReturnProperties());
1305 return $returnProperties;
1306 }
1307
704e3e9a 1308 /**
1309 * Add the field to relationship return properties & return it.
1310 *
1311 * This function is doing both setting & getting which is yuck but it is an interim
1312 * refactor.
1313 *
1314 * @param array $value
1315 * @param string $relationshipKey
1316 *
1317 * @return array
1318 */
1319 public function setRelationshipReturnProperties($value, $relationshipKey) {
04f8f758 1320 $relationField = $value['name'];
1321 $relIMProviderId = NULL;
1322 $relLocTypeId = CRM_Utils_Array::value('location_type_id', $value);
1323 $locationName = CRM_Core_PseudoConstant::getName('CRM_Core_BAO_Address', 'location_type_id', $relLocTypeId);
1324 $relPhoneTypeId = CRM_Utils_Array::value('phone_type_id', $value, ($locationName ? 'Primary' : NULL));
1325 $relIMProviderId = CRM_Utils_Array::value('im_provider_id', $value, ($locationName ? 'Primary' : NULL));
1326 if (in_array($relationField, $this->getValidLocationFields()) && $locationName) {
1327 if ($relationField === 'phone') {
a16a432a 1328 $this->relationshipReturnProperties[$relationshipKey]['location'][$locationName]['phone-' . $relPhoneTypeId] = 1;
704e3e9a 1329 }
04f8f758 1330 elseif ($relationField === 'im') {
a16a432a 1331 $this->relationshipReturnProperties[$relationshipKey]['location'][$locationName]['im-' . $relIMProviderId] = 1;
704e3e9a 1332 }
1333 else {
a16a432a 1334 $this->relationshipReturnProperties[$relationshipKey]['location'][$locationName][$relationField] = 1;
704e3e9a 1335 }
1336 }
1337 else {
1338 $this->relationshipReturnProperties[$relationshipKey][$relationField] = 1;
1339 }
1340 return $this->relationshipReturnProperties[$relationshipKey];
1341 }
1342
ce12a9e0 1343 /**
1344 * Add the main return properties to the household merge properties if needed for merging.
1345 *
1346 * If we are using household merge we need to add these to the relationship properties to
1347 * be retrieved.
ce12a9e0 1348 */
6df77635 1349 public function setHouseholdMergeReturnProperties() {
3611a532 1350 if ($this->isMergeSameHousehold()) {
1351 $returnProperties = $this->getReturnProperties();
1352 $returnProperties = array_diff_key($returnProperties, array_fill_keys(['location_type', 'im_provider'], 1));
1353 foreach ($this->getHouseholdRelationshipTypes() as $householdRelationshipType) {
1354 $this->relationshipReturnProperties[$householdRelationshipType] = $returnProperties;
1355 }
ce12a9e0 1356 }
1357 }
1358
704e3e9a 1359 /**
1360 * Get the default location fields to request.
1361 *
1362 * @return array
1363 */
1364 public function getValidLocationFields() {
1365 return [
1366 'street_address',
1367 'supplemental_address_1',
1368 'supplemental_address_2',
1369 'supplemental_address_3',
1370 'city',
1371 'postal_code',
1372 'postal_code_suffix',
1373 'geo_code_1',
1374 'geo_code_2',
1375 'state_province',
1376 'country',
1377 'phone',
1378 'email',
1379 'im',
1380 ];
1381 }
1382
aa3a113b 1383 /**
c8adad81 1384 * Get the sql column definition for the given field.
1385 *
5ebd7d09 1386 * @param string $fieldName
1387 * @param string $columnName
aa3a113b 1388 *
1389 * @return mixed
1390 */
5ebd7d09 1391 public function getSqlColumnDefinition($fieldName, $columnName) {
aa3a113b 1392
1393 // early exit for master_id, CRM-12100
1394 // in the DB it is an ID, but in the export, we retrive the display_name of the master record
1395 // also for current_employer, CRM-16939
5ebd7d09 1396 if ($columnName == 'master_id' || $columnName == 'current_employer') {
aa3a113b 1397 return "$fieldName varchar(128)";
1398 }
1399
aa3a113b 1400 $queryFields = $this->getQueryFields();
714ab070 1401 // @todo remove the enotice avoidance here, ensure all columns are declared.
1402 // tests will fail on the enotices until they all are & then all the 'else'
1403 // below can go.
1404 $fieldSpec = $queryFields[$columnName] ?? [];
1405
aa3a113b 1406 // set the sql columns
714ab070 1407 if (isset($fieldSpec['type'])) {
1408 switch ($fieldSpec['type']) {
aa3a113b 1409 case CRM_Utils_Type::T_INT:
1410 case CRM_Utils_Type::T_BOOLEAN:
d989f2a4 1411 if (in_array(CRM_Utils_Array::value('data_type', $fieldSpec), ['Country', 'StateProvince', 'ContactReference'])) {
1412 return "$fieldName varchar(255)";
1413 }
714ab070 1414 return "$fieldName varchar(16)";
aa3a113b 1415
1416 case CRM_Utils_Type::T_STRING:
5ebd7d09 1417 if (isset($queryFields[$columnName]['maxlength'])) {
1418 return "$fieldName varchar({$queryFields[$columnName]['maxlength']})";
aa3a113b 1419 }
1420 else {
1421 return "$fieldName varchar(255)";
1422 }
1423
1424 case CRM_Utils_Type::T_TEXT:
1425 case CRM_Utils_Type::T_LONGTEXT:
1426 case CRM_Utils_Type::T_BLOB:
1427 case CRM_Utils_Type::T_MEDIUMBLOB:
1428 return "$fieldName longtext";
1429
1430 case CRM_Utils_Type::T_FLOAT:
1431 case CRM_Utils_Type::T_ENUM:
1432 case CRM_Utils_Type::T_DATE:
1433 case CRM_Utils_Type::T_TIME:
1434 case CRM_Utils_Type::T_TIMESTAMP:
1435 case CRM_Utils_Type::T_MONEY:
1436 case CRM_Utils_Type::T_EMAIL:
1437 case CRM_Utils_Type::T_URL:
1438 case CRM_Utils_Type::T_CCNUM:
1439 default:
1440 return "$fieldName varchar(32)";
1441 }
1442 }
1443 else {
1444 if (substr($fieldName, -3, 3) == '_id') {
1445 return "$fieldName varchar(255)";
1446 }
1447 elseif (substr($fieldName, -5, 5) == '_note') {
1448 return "$fieldName text";
1449 }
1450 else {
1451 $changeFields = [
1452 'groups',
1453 'tags',
1454 'notes',
1455 ];
1456
1457 if (in_array($fieldName, $changeFields)) {
1458 return "$fieldName text";
1459 }
1460 else {
1461 // set the sql columns for custom data
5ebd7d09 1462 if (isset($queryFields[$columnName]['data_type'])) {
aa3a113b 1463
5ebd7d09 1464 switch ($queryFields[$columnName]['data_type']) {
aa3a113b 1465 case 'String':
1466 // May be option labels, which could be up to 512 characters
5ebd7d09 1467 $length = max(512, CRM_Utils_Array::value('text_length', $queryFields[$columnName]));
aa3a113b 1468 return "$fieldName varchar($length)";
1469
aa3a113b 1470 case 'Link':
1471 return "$fieldName varchar(255)";
1472
1473 case 'Memo':
1474 return "$fieldName text";
1475
1476 default:
1477 return "$fieldName varchar(255)";
1478 }
1479 }
1480 else {
1481 return "$fieldName text";
1482 }
1483 }
1484 }
1485 }
1486 }
1487
c8adad81 1488 /**
1489 * Get the munged field name.
1490 *
1491 * @param string $field
1492 * @return string
1493 */
1494 public function getMungedFieldName($field) {
1495 $fieldName = CRM_Utils_String::munge(strtolower($field), '_', 64);
1496 if ($fieldName == 'id') {
1497 $fieldName = 'civicrm_primary_id';
1498 }
1499 return $fieldName;
1500 }
1501
5ebd7d09 1502 /**
1503 * In order to respect the history of this class we need to index kinda illogically.
1504 *
1505 * On the bright side - this stuff is tested within a nano-byte of it's life.
1506 *
1507 * e.g '2-a-b_Home-City'
1508 *
1509 * @param string $key
1510 * @param string $relationshipType
1511 * @param string $locationType
1512 * @param $entityLabel
1513 *
1514 * @return string
1515 */
1516 protected function getOutputSpecificationIndex($key, $relationshipType, $locationType, $entityLabel) {
001a515b 1517 if ($entityLabel || $key === 'im') {
5ebd7d09 1518 // Just cos that's the history...
1519 if ($key !== 'master_id') {
1520 $key = $this->getHeaderForRow($key);
1521 }
1522 }
1523 if (!$relationshipType || $key !== 'id') {
1524 $key = $this->getMungedFieldName($key);
1525 }
1526 return $this->getMungedFieldName(
1527 ($relationshipType ? ($relationshipType . '_') : '')
1528 . ($locationType ? ($locationType . '_') : '')
1529 . $key
1530 . ($entityLabel ? ('_' . $entityLabel) : '')
1531 );
1532 }
1533
1534 /**
1535 * Get the compiled label for the column.
1536 *
1537 * e.g 'Gender', 'Employee Of-Home-city'
1538 *
1539 * @param string $key
1540 * @param string $relationshipType
1541 * @param string $locationType
1542 * @param string $entityLabel
1543 *
1544 * @return string
1545 */
1546 protected function getOutputSpecificationLabel($key, $relationshipType, $locationType, $entityLabel) {
1547 return ($relationshipType ? $this->getRelationshipTypes()[$relationshipType] . '-' : '')
1548 . ($locationType ? $locationType . '-' : '')
1549 . $this->getHeaderForRow($key)
1550 . ($entityLabel ? '-' . $entityLabel : '');
1551 }
1552
1553 /**
1554 * Get the mysql field name key.
1555 *
1556 * This key is locked in by tests but the reasons for the specific conventions -
1557 * ie. headings are used for keying fields in some cases, are likely
1558 * accidental rather than deliberate.
1559 *
1560 * This key is used for the output sql array.
1561 *
1562 * @param string $key
1563 * @param $relationshipType
1564 * @param $locationType
1565 * @param $entityLabel
1566 *
1567 * @return string
1568 */
1569 protected function getOutputSpecificationFieldKey($key, $relationshipType, $locationType, $entityLabel) {
001a515b 1570 if ($entityLabel || $key === 'im') {
5ebd7d09 1571 if ($key !== 'state_province' && $key !== 'id') {
001a515b 1572 // @todo - test removing this - indexing by $key should be fine...
5ebd7d09 1573 $key = $this->getHeaderForRow($key);
1574 }
1575 }
1576 if (!$relationshipType || $key !== 'id') {
1577 $key = $this->getMungedFieldName($key);
1578 }
1579 $fieldKey = $this->getMungedFieldName(
1580 ($relationshipType ? ($relationshipType . '_') : '')
1581 . ($locationType ? ($locationType . '_') : '')
1582 . $key
1583 . ($entityLabel ? ('_' . $entityLabel) : '')
1584 );
1585 return $fieldKey;
1586 }
1587
6d52bfe5 1588 /**
1589 * Get params for the where criteria.
1590 *
1591 * @return mixed
1592 */
1593 public function getWhereParams() {
1594 if (!$this->isPostalableOnly()) {
1595 return [];
1596 }
1597 $params['is_deceased'] = ['is_deceased', '=', 0, CRM_Contact_BAO_Query::MODE_CONTACTS];
1598 $params['do_not_mail'] = ['do_not_mail', '=', 0, CRM_Contact_BAO_Query::MODE_CONTACTS];
1599 return $params;
1600 }
1601
136f69a8 1602 /**
1603 * @param $row
1604 * @param $contactID
1605 * @param $value
1606 * @param $field
1607 */
1608 protected function buildRelationshipFieldsForRow(&$row, $contactID, $value, $field) {
1609 foreach (array_keys($value) as $property) {
1610 if ($property === 'location') {
1611 // @todo just undo all this nasty location wrangling!
1612 foreach ($value['location'] as $locationKey => $locationFields) {
1613 foreach (array_keys($locationFields) as $locationField) {
1614 $fieldKey = str_replace(' ', '_', $locationKey . '-' . $locationField);
1615 $row[$field . '_' . $fieldKey] = $this->getRelationshipValue($field, $contactID, $fieldKey);
1616 }
1617 }
1618 }
1619 else {
1620 $row[$field . '_' . $property] = $this->getRelationshipValue($field, $contactID, $property);
1621 }
1622 }
1623 }
1624
ebebd629 1625 /**
1626 * Is this contact a household that is already set to be exported by virtue of it's household members.
1627 *
1628 * @param int $contactID
1629 *
1630 * @return bool
1631 */
1632 protected function isHouseholdToSkip($contactID) {
1633 return in_array($contactID, $this->householdsToSkip);
1634 }
1635
44fc53ab 1636 /**
1637 * Get the various arrays that we use to structure our output.
1638 *
1639 * The extraction of these has been moved to a separate function for clarity and so that
1640 * tests can be added - in particular on the $outputHeaders array.
1641 *
1642 * However it still feels a bit like something that I'm too polite to write down and this should be seen
1643 * as a step on the refactoring path rather than how it should be.
1644 *
1645 * @return array
1646 * - outputColumns Array of columns to be exported. The values don't matter but the key must match the
1647 * alias for the field generated by BAO_Query object.
1648 * - headerRows Array of the column header strings to put in the csv header - non-associative.
1649 * - sqlColumns Array of column names for the temp table. Not too sure why outputColumns can't be used here.
1650 * - metadata Array of fields with specific parameters to pass to the translate function or another hacky nasty solution
1651 * I'm too embarassed to discuss here.
1652 * The keys need
1653 * - to match the outputColumns keys (yes, the fact we ignore the output columns values & then pass another array with values
1654 * we could use does suggest further refactors. However, you future improver, do remember that every check you do
1655 * in the main DAO loop is done once per row & that coule be 100,000 times.)
1656 * Finally a pop quiz: We need the translate context because we use a function other than ts() - is this because
1657 * - a) the function used is more efficient or
1658 * - b) this code is old & outdated. Submit your answers to circular bin or better
1659 * yet find a way to comment them for posterity.
1660 */
1661 public function getExportStructureArrays() {
1662 $outputColumns = $metadata = [];
1663 $queryFields = $this->getQueryFields();
1664 foreach ($this->getReturnProperties() as $key => $value) {
1665 if (($key != 'location' || !is_array($value)) && !$this->isRelationshipTypeKey($key)) {
1666 $outputColumns[$key] = $value;
1667 $this->addOutputSpecification($key);
1668 }
1669 elseif ($this->isRelationshipTypeKey($key)) {
1670 $outputColumns[$key] = $value;
1671 foreach ($value as $relationField => $relationValue) {
1672 // below block is same as primary block (duplicate)
1673 if (isset($queryFields[$relationField]['title'])) {
1674 $this->addOutputSpecification($relationField, $key);
1675 }
1676 elseif (is_array($relationValue) && $relationField == 'location') {
1677 // fix header for location type case
1678 foreach ($relationValue as $ltype => $val) {
1679 foreach (array_keys($val) as $fld) {
1680 $type = explode('-', $fld);
1681 $this->addOutputSpecification($type[0], $key, $ltype, CRM_Utils_Array::value(1, $type));
1682 }
1683 }
1684 }
1685 }
1686 }
1687 else {
1688 foreach ($value as $locationType => $locationFields) {
1689 foreach (array_keys($locationFields) as $locationFieldName) {
1690 $type = explode('-', $locationFieldName);
1691
1692 $actualDBFieldName = $type[0];
1693 $daoFieldName = CRM_Utils_String::munge($locationType) . '-' . $actualDBFieldName;
1694
1695 if (!empty($type[1])) {
1696 $daoFieldName .= "-" . $type[1];
1697 }
1698 $this->addOutputSpecification($actualDBFieldName, NULL, $locationType, CRM_Utils_Array::value(1, $type));
1699 $metadata[$daoFieldName] = $this->getMetaDataForField($actualDBFieldName);
1700 $outputColumns[$daoFieldName] = TRUE;
1701 }
1702 }
1703 }
1704 }
1705 return [$outputColumns, $metadata];
1706 }
1707
ccc3ac8a 1708 /**
1709 * Get default return property for export based on mode
1710 *
1711 * @return string
1712 * Default Return property
1713 */
1714 public function defaultReturnProperty() {
1715 // hack to add default return property based on export mode
1716 $property = NULL;
1717 $exportMode = $this->getExportMode();
1718 if ($exportMode == CRM_Export_Form_Select::CONTRIBUTE_EXPORT) {
1719 $property = 'contribution_id';
1720 }
1721 elseif ($exportMode == CRM_Export_Form_Select::EVENT_EXPORT) {
1722 $property = 'participant_id';
1723 }
1724 elseif ($exportMode == CRM_Export_Form_Select::MEMBER_EXPORT) {
1725 $property = 'membership_id';
1726 }
1727 elseif ($exportMode == CRM_Export_Form_Select::PLEDGE_EXPORT) {
1728 $property = 'pledge_id';
1729 }
1730 elseif ($exportMode == CRM_Export_Form_Select::CASE_EXPORT) {
1731 $property = 'case_id';
1732 }
1733 elseif ($exportMode == CRM_Export_Form_Select::GRANT_EXPORT) {
1734 $property = 'grant_id';
1735 }
1736 elseif ($exportMode == CRM_Export_Form_Select::ACTIVITY_EXPORT) {
1737 $property = 'activity_id';
1738 }
1739 return $property;
1740 }
1741
806c5e1e 1742 /**
1743 * Determine the required return properties from the input parameters.
1744 *
1745 * @return array
1746 */
1747 public function determineReturnProperties() {
1748 if ($this->getRequestedFields()) {
1749 $returnProperties = [];
1750 foreach ($this->getRequestedFields() as $key => $value) {
04f8f758 1751 $fieldName = $value['name'];
7d0e773c 1752 $locationName = !empty($value['location_type_id']) ? CRM_Core_PseudoConstant::getName('CRM_Core_BAO_Address', 'location_type_id', $value['location_type_id']) : NULL;
04f8f758 1753 $relationshipTypeKey = !empty($value['relationship_type_id']) ? $value['relationship_type_id'] . '_' . $value['relationship_direction'] : NULL;
1754 if (!$fieldName || $this->isHouseholdMergeRelationshipTypeKey($relationshipTypeKey)) {
806c5e1e 1755 continue;
1756 }
1757
04f8f758 1758 if ($this->isRelationshipTypeKey($relationshipTypeKey)) {
1759 $returnProperties[$relationshipTypeKey] = $this->setRelationshipReturnProperties($value, $relationshipTypeKey);
806c5e1e 1760 }
04f8f758 1761 elseif ($locationName) {
1762 if ($fieldName === 'phone') {
1763 $returnProperties['location'][$locationName]['phone-' . $value['phone_type_id'] ?? NULL] = 1;
806c5e1e 1764 }
04f8f758 1765 elseif ($fieldName === 'im') {
1766 $returnProperties['location'][$locationName]['im-' . $value['im_provider_id'] ?? NULL] = 1;
806c5e1e 1767 }
1768 else {
1769 $returnProperties['location'][$locationName][$fieldName] = 1;
1770 }
1771 }
1772 else {
1773 //hack to fix component fields
1774 //revert mix of event_id and title
1775 if ($fieldName == 'event_id') {
1776 $returnProperties['event_id'] = 1;
1777 }
1778 else {
1779 $returnProperties[$fieldName] = 1;
1780 }
1781 }
1782 }
1783 $defaultExportMode = $this->defaultReturnProperty();
1784 if ($defaultExportMode) {
1785 $returnProperties[$defaultExportMode] = 1;
1786 }
1787 }
1788 else {
1789 $returnProperties = $this->getDefaultReturnProperties();
1790 }
25e51a1c 1791 if ($this->isMergeSameHousehold()) {
1792 $returnProperties['id'] = 1;
1793 }
2761a916 1794 if ($this->isMergeSameAddress()) {
1795 $returnProperties['addressee'] = 1;
1796 $returnProperties['postal_greeting'] = 1;
1797 $returnProperties['email_greeting'] = 1;
1798 $returnProperties['street_name'] = 1;
1799 $returnProperties['household_name'] = 1;
1800 $returnProperties['street_address'] = 1;
1801 $returnProperties['city'] = 1;
1802 $returnProperties['state_province'] = 1;
1803
1804 }
806c5e1e 1805 return $returnProperties;
1806 }
1807
571f3b5b 1808 /**
7628764a 1809 * @param object $query
1810 * CRM_Contact_BAO_Query
1811 *
1812 * @return string
1813 * Group By Clause
1814 */
1815 public function getGroupBy($query) {
1816 $groupBy = NULL;
1817 $returnProperties = $this->getReturnProperties();
1818 $exportMode = $this->getExportMode();
1819 $queryMode = $this->getQueryMode();
1820 if (!empty($returnProperties['tags']) || !empty($returnProperties['groups']) ||
1821 CRM_Utils_Array::value('notes', $returnProperties) ||
1822 // CRM-9552
1823 ($queryMode & CRM_Contact_BAO_Query::MODE_CONTACTS && $query->_useGroupBy)
1824 ) {
1825 $groupBy = "contact_a.id";
1826 }
1827
1828 switch ($exportMode) {
1829 case CRM_Export_Form_Select::CONTRIBUTE_EXPORT:
1830 $groupBy = 'civicrm_contribution.id';
1831 if (CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled()) {
1832 // especial group by when soft credit columns are included
1833 $groupBy = ['contribution_search_scredit_combined.id', 'contribution_search_scredit_combined.scredit_id'];
1834 }
1835 break;
1836
1837 case CRM_Export_Form_Select::EVENT_EXPORT:
1838 $groupBy = 'civicrm_participant.id';
1839 break;
1840
1841 case CRM_Export_Form_Select::MEMBER_EXPORT:
1842 $groupBy = "civicrm_membership.id";
1843 break;
1844 }
1845
1846 if ($queryMode & CRM_Contact_BAO_Query::MODE_ACTIVITY) {
1847 $groupBy = "civicrm_activity.id ";
1848 }
1849
1850 return $groupBy ? ' GROUP BY ' . implode(', ', (array) $groupBy) : '';
1851 }
806c5e1e 1852
571f3b5b 1853 /**
1854 * @param int $contactId
571f3b5b 1855 *
1856 * @return array
1857 */
423e3da6 1858 public function replaceMergeTokens($contactId) {
571f3b5b 1859 $greetings = [];
1860 $contact = NULL;
1861
1862 $greetingFields = [
a2b21ae3 1863 'postal_greeting' => $this->getPostalGreetingTemplate(),
1864 'addressee' => $this->getAddresseeGreetingTemplate(),
571f3b5b 1865 ];
a2b21ae3 1866 foreach ($greetingFields as $greeting => $greetingLabel) {
423e3da6 1867 $tokens = CRM_Utils_Token::getTokens($greetingLabel);
1868 if (!empty($tokens)) {
571f3b5b 1869 if (empty($contact)) {
1870 $values = [
1871 'id' => $contactId,
1872 'version' => 3,
1873 ];
1874 $contact = civicrm_api('contact', 'get', $values);
1875
1876 if (!empty($contact['is_error'])) {
1877 return $greetings;
1878 }
1879 $contact = $contact['values'][$contact['id']];
1880 }
1881
1882 $tokens = ['contact' => $greetingLabel];
1883 $greetings[$greeting] = CRM_Utils_Token::replaceContactTokens($greetingLabel, $contact, NULL, $tokens);
1884 }
1885 }
1886 return $greetings;
1887 }
1888
c8713fd4 1889 /**
1890 * Build array for merging same addresses.
1891 *
1892 * @param $sql
c8713fd4 1893 * @param bool $sharedAddress
1894 *
1895 * @return array
1896 */
ee769c00 1897 public function buildMasterCopyArray($sql, $sharedAddress = FALSE) {
c8713fd4 1898
1899 $addresseeOptions = CRM_Core_OptionGroup::values('addressee');
1900 $postalOptions = CRM_Core_OptionGroup::values('postal_greeting');
1901
1902 $merge = $parents = [];
1903 $dao = CRM_Core_DAO::executeQuery($sql);
1904
1905 while ($dao->fetch()) {
1906 $masterID = $dao->master_id;
1907 $copyID = $dao->copy_id;
1908 $masterPostalGreeting = $dao->master_postal_greeting;
1909 $masterAddressee = $dao->master_addressee;
1910 $copyAddressee = $dao->copy_addressee;
1911
1912 if (!$sharedAddress) {
d97cefdc 1913 if (!isset($this->contactGreetingFields[$dao->master_contact_id])) {
423e3da6 1914 $this->contactGreetingFields[$dao->master_contact_id] = $this->replaceMergeTokens($dao->master_contact_id);
c8713fd4 1915 }
1916 $masterPostalGreeting = CRM_Utils_Array::value('postal_greeting',
d97cefdc 1917 $this->contactGreetingFields[$dao->master_contact_id], $dao->master_postal_greeting
c8713fd4 1918 );
1919 $masterAddressee = CRM_Utils_Array::value('addressee',
d97cefdc 1920 $this->contactGreetingFields[$dao->master_contact_id], $dao->master_addressee
c8713fd4 1921 );
1922
1923 if (!isset($contactGreetingTokens[$dao->copy_contact_id])) {
423e3da6 1924 $this->contactGreetingFields[$dao->copy_contact_id] = $this->replaceMergeTokens($dao->copy_contact_id);
c8713fd4 1925 }
1926 $copyPostalGreeting = CRM_Utils_Array::value('postal_greeting',
d97cefdc 1927 $this->contactGreetingFields[$dao->copy_contact_id], $dao->copy_postal_greeting
c8713fd4 1928 );
1929 $copyAddressee = CRM_Utils_Array::value('addressee',
d97cefdc 1930 $this->contactGreetingFields[$dao->copy_contact_id], $dao->copy_addressee
c8713fd4 1931 );
1932 }
1933
1934 if (!isset($merge[$masterID])) {
1935 // check if this is an intermediate child
1936 // this happens if there are 3 or more matches a,b, c
1937 // the above query will return a, b / a, c / b, c
1938 // we might be doing a bit more work, but for now its ok, unless someone
1939 // knows how to fix the query above
1940 if (isset($parents[$masterID])) {
1941 $masterID = $parents[$masterID];
1942 }
1943 else {
1944 $merge[$masterID] = [
1945 'addressee' => $masterAddressee,
1946 'copy' => [],
1947 'postalGreeting' => $masterPostalGreeting,
1948 ];
1949 $merge[$masterID]['emailGreeting'] = &$merge[$masterID]['postalGreeting'];
1950 }
1951 }
1952 $parents[$copyID] = $masterID;
1953
1954 if (!$sharedAddress && !array_key_exists($copyID, $merge[$masterID]['copy'])) {
1955
ee769c00 1956 if ($copyPostalGreeting) {
c8713fd4 1957 $this->trimNonTokensFromAddressString($copyPostalGreeting,
1958 $postalOptions[$dao->copy_postal_greeting_id],
ca76de35 1959 $this->getPostalGreetingTemplate()
c8713fd4 1960 );
1961 $merge[$masterID]['postalGreeting'] = "{$merge[$masterID]['postalGreeting']}, {$copyPostalGreeting}";
1962 // if there happens to be a duplicate, remove it
1963 $merge[$masterID]['postalGreeting'] = str_replace(" {$copyPostalGreeting},", "", $merge[$masterID]['postalGreeting']);
1964 }
1965
ee769c00 1966 if ($copyAddressee) {
c8713fd4 1967 $this->trimNonTokensFromAddressString($copyAddressee,
1968 $addresseeOptions[$dao->copy_addressee_id],
ca76de35 1969 $this->getAddresseeGreetingTemplate()
c8713fd4 1970 );
1971 $merge[$masterID]['addressee'] = "{$merge[$masterID]['addressee']}, " . trim($copyAddressee);
1972 }
1973 }
1974 $merge[$masterID]['copy'][$copyID] = $copyAddressee;
1975 }
1976
1977 return $merge;
1978 }
1979
30237bf3 1980 /**
1981 * Merge contacts with the same address.
30237bf3 1982 */
f8fb0608 1983 public function mergeSameAddress() {
a2b21ae3 1984
30237bf3 1985 $tableName = $this->getTemporaryTable();
1986 // check if any records are present based on if they have used shared address feature,
1987 // and not based on if city / state .. matches.
1988 $sql = "
1989SELECT r1.id as copy_id,
1990 r1.civicrm_primary_id as copy_contact_id,
1991 r1.addressee as copy_addressee,
1992 r1.addressee_id as copy_addressee_id,
1993 r1.postal_greeting as copy_postal_greeting,
1994 r1.postal_greeting_id as copy_postal_greeting_id,
1995 r2.id as master_id,
1996 r2.civicrm_primary_id as master_contact_id,
1997 r2.postal_greeting as master_postal_greeting,
1998 r2.postal_greeting_id as master_postal_greeting_id,
1999 r2.addressee as master_addressee,
2000 r2.addressee_id as master_addressee_id
2001FROM $tableName r1
2002INNER JOIN civicrm_address adr ON r1.master_id = adr.id
2003INNER JOIN $tableName r2 ON adr.contact_id = r2.civicrm_primary_id
2004ORDER BY r1.id";
ee769c00 2005 $linkedMerge = $this->buildMasterCopyArray($sql, TRUE);
30237bf3 2006
2007 // find all the records that have the same street address BUT not in a household
2008 // require match on city and state as well
2009 $sql = "
2010SELECT r1.id as master_id,
2011 r1.civicrm_primary_id as master_contact_id,
2012 r1.postal_greeting as master_postal_greeting,
2013 r1.postal_greeting_id as master_postal_greeting_id,
2014 r1.addressee as master_addressee,
2015 r1.addressee_id as master_addressee_id,
2016 r2.id as copy_id,
2017 r2.civicrm_primary_id as copy_contact_id,
2018 r2.postal_greeting as copy_postal_greeting,
2019 r2.postal_greeting_id as copy_postal_greeting_id,
2020 r2.addressee as copy_addressee,
2021 r2.addressee_id as copy_addressee_id
2022FROM $tableName r1
2023LEFT JOIN $tableName r2 ON ( r1.street_address = r2.street_address AND
2024 r1.city = r2.city AND
2025 r1.state_province_id = r2.state_province_id )
2026WHERE ( r1.household_name IS NULL OR r1.household_name = '' )
2027AND ( r2.household_name IS NULL OR r2.household_name = '' )
2028AND ( r1.street_address != '' )
2029AND r2.id > r1.id
2030ORDER BY r1.id
2031";
ee769c00 2032 $merge = $this->buildMasterCopyArray($sql);
30237bf3 2033
2034 // unset ids from $merge already present in $linkedMerge
2035 foreach ($linkedMerge as $masterID => $values) {
2036 $keys = [$masterID];
2037 $keys = array_merge($keys, array_keys($values['copy']));
2038 foreach ($merge as $mid => $vals) {
2039 if (in_array($mid, $keys)) {
2040 unset($merge[$mid]);
2041 }
2042 else {
2043 foreach ($values['copy'] as $copyId) {
2044 if (in_array($copyId, $keys)) {
2045 unset($merge[$mid]['copy'][$copyId]);
2046 }
2047 }
2048 }
2049 }
2050 }
2051 $merge = $merge + $linkedMerge;
2052
2053 foreach ($merge as $masterID => $values) {
2054 $sql = "
2055UPDATE $tableName
2056SET addressee = %1, postal_greeting = %2, email_greeting = %3
2057WHERE id = %4
2058";
2059 $params = [
2060 1 => [$values['addressee'], 'String'],
2061 2 => [$values['postalGreeting'], 'String'],
2062 3 => [$values['emailGreeting'], 'String'],
2063 4 => [$masterID, 'Integer'],
2064 ];
2065 CRM_Core_DAO::executeQuery($sql, $params);
2066
2067 // delete all copies
2068 $deleteIDs = array_keys($values['copy']);
2069 $deleteIDString = implode(',', $deleteIDs);
2070 $sql = "
2071DELETE FROM $tableName
2072WHERE id IN ( $deleteIDString )
2073";
2074 CRM_Core_DAO::executeQuery($sql);
2075 }
30237bf3 2076 }
2077
e358ebd1 2078 /**
2079 * The function unsets static part of the string, if token is the dynamic part.
2080 *
2081 * Example: 'Hello {contact.first_name}' => converted to => '{contact.first_name}'
2082 * i.e 'Hello Alan' => converted to => 'Alan'
2083 *
2084 * @param string $parsedString
2085 * @param string $defaultGreeting
ca76de35 2086 * @param string $greetingLabel
e358ebd1 2087 *
2088 * @return mixed
2089 */
2090 public function trimNonTokensFromAddressString(
2091 &$parsedString, $defaultGreeting,
ca76de35 2092 $greetingLabel
e358ebd1 2093 ) {
e358ebd1 2094 $greetingLabel = empty($greetingLabel) ? $defaultGreeting : $greetingLabel;
2095
2096 $stringsToBeReplaced = preg_replace('/(\{[a-zA-Z._ ]+\})/', ';;', $greetingLabel);
2097 $stringsToBeReplaced = explode(';;', $stringsToBeReplaced);
2098 foreach ($stringsToBeReplaced as $key => $string) {
2099 // to keep one space
2100 $stringsToBeReplaced[$key] = ltrim($string);
2101 }
2102 $parsedString = str_replace($stringsToBeReplaced, "", $parsedString);
2103
2104 return $parsedString;
2105 }
2106
978f5005 2107 /**
2108 * Preview export output.
2109 *
2110 * @param int $limit
2111 * @return array
2112 */
2113 public function getPreview($limit) {
2114 $rows = [];
2115 list($outputColumns, $metadata) = $this->getExportStructureArrays();
2116 $query = $this->runQuery([], '');
2117 CRM_Core_DAO::disableFullGroupByMode();
2118 $result = CRM_Core_DAO::executeQuery($query[1] . ' LIMIT ' . (int) $limit);
2119 CRM_Core_DAO::reenableFullGroupByMode();
2120 while ($result->fetch()) {
2121 $rows[] = $this->buildRow($query[0], $result, $outputColumns, $metadata, [], []);
2122 }
2123 return $rows;
2124 }
2125
1e9e062d 2126 /**
2127 * Set the template strings to be used when merging two contacts with the same address.
2128 *
2129 * @param array $formValues
2130 * Values from first form. In this case we care about the keys
2131 * - postal_greeting
2132 * - postal_other
2133 * - address_greeting
2134 * - addressee_other
2135 *
2136 * @return mixed
2137 */
2138 protected function setGreetingStringsForSameAddressMerge($formValues) {
2139 $greetingOptions = CRM_Export_Form_Select::getGreetingOptions();
2140
2141 if (!empty($greetingOptions)) {
2142 // Greeting options is keyed by 'postal_greeting' or 'addressee'.
2143 foreach ($greetingOptions as $key => $value) {
2144 $option = CRM_Utils_Array::value($key, $formValues);
2145 if ($option) {
2146 if ($greetingOptions[$key][$option] == ts('Other')) {
2147 $formValues[$key] = $formValues["{$key}_other"];
2148 }
2149 elseif ($greetingOptions[$key][$option] == ts('List of names')) {
2150 $formValues[$key] = '';
2151 }
2152 else {
2153 $formValues[$key] = $greetingOptions[$key][$option];
2154 }
2155 }
2156 }
2157 }
2158 if (!empty($formValues['postal_greeting'])) {
2159 $this->setPostalGreetingTemplate($formValues['postal_greeting']);
2160 }
2161 if (!empty($formValues['addressee'])) {
2162 $this->setAddresseeGreetingTemplate($formValues['addressee']);
2163 }
2164 }
2165
3e644436 2166 /**
2167 * Create the temporary table for output.
2168 */
2169 public function createTempTable() {
2170 //creating a temporary table for the search result that need be exported
2171 $exportTempTable = CRM_Utils_SQL_TempTable::build()->setDurable()->setCategory('export');
2172 $sqlColumns = $this->getSQLColumns();
2173 // also create the sql table
2174 $exportTempTable->drop();
2175
2176 $sql = " id int unsigned NOT NULL AUTO_INCREMENT, ";
2177 if (!empty($sqlColumns)) {
2178 $sql .= implode(",\n", array_values($sqlColumns)) . ',';
2179 }
2180
2181 $sql .= "\n PRIMARY KEY ( id )";
2182
2183 // add indexes for street_address and household_name if present
2184 $addIndices = [
2185 'street_address',
2186 'household_name',
2187 'civicrm_primary_id',
2188 ];
2189
2190 foreach ($addIndices as $index) {
2191 if (isset($sqlColumns[$index])) {
2192 $sql .= ",
2193 INDEX index_{$index}( $index )
2194";
2195 }
2196 }
2197
2198 $exportTempTable->createWithColumns($sql);
2199 $this->setTemporaryTable($exportTempTable->getName());
2200 }
2201
b0b40cd7 2202 /**
2203 * Get the values of linked household contact.
2204 *
2205 * @param CRM_Core_DAO $relDAO
2206 * @param array $value
2207 * @param string $field
2208 * @param array $row
2209 *
2210 * @throws \Exception
2211 */
2212 public function fetchRelationshipDetails($relDAO, $value, $field, &$row) {
2213 $phoneTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Phone', 'phone_type_id');
2214 $imProviders = CRM_Core_PseudoConstant::get('CRM_Core_DAO_IM', 'provider_id');
2215 $i18n = CRM_Core_I18n::singleton();
2216 $field = $field . '_';
2217
2218 foreach ($value as $relationField => $relationValue) {
2219 if (is_object($relDAO) && property_exists($relDAO, $relationField)) {
2220 $fieldValue = $relDAO->$relationField;
2221 if ($relationField == 'phone_type_id') {
2222 $fieldValue = $phoneTypes[$relationValue];
2223 }
2224 elseif ($relationField == 'provider_id') {
2225 $fieldValue = CRM_Utils_Array::value($relationValue, $imProviders);
2226 }
2227 // CRM-13995
2228 elseif (is_object($relDAO) && in_array($relationField, [
2229 'email_greeting',
2230 'postal_greeting',
2231 'addressee',
2232 ])) {
2233 //special case for greeting replacement
2234 $fldValue = "{$relationField}_display";
2235 $fieldValue = $relDAO->$fldValue;
2236 }
2237 }
2238 elseif (is_object($relDAO) && $relationField == 'state_province') {
2239 $fieldValue = CRM_Core_PseudoConstant::stateProvince($relDAO->state_province_id);
2240 }
2241 elseif (is_object($relDAO) && $relationField == 'country') {
2242 $fieldValue = CRM_Core_PseudoConstant::country($relDAO->country_id);
2243 }
2244 else {
2245 $fieldValue = '';
2246 }
2247 $relPrefix = $field . $relationField;
2248
2249 if (is_object($relDAO) && $relationField == 'id') {
2250 $row[$relPrefix] = $relDAO->contact_id;
2251 }
2252 elseif (is_array($relationValue) && $relationField == 'location') {
2253 foreach ($relationValue as $ltype => $val) {
2254 // If the location name has a space in it the we need to handle that. This
2255 // is kinda hacky but specifically covered in the ExportTest so later efforts to
2256 // improve it should be secure in the knowled it will be caught.
2257 $ltype = str_replace(' ', '_', $ltype);
2258 foreach (array_keys($val) as $fld) {
2259 $type = explode('-', $fld);
2260 $fldValue = "{$ltype}-" . $type[0];
2261 if (!empty($type[1])) {
2262 $fldValue .= "-" . $type[1];
2263 }
2264 // CRM-3157: localise country, region (both have ‘country’ context)
2265 // and state_province (‘province’ context)
2266 switch (TRUE) {
2267 case (!is_object($relDAO)):
2268 $row[$field . '_' . $fldValue] = '';
2269 break;
2270
2271 case in_array('country', $type):
2272 case in_array('world_region', $type):
2273 $row[$field . '_' . $fldValue] = $i18n->crm_translate($relDAO->$fldValue,
2274 ['context' => 'country']
2275 );
2276 break;
2277
2278 case in_array('state_province', $type):
2279 $row[$field . '_' . $fldValue] = $i18n->crm_translate($relDAO->$fldValue,
2280 ['context' => 'province']
2281 );
2282 break;
2283
2284 default:
2285 $row[$field . '_' . $fldValue] = $relDAO->$fldValue;
2286 break;
2287 }
2288 }
2289 }
2290 }
2291 elseif (isset($fieldValue) && $fieldValue != '') {
2292 //check for custom data
2293 if ($cfID = CRM_Core_BAO_CustomField::getKeyID($relationField)) {
2294 $row[$relPrefix] = CRM_Core_BAO_CustomField::displayValue($fieldValue, $cfID);
2295 }
2296 else {
2297 //normal relationship fields
2298 // CRM-3157: localise country, region (both have ‘country’ context) and state_province (‘province’ context)
2299 switch ($relationField) {
2300 case 'country':
2301 case 'world_region':
2302 $row[$relPrefix] = $i18n->crm_translate($fieldValue, ['context' => 'country']);
2303 break;
2304
2305 case 'state_province':
2306 $row[$relPrefix] = $i18n->crm_translate($fieldValue, ['context' => 'province']);
2307 break;
2308
2309 default:
2310 $row[$relPrefix] = $fieldValue;
2311 break;
2312 }
2313 }
2314 }
2315 else {
2316 // if relation field is empty or null
2317 $row[$relPrefix] = '';
2318 }
2319 }
2320 }
2321
b6149515 2322 /**
2323 * Write to the csv from the temp table.
2324 */
2325 public function writeCSVFromTable() {
2326 // call export hook
2327 $headerRows = $this->getHeaderRows();
2328 $exportTempTable = $this->getTemporaryTable();
2329 CRM_Utils_Hook::export($exportTempTable, $headerRows, $sqlColumns, $exportMode, $componentTable, $ids);
2330 if ($exportTempTable !== $this->getTemporaryTable()) {
2331 CRM_Core_Error::deprecatedFunctionWarning('altering the export table in the hook is deprecated (in some flows the table itself will be)');
2332 $this->setTemporaryTable($exportTempTable);
2333 }
2334 $exportTempTable = $this->getTemporaryTable();
2335 $writeHeader = TRUE;
2336 $offset = 0;
2337 // increase this number a lot to avoid making too many queries
2338 // LIMIT is not much faster than a no LIMIT query
2339 // CRM-7675
2340 $limit = 100000;
2341
2342 $query = "SELECT * FROM $exportTempTable";
2343
2344 while (1) {
2345 $limitQuery = $query . "
2346LIMIT $offset, $limit
2347";
2348 $dao = CRM_Core_DAO::executeQuery($limitQuery);
2349
2350 if ($dao->N <= 0) {
2351 break;
2352 }
2353
2354 $componentDetails = [];
2355 while ($dao->fetch()) {
2356 $row = [];
2357
2358 foreach (array_keys($this->getSQLColumns()) as $column) {
2359 $row[$column] = $dao->$column;
2360 }
2361 $componentDetails[] = $row;
2362 }
2363 CRM_Core_Report_Excel::writeCSVFile($this->getExportFileName(),
2364 $headerRows,
2365 $componentDetails,
2366 NULL,
2367 $writeHeader
2368 );
2369
2370 $writeHeader = FALSE;
2371 $offset += $limit;
2372 }
2373 }
2374
6003a964 2375}