INFRA-132 - CRM/Contribute - phpcbf
[civicrm-core.git] / CRM / Contribute / Import / Form / Preview.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * This class previews the uploaded file and returns summary
38 * statistics
39 */
40 class CRM_Contribute_Import_Form_Preview extends CRM_Import_Form_Preview {
41
42 /**
43 * Set variables up before form is built
44 *
45 * @return void
46 */
47 public function preProcess() {
48 $skipColumnHeader = $this->controller->exportValue('DataSource', 'skipColumnHeader');
49
50 //get the data from the session
51 $dataValues = $this->get('dataValues');
52 $mapper = $this->get('mapper');
53 $softCreditFields = $this->get('softCreditFields');
54 $mapperSoftCreditType = $this->get('mapperSoftCreditType');
55 $invalidRowCount = $this->get('invalidRowCount');
56 $conflictRowCount = $this->get('conflictRowCount');
57 $mismatchCount = $this->get('unMatchCount');
58
59 //get the mapping name displayed if the mappingId is set
60 $mappingId = $this->get('loadMappingId');
61 if ($mappingId) {
62 $mapDAO = new CRM_Core_DAO_Mapping();
63 $mapDAO->id = $mappingId;
64 $mapDAO->find(TRUE);
65 $this->assign('loadedMapping', $mappingId);
66 $this->assign('savedName', $mapDAO->name);
67 }
68
69 if ($skipColumnHeader) {
70 $this->assign('skipColumnHeader', $skipColumnHeader);
71 $this->assign('rowDisplayCount', 3);
72 }
73 else {
74 $this->assign('rowDisplayCount', 2);
75 }
76
77 if ($invalidRowCount) {
78 $urlParams = 'type=' . CRM_Import_Parser::ERROR . '&parser=CRM_Contribute_Import_Parser';
79 $this->set('downloadErrorRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
80 }
81
82 if ($conflictRowCount) {
83 $urlParams = 'type=' . CRM_Import_Parser::CONFLICT . '&parser=CRM_Contribute_Import_Parser';
84 $this->set('downloadConflictRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
85 }
86
87 if ($mismatchCount) {
88 $urlParams = 'type=' . CRM_Import_Parser::NO_MATCH . '&parser=CRM_Contribute_Import_Parser';
89 $this->set('downloadMismatchRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
90 }
91
92 $properties = array(
93 'mapper', 'softCreditFields',
94 'mapperSoftCreditType',
95 'dataValues', 'columnCount',
96 'totalRowCount', 'validRowCount',
97 'invalidRowCount', 'conflictRowCount',
98 'downloadErrorRecordsUrl',
99 'downloadConflictRecordsUrl',
100 'downloadMismatchRecordsUrl',
101 );
102
103 foreach ($properties as $property) {
104 $this->assign($property, $this->get($property));
105 }
106 }
107
108 /**
109 * Process the mapped fields and map it into the uploaded file
110 * preview the file and extract some summary statistics
111 *
112 * @return void
113 */
114 public function postProcess() {
115 $fileName = $this->controller->exportValue('DataSource', 'uploadFile');
116 $skipColumnHeader = $this->controller->exportValue('DataSource', 'skipColumnHeader');
117 $invalidRowCount = $this->get('invalidRowCount');
118 $conflictRowCount = $this->get('conflictRowCount');
119 $onDuplicate = $this->get('onDuplicate');
120 $mapperSoftCreditType = $this->get('mapperSoftCreditType');
121
122 $config = CRM_Core_Config::singleton();
123 $seperator = $config->fieldSeparator;
124
125 $mapper = $this->controller->exportValue('MapField', 'mapper');
126 $mapperKeys = array();
127 $mapperSoftCredit = array();
128 $mapperPhoneType = array();
129
130 foreach ($mapper as $key => $value) {
131 $mapperKeys[$key] = $mapper[$key][0];
132 if (isset($mapper[$key][0]) && $mapper[$key][0] == 'soft_credit' && isset($mapper[$key])) {
133 $mapperSoftCredit[$key] = isset($mapper[$key][1]) ? $mapper[$key][1] : '';
134 $mapperSoftCreditType[$key] = $mapperSoftCreditType[$key]['value'];
135 }
136 else {
137 $mapperSoftCredit[$key] = $mapperSoftCreditType[$key] = NULL;
138 }
139 }
140
141 $parser = new CRM_Contribute_Import_Parser_Contribution($mapperKeys, $mapperSoftCredit, $mapperPhoneType, $mapperSoftCreditType);
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,
155 CRM_Import_Parser::MODE_IMPORT,
156 $this->get('contactType'),
157 $onDuplicate
158 );
159
160 // add all the necessary variables to the form
161 $parser->set($this, CRM_Import_Parser::MODE_IMPORT);
162
163 // check if there is any error occured
164
165 $errorStack = CRM_Core_Error::singleton();
166 $errors = $errorStack->getErrors();
167 $errorMessage = array();
168
169 if (is_array($errors)) {
170 foreach ($errors as $key => $value) {
171 $errorMessage[] = $value['message'];
172 }
173
174 $errorFile = $fileName['name'] . '.error.log';
175
176 if ($fd = fopen($errorFile, 'w')) {
177 fwrite($fd, implode('\n', $errorMessage));
178 }
179 fclose($fd);
180
181 $this->set('errorFile', $errorFile);
182 $urlParams = 'type=' . CRM_Import_Parser::ERROR . '&parser=CRM_Contribute_Import_Parser';
183 $this->set('downloadErrorRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
184 $urlParams = 'type=' . CRM_Import_Parser::CONFLICT . '&parser=CRM_Contribute_Import_Parser';
185 $this->set('downloadConflictRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
186 $urlParams = 'type=' . CRM_Import_Parser::NO_MATCH . '&parser=CRM_Contribute_Import_Parser';
187 $this->set('downloadMismatchRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
188 }
189 }
190 }