CRM-19192 - Event participant (and possibly other entity) imports do not handle ...
[civicrm-core.git] / CRM / Activity / Import / Form / Preview.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 */
33
34/**
b6c94f42 35 * This class previews the uploaded file and returns summary statistics.
6a488035 36 */
f532671f 37class CRM_Activity_Import_Form_Preview extends CRM_Import_Form_Preview {
6a488035
TO
38
39 /**
fe482240 40 * Set variables up before form is built.
6a488035
TO
41 */
42 public function preProcess() {
de7b9b56 43 $skipColumnHeader = $this->controller->exportValue('DataSource', 'skipColumnHeader');
6a488035 44
7808aae6 45 // Get the data from the session.
353ffa53
TO
46 $dataValues = $this->get('dataValues');
47 $mapper = $this->get('mapper');
48 $invalidRowCount = $this->get('invalidRowCount');
6a488035 49 $conflictRowCount = $this->get('conflictRowCount');
353ffa53 50 $mismatchCount = $this->get('unMatchCount');
6a488035 51
7808aae6 52 // Get the mapping name displayed if the mappingId is set.
6a488035
TO
53 $mappingId = $this->get('loadMappingId');
54 if ($mappingId) {
55 $mapDAO = new CRM_Core_DAO_Mapping();
56 $mapDAO->id = $mappingId;
57 $mapDAO->find(TRUE);
58 $this->assign('loadedMapping', $mappingId);
59 $this->assign('savedName', $mapDAO->name);
60 }
61
62 if ($skipColumnHeader) {
63 $this->assign('skipColumnHeader', $skipColumnHeader);
64 $this->assign('rowDisplayCount', 3);
65 }
66 else {
67 $this->assign('rowDisplayCount', 2);
68 }
69
70 if ($invalidRowCount) {
a05662ef 71 $urlParams = 'type=' . CRM_Import_Parser::ERROR . '&parser=CRM_Activity_Import_Parser';
6a488035
TO
72 $this->set('downloadErrorRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
73 }
74
75 if ($conflictRowCount) {
a05662ef 76 $urlParams = 'type=' . CRM_Import_Parser::CONFLICT . '&parser=CRM_Activity_Import_Parser';
6a488035
TO
77 $this->set('downloadConflictRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
78 }
79
80 if ($mismatchCount) {
a05662ef 81 $urlParams = 'type=' . CRM_Import_Parser::NO_MATCH . '&parser=CRM_Activity_Import_Parser';
6a488035
TO
82 $this->set('downloadMismatchRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
83 }
84
85 $properties = array(
86 'mapper',
353ffa53
TO
87 'dataValues',
88 'columnCount',
89 'totalRowCount',
90 'validRowCount',
91 'invalidRowCount',
92 'conflictRowCount',
6a488035
TO
93 'downloadErrorRecordsUrl',
94 'downloadConflictRecordsUrl',
95 'downloadMismatchRecordsUrl',
96 );
97
98 foreach ($properties as $property) {
99 $this->assign($property, $this->get($property));
100 }
101 }
102
6a488035 103 /**
fe482240 104 * Process the mapped fields and map it into the uploaded file.
6a488035 105 *
b6c94f42 106 * Preview the file and extract some summary statistics
6a488035
TO
107 */
108 public function postProcess() {
353ffa53 109 $fileName = $this->controller->exportValue('DataSource', 'uploadFile');
de7b9b56 110 $skipColumnHeader = $this->controller->exportValue('DataSource', 'skipColumnHeader');
353ffa53 111 $invalidRowCount = $this->get('invalidRowCount');
6a488035 112 $conflictRowCount = $this->get('conflictRowCount');
353ffa53 113 $onDuplicate = $this->get('onDuplicate');
6a488035
TO
114
115 $config = CRM_Core_Config::singleton();
116 $seperator = $config->fieldSeparator;
117
118 $mapper = $this->controller->exportValue('MapField', 'mapper');
119 $mapperKeys = array();
120 $mapperLocType = array();
121 $mapperPhoneType = array();
122
123 foreach ($mapper as $key => $value) {
124 $mapperKeys[$key] = $mapper[$key][0];
125
a7488080 126 if (!empty($mapper[$key][1]) && is_numeric($mapper[$key][1])) {
6a488035
TO
127 $mapperLocType[$key] = $mapper[$key][1];
128 }
129 else {
130 $mapperLocType[$key] = NULL;
131 }
132
a7488080 133 if (!empty($mapper[$key][2]) && (!is_numeric($mapper[$key][2]))) {
6a488035
TO
134 $mapperPhoneType[$key] = $mapper[$key][2];
135 }
136 else {
137 $mapperPhoneType[$key] = NULL;
138 }
139 }
140
141 $parser = new CRM_Activity_Import_Parser_Activity($mapperKeys, $mapperLocType, $mapperPhoneType);
142
143 $mapFields = $this->get('fields');
144
145 foreach ($mapper as $key => $value) {
146 $header = array();
147 if (isset($mapFields[$mapper[$key][0]])) {
148 $header[] = $mapFields[$mapper[$key][0]];
149 }
150 $mapperFields[] = implode(' - ', $header);
151 }
152 $parser->run($fileName, $seperator,
153 $mapperFields,
154 $skipColumnHeader,
a05662ef 155 CRM_Import_Parser::MODE_IMPORT,
6a488035
TO
156 $onDuplicate
157 );
158
159 // add all the necessary variables to the form
a05662ef 160 $parser->set($this, CRM_Import_Parser::MODE_IMPORT);
6a488035 161
b44e3f84 162 // check if there is any error occurred
6a488035
TO
163
164 $errorStack = CRM_Core_Error::singleton();
165 $errors = $errorStack->getErrors();
166 $errorMessage = array();
167
168 if (is_array($errors)) {
169 foreach ($errors as $key => $value) {
170 $errorMessage[] = $value['message'];
171 }
172
173 $errorFile = $fileName['name'] . '.error.log';
174
175 if ($fd = fopen($errorFile, 'w')) {
176 fwrite($fd, implode('\n', $errorMessage));
177 }
178 fclose($fd);
179
180 $this->set('errorFile', $errorFile);
a05662ef 181 $urlParams = 'type=' . CRM_Import_Parser::ERROR . '&parser=CRM_Activity_Import_Parser';
6a488035 182 $this->set('downloadErrorRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
a05662ef 183 $urlParams = 'type=' . CRM_Import_Parser::CONFLICT . '&parser=CRM_Activity_Import_Parser';
6a488035 184 $this->set('downloadConflictRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
a05662ef 185 $urlParams = 'type=' . CRM_Import_Parser::NO_MATCH . '&parser=CRM_Activity_Import_Parser';
6a488035
TO
186 $this->set('downloadMismatchRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
187 }
188 }
96025800 189
6a488035 190}