Merge pull request #7844 from eileenmcnaughton/report-sql
[civicrm-core.git] / CRM / Member / Import / Parser.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
ec3811b1 35abstract class CRM_Member_Import_Parser extends CRM_Import_Parser {
6a488035
TO
36
37 protected $_fileName;
38
39 /**#@+
6a488035
TO
40 * @var integer
41 */
42
43 /**
100fef9d 44 * Imported file size
6a488035
TO
45 */
46 protected $_fileSize;
47
48 /**
100fef9d 49 * Seperator being used
6a488035
TO
50 */
51 protected $_seperator;
52
53 /**
100fef9d 54 * Total number of lines in file
6a488035
TO
55 */
56 protected $_lineCount;
57
6a488035 58 /**
100fef9d 59 * Whether the file has a column header or not
6a488035
TO
60 *
61 * @var boolean
62 */
63 protected $_haveColumnHeader;
64
bb3a214a 65 /**
100fef9d 66 * @param string $fileName
bb3a214a
EM
67 * @param string $seperator
68 * @param $mapper
69 * @param bool $skipColumnHeader
70 * @param int $mode
71 * @param int $contactType
72 * @param int $onDuplicate
73 *
74 * @return mixed
75 * @throws Exception
76 */
3bdca100 77 public function run(
500cfe81 78 $fileName,
6a488035
TO
79 $seperator = ',',
80 &$mapper,
81 $skipColumnHeader = FALSE,
52892e8b
CW
82 $mode = self::MODE_PREVIEW,
83 $contactType = self::CONTACT_INDIVIDUAL,
84 $onDuplicate = self::DUPLICATE_SKIP
6a488035
TO
85 ) {
86 if (!is_array($fileName)) {
87 CRM_Core_Error::fatal();
88 }
89 $fileName = $fileName['name'];
90
91 switch ($contactType) {
92 case self::CONTACT_INDIVIDUAL:
93 $this->_contactType = 'Individual';
94 break;
95
96 case self::CONTACT_HOUSEHOLD:
97 $this->_contactType = 'Household';
98 break;
99
100 case self::CONTACT_ORGANIZATION:
101 $this->_contactType = 'Organization';
102 }
103
104 $this->init();
105
106 $this->_haveColumnHeader = $skipColumnHeader;
107
108 $this->_seperator = $seperator;
109
110 $fd = fopen($fileName, "r");
111 if (!$fd) {
112 return FALSE;
113 }
114
115 $this->_lineCount = $this->_warningCount = 0;
116 $this->_invalidRowCount = $this->_validCount = 0;
117 $this->_totalCount = $this->_conflictCount = 0;
118
52892e8b
CW
119 $this->_errors = array();
120 $this->_warnings = array();
6a488035
TO
121 $this->_conflicts = array();
122
123 $this->_fileSize = number_format(filesize($fileName) / 1024.0, 2);
124
125 if ($mode == self::MODE_MAPFIELD) {
126 $this->_rows = array();
127 }
128 else {
129 $this->_activeFieldCount = count($this->_activeFields);
130 }
131
132 while (!feof($fd)) {
133 $this->_lineCount++;
134
135 $values = fgetcsv($fd, 8192, $seperator);
136 if (!$values) {
137 continue;
138 }
139
140 self::encloseScrub($values);
141
142 // skip column header if we're not in mapfield mode
143 if ($mode != self::MODE_MAPFIELD && $skipColumnHeader) {
144 $skipColumnHeader = FALSE;
145 continue;
146 }
147
148 /* trim whitespace around the values */
149
150 $empty = TRUE;
151 foreach ($values as $k => $v) {
152 $values[$k] = trim($v, " \t\r\n");
153 }
154 if (CRM_Utils_System::isNull($values)) {
155 continue;
156 }
157
158 $this->_totalCount++;
159
160 if ($mode == self::MODE_MAPFIELD) {
161 $returnCode = $this->mapField($values);
162 }
163 elseif ($mode == self::MODE_PREVIEW) {
164 $returnCode = $this->preview($values);
165 }
166 elseif ($mode == self::MODE_SUMMARY) {
167 $returnCode = $this->summary($values);
168 }
169 elseif ($mode == self::MODE_IMPORT) {
170 $returnCode = $this->import($onDuplicate, $values);
171 }
172 else {
173 $returnCode = self::ERROR;
174 }
175
176 // note that a line could be valid but still produce a warning
177 if ($returnCode & self::VALID) {
178 $this->_validCount++;
179 if ($mode == self::MODE_MAPFIELD) {
180 $this->_rows[] = $values;
181 $this->_activeFieldCount = max($this->_activeFieldCount, count($values));
182 }
183 }
184
185 if ($returnCode & self::WARNING) {
186 $this->_warningCount++;
187 if ($this->_warningCount < $this->_maxWarningCount) {
188 $this->_warningCount[] = $line;
189 }
190 }
191
192 if ($returnCode & self::ERROR) {
193 $this->_invalidRowCount++;
194 if ($this->_invalidRowCount < $this->_maxErrorCount) {
195 $recordNumber = $this->_lineCount;
196 array_unshift($values, $recordNumber);
197 $this->_errors[] = $values;
198 }
199 }
200
201 if ($returnCode & self::CONFLICT) {
202 $this->_conflictCount++;
203 $recordNumber = $this->_lineCount;
204 array_unshift($values, $recordNumber);
205 $this->_conflicts[] = $values;
206 }
207
208 if ($returnCode & self::DUPLICATE) {
209 if ($returnCode & self::MULTIPLE_DUPE) {
210 /* TODO: multi-dupes should be counted apart from singles
e70a7fc0 211 * on non-skip action */
6a488035
TO
212 }
213 $this->_duplicateCount++;
214 $recordNumber = $this->_lineCount;
215 array_unshift($values, $recordNumber);
216 $this->_duplicates[] = $values;
217 if ($onDuplicate != self::DUPLICATE_SKIP) {
218 $this->_validCount++;
219 }
220 }
221
222 // we give the derived class a way of aborting the process
223 // note that the return code could be multiple code or'ed together
224 if ($returnCode & self::STOP) {
225 break;
226 }
227
228 // if we are done processing the maxNumber of lines, break
229 if ($this->_maxLinesToProcess > 0 && $this->_validCount >= $this->_maxLinesToProcess) {
230 break;
231 }
232 }
233
234 fclose($fd);
235
236 if ($mode == self::MODE_PREVIEW || $mode == self::MODE_IMPORT) {
237 $customHeaders = $mapper;
238
239 $customfields = CRM_Core_BAO_CustomField::getFields('Membership');
240 foreach ($customHeaders as $key => $value) {
241 if ($id = CRM_Core_BAO_CustomField::getKeyID($value)) {
242 $customHeaders[$key] = $customfields[$id][0];
243 }
244 }
245 if ($this->_invalidRowCount) {
246 // removed view url for invlaid contacts
353ffa53
TO
247 $headers = array_merge(array(
248 ts('Line Number'),
6a488035
TO
249 ts('Reason'),
250 ),
251 $customHeaders
252 );
253 $this->_errorFileName = self::errorFileName(self::ERROR);
254
255 self::exportCSV($this->_errorFileName, $headers, $this->_errors);
256 }
257 if ($this->_conflictCount) {
353ffa53
TO
258 $headers = array_merge(array(
259 ts('Line Number'),
6a488035
TO
260 ts('Reason'),
261 ),
262 $customHeaders
263 );
264 $this->_conflictFileName = self::errorFileName(self::CONFLICT);
265 self::exportCSV($this->_conflictFileName, $headers, $this->_conflicts);
266 }
267 if ($this->_duplicateCount) {
353ffa53
TO
268 $headers = array_merge(array(
269 ts('Line Number'),
6a488035
TO
270 ts('View Membership URL'),
271 ),
272 $customHeaders
273 );
274
275 $this->_duplicateFileName = self::errorFileName(self::DUPLICATE);
276 self::exportCSV($this->_duplicateFileName, $headers, $this->_duplicates);
277 }
278 }
279 return $this->fini();
280 }
281
6a488035
TO
282 /**
283 * Given a list of the importable field keys that the user has selected
284 * set the active fields array to this list
285 *
3bdca100 286 * @param array $fieldKeys mapped array of values
6a488035
TO
287 *
288 * @return void
6a488035 289 */
00be9182 290 public function setActiveFields($fieldKeys) {
6a488035
TO
291 $this->_activeFieldCount = count($fieldKeys);
292 foreach ($fieldKeys as $key) {
293 if (empty($this->_fields[$key])) {
294 $this->_activeFields[] = new CRM_Member_Import_Field('', ts('- do not import -'));
295 }
296 else {
297 $this->_activeFields[] = clone($this->_fields[$key]);
298 }
299 }
300 }
301
6a488035 302 /**
fe482240 303 * Format the field values for input to the api.
6a488035 304 *
a6c01b45
CW
305 * @return array
306 * (reference ) associative array of name/value pairs
6a488035 307 */
00be9182 308 public function &getActiveFieldParams() {
6a488035
TO
309 $params = array();
310 for ($i = 0; $i < $this->_activeFieldCount; $i++) {
311 if (isset($this->_activeFields[$i]->_value)
312 && !isset($params[$this->_activeFields[$i]->_name])
313 && !isset($this->_activeFields[$i]->_related)
314 ) {
315
316 $params[$this->_activeFields[$i]->_name] = $this->_activeFields[$i]->_value;
317 }
318 }
319 return $params;
320 }
321
bb3a214a 322 /**
100fef9d 323 * @param string $name
bb3a214a
EM
324 * @param $title
325 * @param int $type
326 * @param string $headerPattern
327 * @param string $dataPattern
328 */
00be9182 329 public function addField($name, $title, $type = CRM_Utils_Type::T_INT, $headerPattern = '//', $dataPattern = '//') {
6a488035
TO
330 if (empty($name)) {
331 $this->_fields['doNotImport'] = new CRM_Member_Import_Field($name, $title, $type, $headerPattern, $dataPattern);
332 }
333 else {
334
335 //$tempField = CRM_Contact_BAO_Contact::importableFields('Individual', null );
336 $tempField = CRM_Contact_BAO_Contact::importableFields('All', NULL);
337 if (!array_key_exists($name, $tempField)) {
338 $this->_fields[$name] = new CRM_Member_Import_Field($name, $title, $type, $headerPattern, $dataPattern);
339 }
340 else {
719a6fec 341 $this->_fields[$name] = new CRM_Contact_Import_Field($name, $title, $type, $headerPattern, $dataPattern,
6a488035
TO
342 CRM_Utils_Array::value('hasLocationType', $tempField[$name])
343 );
344 }
345 }
346 }
347
6a488035 348 /**
fe482240 349 * Store parser values.
6a488035
TO
350 *
351 * @param CRM_Core_Session $store
352 *
fd31fa4c
EM
353 * @param int $mode
354 *
6a488035 355 * @return void
6a488035 356 */
00be9182 357 public function set($store, $mode = self::MODE_SUMMARY) {
6a488035
TO
358 $store->set('fileSize', $this->_fileSize);
359 $store->set('lineCount', $this->_lineCount);
360 $store->set('seperator', $this->_seperator);
361 $store->set('fields', $this->getSelectValues());
362 $store->set('fieldTypes', $this->getSelectTypes());
363
364 $store->set('headerPatterns', $this->getHeaderPatterns());
365 $store->set('dataPatterns', $this->getDataPatterns());
366 $store->set('columnCount', $this->_activeFieldCount);
367
368 $store->set('totalRowCount', $this->_totalCount);
369 $store->set('validRowCount', $this->_validCount);
370 $store->set('invalidRowCount', $this->_invalidRowCount);
371 $store->set('conflictRowCount', $this->_conflictCount);
372
373 switch ($this->_contactType) {
374 case 'Individual':
a05662ef 375 $store->set('contactType', CRM_Import_Parser::CONTACT_INDIVIDUAL);
6a488035
TO
376 break;
377
378 case 'Household':
a05662ef 379 $store->set('contactType', CRM_Import_Parser::CONTACT_HOUSEHOLD);
6a488035
TO
380 break;
381
382 case 'Organization':
a05662ef 383 $store->set('contactType', CRM_Import_Parser::CONTACT_ORGANIZATION);
6a488035
TO
384 }
385
386 if ($this->_invalidRowCount) {
387 $store->set('errorsFileName', $this->_errorFileName);
388 }
389 if ($this->_conflictCount) {
390 $store->set('conflictsFileName', $this->_conflictFileName);
391 }
392 if (isset($this->_rows) && !empty($this->_rows)) {
393 $store->set('dataValues', $this->_rows);
394 }
395
396 if ($mode == self::MODE_IMPORT) {
397 $store->set('duplicateRowCount', $this->_duplicateCount);
398 if ($this->_duplicateCount) {
399 $store->set('duplicatesFileName', $this->_duplicateFileName);
400 }
401 }
402 }
403
404 /**
fe482240 405 * Export data to a CSV file.
6a488035 406 *
c490a46a 407 * @param string $fileName
6a488035 408 * @param array $header
c490a46a 409 * @param array $data
6a488035
TO
410 *
411 * @return void
6a488035 412 */
00be9182 413 public static function exportCSV($fileName, $header, $data) {
6a488035
TO
414 $output = array();
415 $fd = fopen($fileName, 'w');
416
417 foreach ($header as $key => $value) {
418 $header[$key] = "\"$value\"";
419 }
420 $config = CRM_Core_Config::singleton();
421 $output[] = implode($config->fieldSeparator, $header);
422
423 foreach ($data as $datum) {
424 foreach ($datum as $key => $value) {
425 if (is_array($value)) {
426 foreach ($value[0] as $k1 => $v1) {
427 if ($k1 == 'location_type_id') {
428 continue;
429 }
430 $datum[$k1] = $v1;
431 }
432 }
433 else {
434 $datum[$key] = "\"$value\"";
435 }
436 }
437 $output[] = implode($config->fieldSeparator, $datum);
438 }
439 fwrite($fd, implode("\n", $output));
440 fclose($fd);
441 }
442
6a488035 443}