Merge pull request #22805 from braders/permission_denied_wordpress_improvement-altern...
[civicrm-core.git] / CRM / Member / Import / Form / MapField.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * This class gets the name of the file to upload
20 */
21 class CRM_Member_Import_Form_MapField extends CRM_Import_Form_MapField {
22
23
24 /**
25 * store contactType.
26 *
27 * @var int
28 */
29 public static $_contactType = NULL;
30
31 /**
32 * Set variables up before form is built.
33 *
34 * @return void
35 */
36 public function preProcess() {
37 $this->_mapperFields = $this->get('fields');
38 asort($this->_mapperFields);
39
40 $this->_columnCount = $this->get('columnCount');
41 $this->assign('columnCount', $this->_columnCount);
42 $this->_dataValues = $this->get('dataValues');
43 $this->assign('dataValues', $this->_dataValues);
44
45 $skipColumnHeader = $this->controller->exportValue('DataSource', 'skipColumnHeader');
46 $this->_onDuplicate = $this->get('onDuplicate', $onDuplicate ?? "");
47
48 $highlightedFields = [];
49 if ($skipColumnHeader) {
50 $this->assign('skipColumnHeader', $skipColumnHeader);
51 $this->assign('rowDisplayCount', 3);
52 /* if we had a column header to skip, stash it for later */
53
54 $this->_columnHeaders = $this->_dataValues[0];
55 }
56 else {
57 $this->assign('rowDisplayCount', 2);
58 }
59
60 //CRM-2219 removing other required fields since for updation only
61 //membership id is required.
62 if ($this->_onDuplicate == CRM_Import_Parser::DUPLICATE_UPDATE) {
63 $remove = array('membership_contact_id', 'email', 'first_name', 'last_name', 'external_identifier');
64 foreach ($remove as $value) {
65 unset($this->_mapperFields[$value]);
66 }
67 $highlightedFieldsArray = array('membership_id', 'membership_start_date', 'membership_type_id');
68 foreach ($highlightedFieldsArray as $name) {
69 $highlightedFields[] = $name;
70 }
71 }
72 elseif ($this->_onDuplicate == CRM_Import_Parser::DUPLICATE_SKIP) {
73 unset($this->_mapperFields['membership_id']);
74 $highlightedFieldsArray = array(
75 'membership_contact_id',
76 'email',
77 'external_identifier',
78 'membership_start_date',
79 'membership_type_id',
80 );
81 foreach ($highlightedFieldsArray as $name) {
82 $highlightedFields[] = $name;
83 }
84 }
85
86 // modify field title
87 $this->_mapperFields['status_id'] = ts('Membership Status');
88 $this->_mapperFields['membership_type_id'] = ts('Membership Type');
89
90 self::$_contactType = $this->get('contactType');
91 $this->assign('highlightedFields', $highlightedFields);
92 }
93
94 /**
95 * Build the form object.
96 *
97 * @return void
98 */
99 public function buildQuickForm() {
100 //to save the current mappings
101 if (!$this->get('savedMapping')) {
102 $saveDetailsName = ts('Save this field mapping');
103 $this->applyFilter('saveMappingName', 'trim');
104 $this->add('text', 'saveMappingName', ts('Name'));
105 $this->add('text', 'saveMappingDesc', ts('Description'));
106 }
107 else {
108 $savedMapping = $this->get('savedMapping');
109
110 list($mappingName, $mappingContactType, $mappingLocation, $mappingPhoneType, $mappingRelation) = CRM_Core_BAO_Mapping::getMappingFields($savedMapping);
111
112 $mappingName = $mappingName[1];
113 $mappingContactType = $mappingContactType[1];
114 $mappingLocation = $mappingLocation['1'] ?? NULL;
115 $mappingPhoneType = $mappingPhoneType['1'] ?? NULL;
116 $mappingRelation = $mappingRelation['1'] ?? NULL;
117
118 //mapping is to be loaded from database
119
120 $this->set('loadedMapping', $savedMapping);
121
122 $getMappingName = new CRM_Core_DAO_Mapping();
123 $getMappingName->id = $savedMapping;
124 $getMappingName->mapping_type = 'Import Memberships';
125 $getMappingName->find();
126 while ($getMappingName->fetch()) {
127 $mapperName = $getMappingName->name;
128 }
129
130 $this->assign('savedMappingName', $mapperName);
131
132 $this->add('hidden', 'mappingId', $savedMapping);
133
134 $this->addElement('checkbox', 'updateMapping', ts('Update this field mapping'), NULL);
135 $saveDetailsName = ts('Save as a new field mapping');
136 $this->add('text', 'saveMappingName', ts('Name'));
137 $this->add('text', 'saveMappingDesc', ts('Description'));
138 }
139
140 $this->addElement('checkbox', 'saveMapping', $saveDetailsName, NULL, array('onclick' => "showSaveDetails(this)"));
141
142 $this->addFormRule(array('CRM_Member_Import_Form_MapField', 'formRule'), $this);
143
144 //-------- end of saved mapping stuff ---------
145
146 $defaults = [];
147 $mapperKeys = array_keys($this->_mapperFields);
148 $hasHeaders = !empty($this->_columnHeaders);
149 $headerPatterns = $this->get('headerPatterns');
150 $dataPatterns = $this->get('dataPatterns');
151 $hasLocationTypes = $this->get('fieldTypes');
152
153 /* Initialize all field usages to false */
154
155 foreach ($mapperKeys as $key) {
156 $this->_fieldUsed[$key] = FALSE;
157 }
158 $this->_location_types = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id');
159 $sel1 = $this->_mapperFields;
160 if (!$this->get('onDuplicate')) {
161 unset($sel1['id']);
162 unset($sel1['membership_id']);
163 }
164
165 $sel2[''] = NULL;
166
167 $js = "<script type='text/javascript'>\n";
168 $formName = 'document.forms.' . $this->_name;
169
170 //used to warn for mismatch column count or mismatch mapping
171 $warning = 0;
172
173 for ($i = 0; $i < $this->_columnCount; $i++) {
174 $sel = &$this->addElement('hierselect', "mapper[$i]", ts('Mapper for Field %1', array(1 => $i)), NULL);
175 $jsSet = FALSE;
176 if ($this->get('savedMapping')) {
177 if (isset($mappingName[$i])) {
178 if ($mappingName[$i] != ts('- do not import -')) {
179
180 $mappingHeader = array_keys($this->_mapperFields, $mappingName[$i]);
181
182 //When locationType is not set
183 $js .= "{$formName}['mapper[$i][1]'].style.display = 'none';\n";
184
185 //When phoneType is not set
186 $js .= "{$formName}['mapper[$i][2]'].style.display = 'none';\n";
187
188 $js .= "{$formName}['mapper[$i][3]'].style.display = 'none';\n";
189
190 $defaults["mapper[$i]"] = array($mappingHeader[0]);
191 $jsSet = TRUE;
192 }
193 else {
194 $defaults["mapper[$i]"] = [];
195 }
196 if (!$jsSet) {
197 for ($k = 1; $k < 4; $k++) {
198 $js .= "{$formName}['mapper[$i][$k]'].style.display = 'none';\n";
199 }
200 }
201 }
202 else {
203 // this load section to help mapping if we ran out of saved columns when doing Load Mapping
204 $js .= "swapOptions($formName, 'mapper[$i]', 0, 3, 'hs_mapper_" . $i . "_');\n";
205
206 if ($hasHeaders) {
207 $defaults["mapper[$i]"] = array($this->defaultFromHeader($this->_columnHeaders[$i], $headerPatterns));
208 }
209 else {
210 $defaults["mapper[$i]"] = array($this->defaultFromData($dataPatterns, $i));
211 }
212 }
213 //end of load mapping
214 }
215 else {
216 $js .= "swapOptions($formName, 'mapper[$i]', 0, 3, 'hs_mapper_" . $i . "_');\n";
217 if ($hasHeaders) {
218 // Infer the default from the skipped headers if we have them
219 $defaults["mapper[$i]"] = array(
220 $this->defaultFromHeader($this->_columnHeaders[$i],
221 $headerPatterns
222 ),
223 // $defaultLocationType->id
224 0,
225 );
226 }
227 else {
228 // Otherwise guess the default from the form of the data
229 $defaults["mapper[$i]"] = array(
230 $this->defaultFromData($dataPatterns, $i),
231 // $defaultLocationType->id
232 0,
233 );
234 }
235 }
236 $sel->setOptions(array($sel1, $sel2, (isset($sel3)) ? $sel3 : "", (isset($sel4)) ? $sel4 : ""));
237 }
238 $js .= "</script>\n";
239 $this->assign('initHideBoxes', $js);
240
241 //set warning if mismatch in more than
242 if (isset($mappingName)) {
243 if (($this->_columnCount != count($mappingName))) {
244 $warning++;
245 }
246 }
247 if ($warning != 0 && $this->get('savedMapping')) {
248 $session = CRM_Core_Session::singleton();
249 $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.'));
250 }
251 else {
252 $session = CRM_Core_Session::singleton();
253 $session->setStatus(NULL);
254 }
255
256 $this->setDefaults($defaults);
257
258 $this->addButtons(array(
259 array(
260 'type' => 'back',
261 'name' => ts('Previous'),
262 ),
263 array(
264 'type' => 'next',
265 'name' => ts('Continue'),
266 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
267 'isDefault' => TRUE,
268 ),
269 array(
270 'type' => 'cancel',
271 'name' => ts('Cancel'),
272 ),
273 ));
274 }
275
276 /**
277 * Global validation rules for the form.
278 *
279 * @param array $fields
280 * Posted values of the form.
281 *
282 * @param $files
283 * @param self $self
284 *
285 * @return array
286 * list of errors to be posted back to the form
287 */
288 public static function formRule($fields, $files, $self) {
289 $errors = [];
290
291 if (!array_key_exists('savedMapping', $fields)) {
292 $importKeys = [];
293 foreach ($fields['mapper'] as $mapperPart) {
294 $importKeys[] = $mapperPart[0];
295 }
296 // FIXME: should use the schema titles, not redeclare them
297 $requiredFields = array(
298 'membership_contact_id' => ts('Contact ID'),
299 'membership_type_id' => ts('Membership Type'),
300 'membership_start_date' => ts('Membership Start Date'),
301 );
302
303 $contactTypeId = $self->get('contactType');
304 $contactTypes = array(
305 CRM_Import_Parser::CONTACT_INDIVIDUAL => 'Individual',
306 CRM_Import_Parser::CONTACT_HOUSEHOLD => 'Household',
307 CRM_Import_Parser::CONTACT_ORGANIZATION => 'Organization',
308 );
309 $params = array(
310 'used' => 'Unsupervised',
311 'contact_type' => $contactTypes[$contactTypeId],
312 );
313 list($ruleFields, $threshold) = CRM_Dedupe_BAO_DedupeRuleGroup::dedupeRuleFieldsWeight($params);
314 $weightSum = 0;
315 foreach ($importKeys as $key => $val) {
316 if (array_key_exists($val, $ruleFields)) {
317 $weightSum += $ruleFields[$val];
318 }
319 }
320 $fieldMessage = '';
321 foreach ($ruleFields as $field => $weight) {
322 $fieldMessage .= ' ' . $field . '(weight ' . $weight . ')';
323 }
324
325 foreach ($requiredFields as $field => $title) {
326 if (!in_array($field, $importKeys)) {
327 if ($field == 'membership_contact_id') {
328 if ((($weightSum >= $threshold || in_array('external_identifier', $importKeys)) &&
329 $self->_onDuplicate != CRM_Import_Parser::DUPLICATE_UPDATE
330 ) ||
331 in_array('membership_id', $importKeys)
332 ) {
333 continue;
334 }
335 else {
336 if (!isset($errors['_qf_default'])) {
337 $errors['_qf_default'] = '';
338 }
339 $errors['_qf_default'] .= ts('Missing required contact matching fields.') . " $fieldMessage " . ts('(Sum of all weights should be greater than or equal to threshold: %1).', array(
340 1 => $threshold,
341 )) . ' ' . ts('(OR Membership ID if update mode.)') . '<br />';
342 }
343 }
344 else {
345 if (!isset($errors['_qf_default'])) {
346 $errors['_qf_default'] = '';
347 }
348 $errors['_qf_default'] .= ts('Missing required field: %1', array(
349 1 => $title,
350 )) . '<br />';
351 }
352 }
353 }
354 }
355
356 if (!empty($fields['saveMapping'])) {
357 $nameField = $fields['saveMappingName'] ?? NULL;
358 if (empty($nameField)) {
359 $errors['saveMappingName'] = ts('Name is required to save Import Mapping');
360 }
361 else {
362 if (CRM_Core_BAO_Mapping::checkMapping($nameField, CRM_Core_PseudoConstant::getKey('CRM_Core_BAO_Mapping', 'mapping_type_id', 'Import Membership'))) {
363 $errors['saveMappingName'] = ts('Duplicate Import Membership Mapping Name');
364 }
365 }
366 }
367
368 if (!empty($errors)) {
369 if (!empty($errors['saveMappingName'])) {
370 $_flag = 1;
371 $assignError = new CRM_Core_Page();
372 $assignError->assign('mappingDetailsError', $_flag);
373 }
374 return $errors;
375 }
376
377 return TRUE;
378 }
379
380 /**
381 * Process the mapped fields and map it into the uploaded file
382 * preview the file and extract some summary statistics
383 *
384 * @return void
385 */
386 public function postProcess() {
387 $params = $this->controller->exportValues('MapField');
388 //reload the mapfield if load mapping is pressed
389 if (!empty($params['savedMapping'])) {
390 $this->set('savedMapping', $params['savedMapping']);
391 $this->controller->resetPage($this->_name);
392 return;
393 }
394
395 $mapperKeys = [];
396 $mapper = [];
397 $mapperKeys = $this->controller->exportValue($this->_name, 'mapper');
398 $mapperKeysMain = [];
399 $mapperLocType = [];
400 $mapperPhoneType = [];
401
402 for ($i = 0; $i < $this->_columnCount; $i++) {
403 $mapper[$i] = $this->_mapperFields[$mapperKeys[$i][0]];
404 $mapperKeysMain[$i] = $mapperKeys[$i][0];
405
406 if (!empty($mapperKeys[$i][1]) && is_numeric($mapperKeys[$i][1])) {
407 $mapperLocType[$i] = $mapperKeys[$i][1];
408 }
409 else {
410 $mapperLocType[$i] = NULL;
411 }
412
413 if (!empty($mapperKeys[$i][2]) && (!is_numeric($mapperKeys[$i][2]))) {
414 $mapperPhoneType[$i] = $mapperKeys[$i][2];
415 }
416 else {
417 $mapperPhoneType[$i] = NULL;
418 }
419 }
420
421 $this->set('mapper', $mapper);
422
423 // store mapping Id to display it in the preview page
424 if (!empty($params['mappingId'])) {
425 $this->set('loadMappingId', $params['mappingId']);
426 }
427 //Updating Mapping Records
428 if (!empty($params['updateMapping'])) {
429 $mappingFields = new CRM_Core_DAO_MappingField();
430 $mappingFields->mapping_id = $params['mappingId'];
431 $mappingFields->find();
432
433 $mappingFieldsId = [];
434 while ($mappingFields->fetch()) {
435 if ($mappingFields->id) {
436 $mappingFieldsId[$mappingFields->column_number] = $mappingFields->id;
437 }
438 }
439
440 for ($i = 0; $i < $this->_columnCount; $i++) {
441 $updateMappingFields = new CRM_Core_DAO_MappingField();
442 $updateMappingFields->id = $mappingFieldsId[$i];
443 $updateMappingFields->mapping_id = $params['mappingId'];
444 $updateMappingFields->column_number = $i;
445 $updateMappingFields->name = $mapper[$i];
446 $updateMappingFields->save();
447 }
448 }
449
450 //Saving Mapping Details and Records
451 if (!empty($params['saveMapping'])) {
452 $mappingParams = array(
453 'name' => $params['saveMappingName'],
454 'description' => $params['saveMappingDesc'],
455 'mapping_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Core_BAO_Mapping', 'mapping_type_id', 'Import Membership'),
456 );
457 $saveMapping = CRM_Core_BAO_Mapping::add($mappingParams);
458
459 for ($i = 0; $i < $this->_columnCount; $i++) {
460
461 $saveMappingFields = new CRM_Core_DAO_MappingField();
462 $saveMappingFields->mapping_id = $saveMapping->id;
463 $saveMappingFields->column_number = $i;
464 $saveMappingFields->name = $mapper[$i];
465 $saveMappingFields->save();
466 }
467 $this->set('savedMapping', $saveMappingFields->mapping_id);
468 }
469
470 $parser = new CRM_Member_Import_Parser_Membership($mapperKeysMain, $mapperLocType, $mapperPhoneType);
471 $parser->run($this->getSubmittedValue('uploadFile'), $this->getSubmittedValue('fieldSeparator'), $mapper, $this->getSubmittedValue('skipColumnHeader'),
472 CRM_Import_Parser::MODE_PREVIEW, $this->get('contactType')
473 );
474 // add all the necessary variables to the form
475 $parser->set($this);
476 }
477
478 }