Merge pull request #13158 from elisseck/dev/core/544
[civicrm-core.git] / CRM / Contact / Import / Form / MapField.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
31 * @copyright CiviCRM LLC (c) 2004-2019
32 */
33
34 /**
35 * This class gets the name of the file to upload.
36 */
37 class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField {
38
39
40 /**
41 * An array of all contact fields with
42 * formatted custom field names.
43 *
44 * @var array
45 */
46 protected $_formattedFieldNames;
47
48 /**
49 * On duplicate.
50 *
51 * @var int
52 */
53 public $_onDuplicate;
54
55 protected $_dedupeFields;
56
57 protected static $customFields;
58
59 /**
60 * Attempt to match header labels with our mapper fields.
61 *
62 * FIXME: This is essentially the same function as parent::defaultFromHeader
63 *
64 * @param string $columnName name of column header
65 * @param array $patterns pattern to match for the column
66 *
67 * @return string
68 */
69 public function defaultFromColumnName($columnName, &$patterns) {
70
71 if (!preg_match('/^[a-z0-9 ]$/i', $columnName)) {
72 if ($columnKey = array_search($columnName, $this->_mapperFields)) {
73 $this->_fieldUsed[$columnKey] = TRUE;
74 return $columnKey;
75 }
76 }
77
78 foreach ($patterns as $key => $re) {
79 // Skip empty key/patterns
80 if (!$key || !$re || strlen("$re") < 5) {
81 continue;
82 }
83
84 if (preg_match($re, $columnName)) {
85 $this->_fieldUsed[$key] = TRUE;
86 return $key;
87 }
88 }
89 return '';
90 }
91
92 /**
93 * Set variables up before form is built.
94 */
95 public function preProcess() {
96 $dataSource = $this->get('dataSource');
97 $skipColumnHeader = $this->get('skipColumnHeader');
98 $this->_mapperFields = $this->get('fields');
99 $this->_importTableName = $this->get('importTableName');
100 $this->_onDuplicate = $this->get('onDuplicate');
101 $highlightedFields = array();
102 $highlightedFields[] = 'email';
103 $highlightedFields[] = 'external_identifier';
104 //format custom field names, CRM-2676
105 switch ($this->get('contactType')) {
106 case CRM_Import_Parser::CONTACT_INDIVIDUAL:
107 $contactType = 'Individual';
108 $highlightedFields[] = 'first_name';
109 $highlightedFields[] = 'last_name';
110 break;
111
112 case CRM_Import_Parser::CONTACT_HOUSEHOLD:
113 $contactType = 'Household';
114 $highlightedFields[] = 'household_name';
115 break;
116
117 case CRM_Import_Parser::CONTACT_ORGANIZATION:
118 $contactType = 'Organization';
119 $highlightedFields[] = 'organization_name';
120 break;
121 }
122 $this->_contactType = $contactType;
123 if ($this->_onDuplicate == CRM_Import_Parser::DUPLICATE_SKIP) {
124 unset($this->_mapperFields['id']);
125 }
126 else {
127 $highlightedFields[] = 'id';
128 }
129
130 if ($this->_onDuplicate != CRM_Import_Parser::DUPLICATE_NOCHECK) {
131 //Mark Dedupe Rule Fields as required, since it's used in matching contact
132 foreach (array(
133 'Individual',
134 'Household',
135 'Organization',
136 ) as $cType) {
137 $ruleParams = array(
138 'contact_type' => $cType,
139 'used' => 'Unsupervised',
140 );
141 $this->_dedupeFields[$cType] = CRM_Dedupe_BAO_Rule::dedupeRuleFields($ruleParams);
142 }
143
144 //Modify mapper fields title if fields are present in dedupe rule
145 if (is_array($this->_dedupeFields[$contactType])) {
146 foreach ($this->_dedupeFields[$contactType] as $val) {
147 if ($valTitle = CRM_Utils_Array::value($val, $this->_mapperFields)) {
148 $this->_mapperFields[$val] = $valTitle . ' (match to contact)';
149 }
150 }
151 }
152 }
153 // retrieve and highlight required custom fields
154 $formattedFieldNames = $this->formatCustomFieldName($this->_mapperFields);
155 self::$customFields = CRM_Core_BAO_CustomField::getFields($this->_contactType);
156 foreach (self::$customFields as $key => $attr) {
157 if (!empty($attr['is_required'])) {
158 $highlightedFields[] = "custom_$key";
159 }
160 }
161 $this->assign('highlightedFields', $highlightedFields);
162 $this->_formattedFieldNames[$contactType] = $this->_mapperFields = array_merge($this->_mapperFields, $formattedFieldNames);
163
164 $columnNames = array();
165 //get original col headers from csv if present.
166 if ($dataSource == 'CRM_Import_DataSource_CSV' && $skipColumnHeader) {
167 $columnNames = $this->get('originalColHeader');
168 }
169 else {
170 // get the field names from the temp. DB table
171 $dao = new CRM_Core_DAO();
172 $db = $dao->getDatabaseConnection();
173
174 $columnsQuery = "SHOW FIELDS FROM $this->_importTableName
175 WHERE Field NOT LIKE '\_%'";
176 $columnsResult = $db->query($columnsQuery);
177 while ($row = $columnsResult->fetchRow(DB_FETCHMODE_ASSOC)) {
178 $columnNames[] = $row['Field'];
179 }
180 }
181
182 $showColNames = TRUE;
183 if ($dataSource == 'CRM_Import_DataSource_CSV' && !$skipColumnHeader) {
184 $showColNames = FALSE;
185 }
186 $this->assign('showColNames', $showColNames);
187
188 $this->_columnCount = count($columnNames);
189 $this->_columnNames = $columnNames;
190 $this->assign('columnNames', $columnNames);
191 //$this->_columnCount = $this->get( 'columnCount' );
192 $this->assign('columnCount', $this->_columnCount);
193 $this->_dataValues = $this->get('dataValues');
194 $this->assign('dataValues', $this->_dataValues);
195 $this->assign('rowDisplayCount', 2);
196 }
197
198 /**
199 * Build the form object.
200 */
201 public function buildQuickForm() {
202 //to save the current mappings
203 if (!$this->get('savedMapping')) {
204 $saveDetailsName = ts('Save this field mapping');
205 $this->applyFilter('saveMappingName', 'trim');
206 $this->add('text', 'saveMappingName', ts('Name'));
207 $this->add('text', 'saveMappingDesc', ts('Description'));
208 }
209 else {
210 $savedMapping = $this->get('savedMapping');
211
212 list($mappingName, $mappingContactType, $mappingLocation, $mappingPhoneType, $mappingImProvider, $mappingRelation, $mappingOperator, $mappingValue, $mappingWebsiteType) = CRM_Core_BAO_Mapping::getMappingFields($savedMapping, TRUE);
213
214 //get loaded Mapping Fields
215 $mappingName = CRM_Utils_Array::value(1, $mappingName);
216 $mappingLocation = CRM_Utils_Array::value(1, $mappingLocation);
217 $mappingPhoneType = CRM_Utils_Array::value(1, $mappingPhoneType);
218 $mappingImProvider = CRM_Utils_Array::value(1, $mappingImProvider);
219 $mappingRelation = CRM_Utils_Array::value(1, $mappingRelation);
220 $mappingWebsiteType = CRM_Utils_Array::value(1, $mappingWebsiteType);
221
222 $this->assign('loadedMapping', $savedMapping);
223 $this->set('loadedMapping', $savedMapping);
224
225 $params = array('id' => $savedMapping);
226 $temp = array();
227 $mappingDetails = CRM_Core_BAO_Mapping::retrieve($params, $temp);
228
229 $this->assign('savedName', $mappingDetails->name);
230
231 $this->add('hidden', 'mappingId', $savedMapping);
232
233 $this->addElement('checkbox', 'updateMapping', ts('Update this field mapping'), NULL);
234 $saveDetailsName = ts('Save as a new field mapping');
235 $this->add('text', 'saveMappingName', ts('Name'));
236 $this->add('text', 'saveMappingDesc', ts('Description'));
237 }
238
239 $this->addElement('checkbox', 'saveMapping', $saveDetailsName, NULL, array('onclick' => "showSaveDetails(this)"));
240
241 $this->addFormRule(array('CRM_Contact_Import_Form_MapField', 'formRule'));
242
243 //-------- end of saved mapping stuff ---------
244
245 $defaults = array();
246 $mapperKeys = array_keys($this->_mapperFields);
247 $hasColumnNames = !empty($this->_columnNames);
248 $columnPatterns = $this->get('columnPatterns');
249 $dataPatterns = $this->get('dataPatterns');
250 $hasLocationTypes = $this->get('fieldTypes');
251
252 $this->_location_types = array('Primary' => ts('Primary')) + CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id');
253 $defaultLocationType = CRM_Core_BAO_LocationType::getDefault();
254
255 // Pass default location to js
256 if ($defaultLocationType) {
257 $this->assign('defaultLocationType', $defaultLocationType->id);
258 $this->assign('defaultLocationTypeLabel', $this->_location_types[$defaultLocationType->id]);
259 }
260
261 /* Initialize all field usages to false */
262 foreach ($mapperKeys as $key) {
263 $this->_fieldUsed[$key] = FALSE;
264 }
265
266 $sel1 = $this->_mapperFields;
267 $sel2[''] = NULL;
268
269 $phoneTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Phone', 'phone_type_id');
270 $imProviders = CRM_Core_PseudoConstant::get('CRM_Core_DAO_IM', 'provider_id');
271 $websiteTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Website', 'website_type_id');
272
273 foreach ($this->_location_types as $key => $value) {
274 $sel3['phone'][$key] = &$phoneTypes;
275 //build array for IM service provider type for contact
276 $sel3['im'][$key] = &$imProviders;
277 }
278
279 $sel4 = NULL;
280
281 // store and cache all relationship types
282 $contactRelation = new CRM_Contact_DAO_RelationshipType();
283 $contactRelation->find();
284 while ($contactRelation->fetch()) {
285 $contactRelationCache[$contactRelation->id] = array();
286 $contactRelationCache[$contactRelation->id]['contact_type_a'] = $contactRelation->contact_type_a;
287 $contactRelationCache[$contactRelation->id]['contact_sub_type_a'] = $contactRelation->contact_sub_type_a;
288 $contactRelationCache[$contactRelation->id]['contact_type_b'] = $contactRelation->contact_type_b;
289 $contactRelationCache[$contactRelation->id]['contact_sub_type_b'] = $contactRelation->contact_sub_type_b;
290 }
291 $highlightedFields = $highlightedRelFields = array();
292
293 $highlightedFields['email'] = 'All';
294 $highlightedFields['external_identifier'] = 'All';
295 $highlightedFields['first_name'] = 'Individual';
296 $highlightedFields['last_name'] = 'Individual';
297 $highlightedFields['household_name'] = 'Household';
298 $highlightedFields['organization_name'] = 'Organization';
299
300 foreach ($mapperKeys as $key) {
301 // check if there is a _a_b or _b_a in the key
302 if (strpos($key, '_a_b') || strpos($key, '_b_a')) {
303 list($id, $first, $second) = explode('_', $key);
304 }
305 else {
306 $id = $first = $second = NULL;
307 }
308 if (($first == 'a' && $second == 'b') || ($first == 'b' && $second == 'a')) {
309 $cType = $contactRelationCache[$id]["contact_type_{$second}"];
310
311 //CRM-5125 for contact subtype specific relationshiptypes
312 $cSubType = NULL;
313 if (!empty($contactRelationCache[$id]["contact_sub_type_{$second}"])) {
314 $cSubType = $contactRelationCache[$id]["contact_sub_type_{$second}"];
315 }
316
317 if (!$cType) {
318 $cType = 'All';
319 }
320
321 $relatedFields = CRM_Contact_BAO_Contact::importableFields($cType);
322 unset($relatedFields['']);
323 $values = array();
324 foreach ($relatedFields as $name => $field) {
325 $values[$name] = $field['title'];
326 if (isset($hasLocationTypes[$name])) {
327 $sel3[$key][$name] = $this->_location_types;
328 }
329 elseif ($name == 'url') {
330 $sel3[$key][$name] = $websiteTypes;
331 }
332 else {
333 $sel3[$name] = NULL;
334 }
335 }
336
337 //fix to append custom group name to field name, CRM-2676
338 if (empty($this->_formattedFieldNames[$cType]) || $cType == $this->_contactType) {
339 $this->_formattedFieldNames[$cType] = $this->formatCustomFieldName($values);
340 }
341
342 $this->_formattedFieldNames[$cType] = array_merge($values, $this->_formattedFieldNames[$cType]);
343
344 //Modified the Relationship fields if the fields are
345 //present in dedupe rule
346 if ($this->_onDuplicate != CRM_Import_Parser::DUPLICATE_NOCHECK && !empty($this->_dedupeFields[$cType]) &&
347 is_array($this->_dedupeFields[$cType])
348 ) {
349 static $cTypeArray = array();
350 if ($cType != $this->_contactType && !in_array($cType, $cTypeArray)) {
351 foreach ($this->_dedupeFields[$cType] as $val) {
352 if ($valTitle = CRM_Utils_Array::value($val, $this->_formattedFieldNames[$cType])) {
353 $this->_formattedFieldNames[$cType][$val] = $valTitle . ' (match to contact)';
354 }
355 }
356 $cTypeArray[] = $cType;
357 }
358 }
359
360 foreach ($highlightedFields as $k => $v) {
361 if ($v == $cType || $v == 'All') {
362 $highlightedRelFields[$key][] = $k;
363 }
364 }
365 $this->assign('highlightedRelFields', $highlightedRelFields);
366 $sel2[$key] = $this->_formattedFieldNames[$cType];
367
368 if (!empty($cSubType)) {
369 //custom fields for sub type
370 $subTypeFields = CRM_Core_BAO_CustomField::getFieldsForImport($cSubType);
371
372 if (!empty($subTypeFields)) {
373 $subType = NULL;
374 foreach ($subTypeFields as $customSubTypeField => $details) {
375 $subType[$customSubTypeField] = $details['title'];
376 $sel2[$key] = array_merge($sel2[$key], $this->formatCustomFieldName($subType));
377 }
378 }
379 }
380
381 foreach ($this->_location_types as $k => $value) {
382 $sel4[$key]['phone'][$k] = &$phoneTypes;
383 //build array of IM service provider for related contact
384 $sel4[$key]['im'][$k] = &$imProviders;
385 }
386 }
387 else {
388 $options = NULL;
389 if (!empty($hasLocationTypes[$key])) {
390 $options = $this->_location_types;
391 }
392 elseif ($key == 'url') {
393 $options = $websiteTypes;
394 }
395 $sel2[$key] = $options;
396 }
397 }
398
399 $js = "<script type='text/javascript'>\n";
400 $formName = 'document.forms.' . $this->_name;
401 //used to warn for mismatch column count or mismatch mapping
402 $warning = 0;
403 for ($i = 0; $i < $this->_columnCount; $i++) {
404 $sel = &$this->addElement('hierselect', "mapper[$i]", ts('Mapper for Field %1', array(1 => $i)), NULL);
405 $jsSet = FALSE;
406 if ($this->get('savedMapping')) {
407 if (isset($mappingName[$i])) {
408 if ($mappingName[$i] != ts('- do not import -')) {
409
410 if (isset($mappingRelation[$i])) {
411 // relationship mapping
412 switch ($this->get('contactType')) {
413 case CRM_Import_Parser::CONTACT_INDIVIDUAL:
414 $contactType = 'Individual';
415 break;
416
417 case CRM_Import_Parser::CONTACT_HOUSEHOLD:
418 $contactType = 'Household';
419 break;
420
421 case CRM_Import_Parser::CONTACT_ORGANIZATION:
422 $contactType = 'Organization';
423 }
424 //CRM-5125
425 $contactSubType = NULL;
426 if ($this->get('contactSubType')) {
427 $contactSubType = $this->get('contactSubType');
428 }
429
430 $relations = CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, NULL, NULL, $contactType,
431 FALSE, 'label', TRUE, $contactSubType
432 );
433
434 foreach ($relations as $key => $var) {
435 if ($key == $mappingRelation[$i]) {
436 $relation = $key;
437 break;
438 }
439 }
440
441 $contactDetails = strtolower(str_replace(" ", "_", $mappingName[$i]));
442 $websiteTypeId = isset($mappingWebsiteType[$i]) ? $mappingWebsiteType[$i] : NULL;
443 $locationId = isset($mappingLocation[$i]) ? $mappingLocation[$i] : 0;
444 $phoneType = isset($mappingPhoneType[$i]) ? $mappingPhoneType[$i] : NULL;
445 //get provider id from saved mappings
446 $imProvider = isset($mappingImProvider[$i]) ? $mappingImProvider[$i] : NULL;
447
448 if ($websiteTypeId) {
449 $defaults["mapper[$i]"] = array($relation, $contactDetails, $websiteTypeId);
450 if (!$websiteTypeId) {
451 $js .= "{$formName}['mapper[$i][2]'].style.display = 'none';\n";
452 }
453 }
454 else {
455 // default for IM/phone when mapping with relation is true
456 $typeId = NULL;
457 if (isset($phoneType)) {
458 $typeId = $phoneType;
459 }
460 elseif (isset($imProvider)) {
461 $typeId = $imProvider;
462 }
463 $defaults["mapper[$i]"] = array($relation, $contactDetails, $locationId, $typeId);
464 if (!$locationId) {
465 $js .= "{$formName}['mapper[$i][2]'].style.display = 'none';\n";
466 }
467 }
468 // fix for edge cases, CRM-4954
469 if ($contactDetails == 'image_url') {
470 $contactDetails = str_replace('url', 'URL', $contactDetails);
471 }
472
473 if (!$contactDetails) {
474 $js .= "{$formName}['mapper[$i][1]'].style.display = 'none';\n";
475 }
476
477 if ((!$phoneType) && (!$imProvider)) {
478 $js .= "{$formName}['mapper[$i][3]'].style.display = 'none';\n";
479 }
480 //$js .= "{$formName}['mapper[$i][3]'].style.display = 'none';\n";
481 $jsSet = TRUE;
482 }
483 else {
484 $mappingHeader = array_keys($this->_mapperFields, $mappingName[$i]);
485 $websiteTypeId = isset($mappingWebsiteType[$i]) ? $mappingWebsiteType[$i] : NULL;
486 $locationId = isset($mappingLocation[$i]) ? $mappingLocation[$i] : 0;
487 $phoneType = isset($mappingPhoneType[$i]) ? $mappingPhoneType[$i] : NULL;
488 // get IM service provider id
489 $imProvider = isset($mappingImProvider[$i]) ? $mappingImProvider[$i] : NULL;
490
491 if ($websiteTypeId) {
492 if (!$websiteTypeId) {
493 $js .= "{$formName}['mapper[$i][1]'].style.display = 'none';\n";
494 }
495 $defaults["mapper[$i]"] = array($mappingHeader[0], $websiteTypeId);
496 }
497 else {
498 if (!$locationId) {
499 $js .= "{$formName}['mapper[$i][1]'].style.display = 'none';\n";
500 }
501 //default for IM/phone without related contact
502 $typeId = NULL;
503 if (isset($phoneType)) {
504 $typeId = $phoneType;
505 }
506 elseif (isset($imProvider)) {
507 $typeId = $imProvider;
508 }
509 $defaults["mapper[$i]"] = array($mappingHeader[0], $locationId, $typeId);
510 }
511
512 if ((!$phoneType) && (!$imProvider)) {
513 $js .= "{$formName}['mapper[$i][2]'].style.display = 'none';\n";
514 }
515
516 $js .= "{$formName}['mapper[$i][3]'].style.display = 'none';\n";
517
518 $jsSet = TRUE;
519 }
520 }
521 else {
522 $defaults["mapper[$i]"] = array();
523 }
524 if (!$jsSet) {
525 for ($k = 1; $k < 4; $k++) {
526 $js .= "{$formName}['mapper[$i][$k]'].style.display = 'none';\n";
527 }
528 }
529 }
530 else {
531 // this load section to help mapping if we ran out of saved columns when doing Load Mapping
532 $js .= "swapOptions($formName, 'mapper[$i]', 0, 3, 'hs_mapper_0_');\n";
533
534 if ($hasColumnNames) {
535 $defaults["mapper[$i]"] = array($this->defaultFromColumnName($this->_columnNames[$i], $columnPatterns));
536 }
537 else {
538 $defaults["mapper[$i]"] = array($this->defaultFromData($dataPatterns, $i));
539 }
540 }
541 //end of load mapping
542 }
543 else {
544 $js .= "swapOptions($formName, 'mapper[$i]', 0, 3, 'hs_mapper_0_');\n";
545 if ($hasColumnNames) {
546 // do array search first to see if has mapped key
547 $columnKey = '';
548 $columnKey = array_search($this->_columnNames[$i], $this->_mapperFields);
549 if (isset($this->_fieldUsed[$columnKey])) {
550 $defaults["mapper[$i]"] = $columnKey;
551 $this->_fieldUsed[$key] = TRUE;
552 }
553 else {
554 // Infer the default from the column names if we have them
555 $defaults["mapper[$i]"] = array(
556 $this->defaultFromColumnName($this->_columnNames[$i],
557 $columnPatterns
558 ),
559 0,
560 );
561 }
562 }
563 else {
564 // Otherwise guess the default from the form of the data
565 $defaults["mapper[$i]"] = array(
566 $this->defaultFromData($dataPatterns, $i),
567 // $defaultLocationType->id
568 0,
569 );
570 }
571 }
572 $sel->setOptions(array($sel1, $sel2, $sel3, $sel4));
573 }
574
575 $js .= "</script>\n";
576 $this->assign('initHideBoxes', $js);
577
578 //set warning if mismatch in more than
579 if (isset($mappingName) &&
580 ($this->_columnCount != count($mappingName))
581 ) {
582 $warning++;
583 }
584
585 if ($warning != 0 && $this->get('savedMapping')) {
586 $session = CRM_Core_Session::singleton();
587 $session->setStatus(ts('The data columns in this import file appear to be different from the saved mapping. Please verify that you have selected the correct saved mapping before continuing.'));
588 }
589 else {
590 $session = CRM_Core_Session::singleton();
591 $session->setStatus(NULL);
592 }
593
594 $this->setDefaults($defaults);
595
596 $this->addButtons(array(
597 array(
598 'type' => 'back',
599 'name' => ts('Previous'),
600 ),
601 array(
602 'type' => 'next',
603 'name' => ts('Continue'),
604 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
605 'isDefault' => TRUE,
606 ),
607 array(
608 'type' => 'cancel',
609 'name' => ts('Cancel'),
610 ),
611 )
612 );
613 }
614
615 /**
616 * Global validation rules for the form.
617 *
618 * @param array $fields
619 * Posted values of the form.
620 *
621 * @return array
622 * list of errors to be posted back to the form
623 */
624 public static function formRule($fields) {
625 $errors = array();
626 if (!empty($fields['saveMapping'])) {
627 $nameField = CRM_Utils_Array::value('saveMappingName', $fields);
628 if (empty($nameField)) {
629 $errors['saveMappingName'] = ts('Name is required to save Import Mapping');
630 }
631 else {
632 $mappingTypeId = CRM_Core_PseudoConstant::getKey('CRM_Core_BAO_Mapping', 'mapping_type_id', 'Import Contact');
633 if (CRM_Core_BAO_Mapping::checkMapping($nameField, $mappingTypeId)) {
634 $errors['saveMappingName'] = ts('Duplicate Import Mapping Name');
635 }
636 }
637 }
638 $template = CRM_Core_Smarty::singleton();
639 if (!empty($fields['saveMapping'])) {
640 $template->assign('isCheked', TRUE);
641 }
642
643 if (!empty($errors)) {
644 $_flag = 1;
645 $assignError = new CRM_Core_Page();
646 $assignError->assign('mappingDetailsError', $_flag);
647 return $errors;
648 }
649 else {
650 return TRUE;
651 }
652 }
653
654 /**
655 * Process the mapped fields and map it into the uploaded file.
656 */
657 public function postProcess() {
658 $params = $this->controller->exportValues('MapField');
659
660 //reload the mapfield if load mapping is pressed
661 if (!empty($params['savedMapping'])) {
662 $this->set('savedMapping', $params['savedMapping']);
663 $this->controller->resetPage($this->_name);
664 return;
665 }
666 $mapperKeys = $this->controller->exportValue($this->_name, 'mapper');
667
668 $parser = $this->submit($params, $mapperKeys);
669
670 // add all the necessary variables to the form
671 $parser->set($this);
672 }
673
674 /**
675 * Format custom field name.
676 *
677 * Combine group and field name to avoid conflict.
678 *
679 * @param array $fields
680 *
681 * @return array
682 */
683 public function formatCustomFieldName(&$fields) {
684 //CRM-2676, replacing the conflict for same custom field name from different custom group.
685 $fieldIds = $formattedFieldNames = array();
686 foreach ($fields as $key => $value) {
687 if ($customFieldId = CRM_Core_BAO_CustomField::getKeyID($key)) {
688 $fieldIds[] = $customFieldId;
689 }
690 }
691
692 if (!empty($fieldIds) && is_array($fieldIds)) {
693 $groupTitles = CRM_Core_BAO_CustomGroup::getGroupTitles($fieldIds);
694
695 if (!empty($groupTitles)) {
696 foreach ($groupTitles as $fId => $values) {
697 $key = "custom_{$fId}";
698 $groupTitle = $values['groupTitle'];
699 $formattedFieldNames[$key] = $fields[$key] . ' :: ' . $groupTitle;
700 }
701 }
702 }
703
704 return $formattedFieldNames;
705 }
706
707 /**
708 * Main submit function.
709 *
710 * Extracted to add testing & start refactoring.
711 *
712 * @param $params
713 * @param $mapperKeys
714 *
715 * @return \CRM_Contact_Import_Parser_Contact
716 */
717 public function submit($params, $mapperKeys) {
718 $mapper = $mapperKeysMain = $locations = array();
719 $parserParameters = CRM_Contact_Import_Parser_Contact::getParameterForParser($this->_columnCount);
720
721 $phoneTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Phone', 'phone_type_id');
722 $imProviders = CRM_Core_PseudoConstant::get('CRM_Core_DAO_IM', 'provider_id');
723 $websiteTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Website', 'website_type_id');
724 $locationTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id');
725 $locationTypes['Primary'] = ts('Primary');
726
727 for ($i = 0; $i < $this->_columnCount; $i++) {
728
729 $fldName = CRM_Utils_Array::value(0, $mapperKeys[$i]);
730 $selOne = CRM_Utils_Array::value(1, $mapperKeys[$i]);
731 $selTwo = CRM_Utils_Array::value(2, $mapperKeys[$i]);
732 $selThree = CRM_Utils_Array::value(3, $mapperKeys[$i]);
733 $mapper[$i] = $this->_mapperFields[$mapperKeys[$i][0]];
734 $mapperKeysMain[$i] = $fldName;
735
736 //need to differentiate non location elements.
737 if ($selOne && (is_numeric($selOne) || $selOne === 'Primary')) {
738 if ($fldName == 'url') {
739 $parserParameters['mapperWebsiteType'][$i] = $websiteTypes[$selOne];
740 }
741 else {
742 $locations[$i] = $locationTypes[$selOne];
743 $parserParameters['mapperLocType'][$i] = $selOne;
744 if ($selTwo && is_numeric($selTwo)) {
745 if ($fldName == 'phone') {
746 $parserParameters['mapperPhoneType'][$i] = $phoneTypes[$selTwo];
747 }
748 elseif ($fldName == 'im') {
749 $parserParameters['mapperImProvider'][$i] = $imProviders[$selTwo];
750 }
751 }
752 }
753 }
754
755 //relationship contact mapper info.
756 list($id, $first, $second) = CRM_Utils_System::explode('_', $fldName, 3);
757 if (($first == 'a' && $second == 'b') ||
758 ($first == 'b' && $second == 'a')
759 ) {
760 $parserParameters['mapperRelated'][$i] = $this->_mapperFields[$fldName];
761 if ($selOne) {
762 if ($selOne == 'url') {
763 $parserParameters['relatedContactWebsiteType'][$i] = $websiteTypes[$selTwo];
764 }
765 else {
766 $parserParameters['relatedContactLocType'][$i] = CRM_Utils_Array::value($selTwo, $locationTypes);
767 if ($selThree) {
768 if ($selOne == 'phone') {
769 $parserParameters['relatedContactPhoneType'][$i] = $phoneTypes[$selThree];
770 }
771 elseif ($selOne == 'im') {
772 $parserParameters['relatedContactImProvider'][$i] = $imProviders[$selThree];
773 }
774 }
775 }
776
777 //get the related contact type.
778 $relationType = new CRM_Contact_DAO_RelationshipType();
779 $relationType->id = $id;
780 $relationType->find(TRUE);
781 $parserParameters['relatedContactType'][$i] = $relationType->{"contact_type_$second"};
782 $parserParameters['relatedContactDetails'][$i] = $this->_formattedFieldNames[$parserParameters['relatedContactType'][$i]][$selOne];
783 }
784 }
785 }
786
787 $this->set('columnNames', $this->_columnNames);
788 $this->set('websites', $parserParameters['mapperWebsiteType']);
789 $this->set('locations', $locations);
790 $this->set('phones', $parserParameters['mapperPhoneType']);
791 $this->set('ims', $parserParameters['mapperImProvider']);
792 $this->set('related', $parserParameters['mapperRelated']);
793 $this->set('relatedContactType', $parserParameters['relatedContactType']);
794 $this->set('relatedContactDetails', $parserParameters['relatedContactDetails']);
795 $this->set('relatedContactLocType', $parserParameters['relatedContactLocType']);
796 $this->set('relatedContactPhoneType', $parserParameters['relatedContactPhoneType']);
797 $this->set('relatedContactImProvider', $parserParameters['relatedContactImProvider']);
798 $this->set('relatedContactWebsiteType', $parserParameters['relatedContactWebsiteType']);
799 $this->set('mapper', $mapper);
800
801 // store mapping Id to display it in the preview page
802 $this->set('loadMappingId', CRM_Utils_Array::value('mappingId', $params));
803
804 //Updating Mapping Records
805 if (!empty($params['updateMapping'])) {
806
807 $mappingFields = new CRM_Core_DAO_MappingField();
808 $mappingFields->mapping_id = $params['mappingId'];
809 $mappingFields->find();
810
811 $mappingFieldsId = array();
812 while ($mappingFields->fetch()) {
813 if ($mappingFields->id) {
814 $mappingFieldsId[$mappingFields->column_number] = $mappingFields->id;
815 }
816 }
817
818 for ($i = 0; $i < $this->_columnCount; $i++) {
819 $updateMappingFields = new CRM_Core_DAO_MappingField();
820 $updateMappingFields->id = CRM_Utils_Array::value($i, $mappingFieldsId);
821 $updateMappingFields->mapping_id = $params['mappingId'];
822 $updateMappingFields->column_number = $i;
823
824 $mapperKeyParts = explode('_', $mapperKeys[$i][0], 3);
825 $id = isset($mapperKeyParts[0]) ? $mapperKeyParts[0] : NULL;
826 $first = isset($mapperKeyParts[1]) ? $mapperKeyParts[1] : NULL;
827 $second = isset($mapperKeyParts[2]) ? $mapperKeyParts[2] : NULL;
828 if (($first == 'a' && $second == 'b') || ($first == 'b' && $second == 'a')) {
829 $updateMappingFields->relationship_type_id = $id;
830 $updateMappingFields->relationship_direction = "{$first}_{$second}";
831 $updateMappingFields->name = ucwords(str_replace("_", " ", $mapperKeys[$i][1]));
832 // get phoneType id and provider id separately
833 // before updating mappingFields of phone and IM for related contact, CRM-3140
834 if (CRM_Utils_Array::value('1', $mapperKeys[$i]) == 'url') {
835 $updateMappingFields->website_type_id = isset($mapperKeys[$i][2]) ? $mapperKeys[$i][2] : NULL;
836 }
837 else {
838 if (CRM_Utils_Array::value('1', $mapperKeys[$i]) == 'phone') {
839 $updateMappingFields->phone_type_id = isset($mapperKeys[$i][3]) ? $mapperKeys[$i][3] : NULL;
840 }
841 elseif (CRM_Utils_Array::value('1', $mapperKeys[$i]) == 'im') {
842 $updateMappingFields->im_provider_id = isset($mapperKeys[$i][3]) ? $mapperKeys[$i][3] : NULL;
843 }
844 $updateMappingFields->location_type_id = isset($mapperKeys[$i][2]) ? $mapperKeys[$i][2] : NULL;
845 }
846 }
847 else {
848 $updateMappingFields->name = $mapper[$i];
849 $updateMappingFields->relationship_type_id = 'NULL';
850 $updateMappingFields->relationship_type_direction = 'NULL';
851 // to store phoneType id and provider id separately
852 // before updating mappingFields for phone and IM, CRM-3140
853 if (CRM_Utils_Array::value('0', $mapperKeys[$i]) == 'url') {
854 $updateMappingFields->website_type_id = isset($mapperKeys[$i][1]) ? $mapperKeys[$i][1] : NULL;
855 }
856 else {
857 if (CRM_Utils_Array::value('0', $mapperKeys[$i]) == 'phone') {
858 $updateMappingFields->phone_type_id = isset($mapperKeys[$i][2]) ? $mapperKeys[$i][2] : NULL;
859 }
860 elseif (CRM_Utils_Array::value('0', $mapperKeys[$i]) == 'im') {
861 $updateMappingFields->im_provider_id = isset($mapperKeys[$i][2]) ? $mapperKeys[$i][2] : NULL;
862 }
863 $locationTypeID = $parserParameters['mapperLocType'][$i];
864 // location_type_id is NULL for non-location fields, and for Primary location.
865 $updateMappingFields->location_type_id = is_numeric($locationTypeID) ? $locationTypeID : 'null';
866 }
867 }
868 $updateMappingFields->save();
869 }
870 }
871
872 //Saving Mapping Details and Records
873 if (!empty($params['saveMapping'])) {
874 $mappingParams = array(
875 'name' => $params['saveMappingName'],
876 'description' => $params['saveMappingDesc'],
877 'mapping_type_id' => 'Import Contact',
878 );
879
880 $saveMapping = civicrm_api3('Mapping', 'create', $mappingParams);
881
882 $contactType = $this->get('contactType');
883 switch ($contactType) {
884 case CRM_Import_Parser::CONTACT_INDIVIDUAL:
885 $cType = 'Individual';
886 break;
887
888 case CRM_Import_Parser::CONTACT_HOUSEHOLD:
889 $cType = 'Household';
890 break;
891
892 case CRM_Import_Parser::CONTACT_ORGANIZATION:
893 $cType = 'Organization';
894 }
895
896 for ($i = 0; $i < $this->_columnCount; $i++) {
897 $saveMappingFields = new CRM_Core_DAO_MappingField();
898 $saveMappingFields->mapping_id = $saveMapping['id'];
899 $saveMappingFields->contact_type = $cType;
900 $saveMappingFields->column_number = $i;
901
902 $mapperKeyParts = explode('_', $mapperKeys[$i][0], 3);
903 $id = isset($mapperKeyParts[0]) ? $mapperKeyParts[0] : NULL;
904 $first = isset($mapperKeyParts[1]) ? $mapperKeyParts[1] : NULL;
905 $second = isset($mapperKeyParts[2]) ? $mapperKeyParts[2] : NULL;
906 if (($first == 'a' && $second == 'b') || ($first == 'b' && $second == 'a')) {
907 $saveMappingFields->name = ucwords(str_replace("_", " ", $mapperKeys[$i][1]));
908 $saveMappingFields->relationship_type_id = $id;
909 $saveMappingFields->relationship_direction = "{$first}_{$second}";
910 // to get phoneType id and provider id separately
911 // before saving mappingFields of phone and IM for related contact, CRM-3140
912 if (CRM_Utils_Array::value('1', $mapperKeys[$i]) == 'url') {
913 $saveMappingFields->website_type_id = isset($mapperKeys[$i][2]) ? $mapperKeys[$i][2] : NULL;
914 }
915 else {
916 if (CRM_Utils_Array::value('1', $mapperKeys[$i]) == 'phone') {
917 $saveMappingFields->phone_type_id = isset($mapperKeys[$i][3]) ? $mapperKeys[$i][3] : NULL;
918 }
919 elseif (CRM_Utils_Array::value('1', $mapperKeys[$i]) == 'im') {
920 $saveMappingFields->im_provider_id = isset($mapperKeys[$i][3]) ? $mapperKeys[$i][3] : NULL;
921 }
922 $saveMappingFields->location_type_id = (isset($mapperKeys[$i][2]) && $mapperKeys[$i][2] !== 'Primary') ? $mapperKeys[$i][2] : NULL;
923 }
924 }
925 else {
926 $saveMappingFields->name = $mapper[$i];
927 $locationTypeID = $parserParameters['mapperLocType'][$i];
928 // to get phoneType id and provider id separately
929 // before saving mappingFields of phone and IM, CRM-3140
930 if (CRM_Utils_Array::value('0', $mapperKeys[$i]) == 'url') {
931 $saveMappingFields->website_type_id = isset($mapperKeys[$i][1]) ? $mapperKeys[$i][1] : NULL;
932 }
933 else {
934 if (CRM_Utils_Array::value('0', $mapperKeys[$i]) == 'phone') {
935 $saveMappingFields->phone_type_id = isset($mapperKeys[$i][2]) ? $mapperKeys[$i][2] : NULL;
936 }
937 elseif (CRM_Utils_Array::value('0', $mapperKeys[$i]) == 'im') {
938 $saveMappingFields->im_provider_id = isset($mapperKeys[$i][2]) ? $mapperKeys[$i][2] : NULL;
939 }
940 $saveMappingFields->location_type_id = is_numeric($locationTypeID) ? $locationTypeID : NULL;
941 }
942 $saveMappingFields->relationship_type_id = NULL;
943 }
944 $saveMappingFields->save();
945 }
946 $this->set('savedMapping', $saveMappingFields->mapping_id);
947 }
948
949 $parser = new CRM_Contact_Import_Parser_Contact($mapperKeysMain, $parserParameters['mapperLocType'], $parserParameters['mapperPhoneType'],
950 $parserParameters['mapperImProvider'], $parserParameters['mapperRelated'], $parserParameters['relatedContactType'],
951 $parserParameters['relatedContactDetails'], $parserParameters['relatedContactLocType'],
952 $parserParameters['relatedContactPhoneType'], $parserParameters['relatedContactImProvider'],
953 $parserParameters['mapperWebsiteType'], $parserParameters['relatedContactWebsiteType']
954 );
955
956 $primaryKeyName = $this->get('primaryKeyName');
957 $statusFieldName = $this->get('statusFieldName');
958 $parser->run($this->_importTableName,
959 $mapper,
960 CRM_Import_Parser::MODE_PREVIEW,
961 $this->get('contactType'),
962 $primaryKeyName,
963 $statusFieldName,
964 $this->_onDuplicate,
965 NULL, NULL, FALSE,
966 CRM_Contact_Import_Parser::DEFAULT_TIMEOUT,
967 $this->get('contactSubType'),
968 $this->get('dedupe')
969 );
970 return $parser;
971 }
972
973 }