fix header
[civicrm-core.git] / CRM / Member / Import / Form / Preview.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class previews the uploaded file and returns summary
38 * statistics
39 */
f532671f 40class CRM_Member_Import_Form_Preview extends CRM_Import_Form_Preview {
6a488035
TO
41
42 /**
fe482240 43 * Set variables up before form is built.
6a488035
TO
44 *
45 * @return void
6a488035
TO
46 */
47 public function preProcess() {
de7b9b56 48 $skipColumnHeader = $this->controller->exportValue('DataSource', 'skipColumnHeader');
6a488035
TO
49
50 //get the data from the session
353ffa53
TO
51 $dataValues = $this->get('dataValues');
52 $mapper = $this->get('mapper');
53 $invalidRowCount = $this->get('invalidRowCount');
6a488035 54 $conflictRowCount = $this->get('conflictRowCount');
353ffa53 55 $mismatchCount = $this->get('unMatchCount');
6a488035
TO
56
57 //get the mapping name displayed if the mappingId is set
58 $mappingId = $this->get('loadMappingId');
59 if ($mappingId) {
60 $mapDAO = new CRM_Core_DAO_Mapping();
61 $mapDAO->id = $mappingId;
62 $mapDAO->find(TRUE);
63 $this->assign('loadedMapping', $mappingId);
64 $this->assign('savedName', $mapDAO->name);
65 }
66
67 if ($skipColumnHeader) {
68 $this->assign('skipColumnHeader', $skipColumnHeader);
69 $this->assign('rowDisplayCount', 3);
70 }
71 else {
72 $this->assign('rowDisplayCount', 2);
73 }
74
75 if ($invalidRowCount) {
a05662ef 76 $urlParams = 'type=' . CRM_Import_Parser::ERROR . '&parser=CRM_Member_Import_Parser';
6a488035
TO
77 $this->set('downloadErrorRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
78 }
79
80 if ($conflictRowCount) {
a05662ef 81 $urlParams = 'type=' . CRM_Import_Parser::CONFLICT . '&parser=CRM_Member_Import_Parser';
6a488035
TO
82 $this->set('downloadConflictRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
83 }
84
85 if ($mismatchCount) {
a05662ef 86 $urlParams = 'type=' . CRM_Import_Parser::NO_MATCH . '&parser=CRM_Member_Import_Parser';
6a488035
TO
87 $this->set('downloadMismatchRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
88 }
89
90 $properties = array(
91 'mapper',
353ffa53
TO
92 'dataValues',
93 'columnCount',
94 'totalRowCount',
95 'validRowCount',
96 'invalidRowCount',
97 'conflictRowCount',
6a488035
TO
98 'downloadErrorRecordsUrl',
99 'downloadConflictRecordsUrl',
100 'downloadMismatchRecordsUrl',
101 );
8cebffb2 102 $this->setStatusUrl();
6a488035
TO
103
104 foreach ($properties as $property) {
105 $this->assign($property, $this->get($property));
106 }
107 }
108
6a488035
TO
109 /**
110 * Process the mapped fields and map it into the uploaded file
111 * preview the file and extract some summary statistics
112 *
113 * @return void
6a488035
TO
114 */
115 public function postProcess() {
353ffa53 116 $fileName = $this->controller->exportValue('DataSource', 'uploadFile');
063338e5 117 $seperator = $this->controller->exportValue('DataSource', 'fieldSeparator');
de7b9b56 118 $skipColumnHeader = $this->controller->exportValue('DataSource', 'skipColumnHeader');
353ffa53 119 $invalidRowCount = $this->get('invalidRowCount');
6a488035 120 $conflictRowCount = $this->get('conflictRowCount');
353ffa53 121 $onDuplicate = $this->get('onDuplicate');
6a488035 122
6a488035
TO
123 $mapper = $this->controller->exportValue('MapField', 'mapper');
124 $mapperKeys = array();
125 $mapperLocType = array();
126 $mapperPhoneType = array();
127 // Note: we keep the multi-dimension array (even thought it's not
128 // needed in the case of memberships import) so that we can merge
129 // the common code with contacts import later and subclass contact
130 // and membership imports from there
131 foreach ($mapper as $key => $value) {
132 $mapperKeys[$key] = $mapper[$key][0];
133
a7488080 134 if (!empty($mapper[$key][1]) && is_numeric($mapper[$key][1])) {
6a488035
TO
135 $mapperLocType[$key] = $mapper[$key][1];
136 }
137 else {
138 $mapperLocType[$key] = NULL;
139 }
140
a7488080 141 if (!empty($mapper[$key][2]) && (!is_numeric($mapper[$key][2]))) {
6a488035
TO
142 $mapperPhoneType[$key] = $mapper[$key][2];
143 }
144 else {
145 $mapperPhoneType[$key] = NULL;
146 }
147 }
148
149 $parser = new CRM_Member_Import_Parser_Membership($mapperKeys, $mapperLocType, $mapperPhoneType);
150
151 $mapFields = $this->get('fields');
152
153 foreach ($mapper as $key => $value) {
154 $header = array();
155 if (isset($mapFields[$mapper[$key][0]])) {
156 $header[] = $mapFields[$mapper[$key][0]];
157 }
158 $mapperFields[] = implode(' - ', $header);
159 }
160 $parser->run($fileName, $seperator,
161 $mapperFields,
162 $skipColumnHeader,
a05662ef 163 CRM_Import_Parser::MODE_IMPORT,
6a488035 164 $this->get('contactType'),
8cebffb2
JP
165 $onDuplicate,
166 $this->get('statusID'),
167 $this->get('totalRowCount')
6a488035
TO
168 );
169
170 // add all the necessary variables to the form
a05662ef 171 $parser->set($this, CRM_Import_Parser::MODE_IMPORT);
6a488035 172
b44e3f84 173 // check if there is any error occurred
6a488035
TO
174 $errorStack = CRM_Core_Error::singleton();
175 $errors = $errorStack->getErrors();
176 $errorMessage = array();
177
178 if (is_array($errors)) {
179 foreach ($errors as $key => $value) {
180 $errorMessage[] = $value['message'];
181 }
182
183 $errorFile = $fileName['name'] . '.error.log';
184
185 if ($fd = fopen($errorFile, 'w')) {
186 fwrite($fd, implode('\n', $errorMessage));
187 }
188 fclose($fd);
189
190 $this->set('errorFile', $errorFile);
a05662ef 191 $urlParams = 'type=' . CRM_Import_Parser::ERROR . '&parser=CRM_Member_Import_Parser';
6a488035 192 $this->set('downloadErrorRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
a05662ef 193 $urlParams = 'type=' . CRM_Import_Parser::CONFLICT . '&parser=CRM_Member_Import_Parser';
6a488035 194 $this->set('downloadConflictRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
a05662ef 195 $urlParams = 'type=' . CRM_Import_Parser::NO_MATCH . '&parser=CRM_Member_Import_Parser';
6a488035
TO
196 $this->set('downloadMismatchRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
197 }
198 }
96025800 199
6a488035 200}