Merge branch 'master' into findById
[civicrm-core.git] / CRM / Event / Import / Parser / Participant.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
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 require_once 'CRM/Utils/DeprecatedUtils.php';
37
38 /**
39 * class to parse membership csv files
40 */
41 class CRM_Event_Import_Parser_Participant extends CRM_Event_Import_Parser {
42 protected $_mapperKeys;
43
44 private $_contactIdIndex;
45
46 //private $_totalAmountIndex;
47
48 private $_eventIndex;
49 private $_participantStatusIndex;
50 private $_participantRoleIndex;
51 private $_eventTitleIndex;
52
53 /**
54 * Array of successfully imported participants id's
55 *
56 * @array
57 */
58 protected $_newParticipants;
59
60 /**
61 * Class constructor
62 */
63 function __construct(&$mapperKeys, $mapperLocType = NULL, $mapperPhoneType = NULL) {
64 parent::__construct();
65 $this->_mapperKeys = &$mapperKeys;
66 }
67
68 /**
69 * The initializer code, called before the processing
70 *
71 * @return void
72 * @access public
73 */
74 function init() {
75 $fields = CRM_Event_BAO_Participant::importableFields($this->_contactType, FALSE);
76 $fields['event_id']['title'] = 'Event ID';
77 $eventfields = &CRM_Event_BAO_Event::fields();
78 $fields['event_title'] = $eventfields['event_title'];
79
80 foreach ($fields as $name => $field) {
81 $field['type'] = CRM_Utils_Array::value('type', $field, CRM_Utils_Type::T_INT);
82 $field['dataPattern'] = CRM_Utils_Array::value('dataPattern', $field, '//');
83 $field['headerPattern'] = CRM_Utils_Array::value('headerPattern', $field, '//');
84 $this->addField($name, $field['title'], $field['type'], $field['headerPattern'], $field['dataPattern']);
85 }
86
87 $this->_newParticipants = array();
88 $this->setActiveFields($this->_mapperKeys);
89
90 // FIXME: we should do this in one place together with Form/MapField.php
91 $this->_contactIdIndex = -1;
92 $this->_eventIndex = -1;
93 $this->_participantStatusIndex = -1;
94 $this->_participantRoleIndex = -1;
95 $this->_eventTitleIndex = -1;
96
97 $index = 0;
98 foreach ($this->_mapperKeys as $key) {
99
100 switch ($key) {
101 case 'participant_contact_id':
102 $this->_contactIdIndex = $index;
103 break;
104
105 case 'event_id':
106 $this->_eventIndex = $index;
107 break;
108
109 case 'participant_status':
110 case 'participant_status_id':
111 $this->_participantStatusIndex = $index;
112 break;
113
114 case 'participant_role_id':
115 $this->_participantRoleIndex = $index;
116 break;
117
118 case 'event_title':
119 $this->_eventTitleIndex = $index;
120 break;
121 }
122 $index++;
123 }
124 }
125
126 /**
127 * Handle the values in mapField mode
128 *
129 * @param array $values the array of values belonging to this line
130 *
131 * @return boolean
132 * @access public
133 */
134 function mapField(&$values) {
135 return CRM_Import_Parser::VALID;
136 }
137
138 /**
139 * Handle the values in preview mode
140 *
141 * @param array $values the array of values belonging to this line
142 *
143 * @return boolean the result of this processing
144 * @access public
145 */
146 function preview(&$values) {
147 return $this->summary($values);
148 }
149
150 /**
151 * Handle the values in summary mode
152 *
153 * @param array $values the array of values belonging to this line
154 *
155 * @return boolean the result of this processing
156 * @access public
157 */
158 function summary(&$values) {
159 $erroneousField = NULL;
160
161 $response = $this->setActiveFieldValues($values, $erroneousField);
162 $errorRequired = FALSE;
163 $index = -1;
164
165 if ($this->_eventIndex > -1 && $this->_eventTitleIndex > -1) {
166 array_unshift($values, ts('Select either EventID OR Event Title'));
167 return CRM_Import_Parser::ERROR;
168 }
169 elseif ($this->_eventTitleIndex > -1) {
170 $index = $this->_eventTitleIndex;
171 }
172 elseif ($this->_eventIndex > -1) {
173 $index = $this->_eventIndex;
174 }
175 $params = &$this->getActiveFieldParams();
176
177 if (!(($index < 0) || ($this->_participantStatusIndex < 0))) {
178 $errorRequired = !CRM_Utils_Array::value($this->_participantStatusIndex, $values);
179 if (empty($params['event_id']) && empty($params['event_title'])) {
180 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Event', $missingField);
181 }
182 if (empty($params['participant_status_id'])) {
183 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Status', $missingField);
184 }
185 }
186 else {
187 $errorRequired = TRUE;
188 $missingField = NULL;
189 if ($index < 0) {
190 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Event', $missingField);
191 }
192 if ($this->_participantStatusIndex < 0) {
193 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Status', $missingField);
194 }
195 }
196
197 if ($errorRequired) {
198 array_unshift($values, ts('Missing required field(s) :') . $missingField);
199 return CRM_Import_Parser::ERROR;
200 }
201
202 $errorMessage = NULL;
203
204 //for date-Formats
205 $session = CRM_Core_Session::singleton();
206 $dateType = $session->get('dateTypes');
207
208 foreach ($params as $key => $val) {
209 if ($val && ($key == 'participant_register_date')) {
210 if ($dateValue = CRM_Utils_Date::formatDate($params[$key], $dateType)) {
211 $params[$key] = $dateValue;
212 }
213 else {
214 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Register Date', $errorMessage);
215 }
216 }
217 elseif ($val && ($key == 'participant_role_id' || $key == 'participant_role')) {
218 $roleIDs = CRM_Event_PseudoConstant::participantRole();
219 $val = explode(',', $val);
220 if ($key == 'participant_role_id') {
221 foreach ($val as $role) {
222 if (!in_array(trim($role), array_keys($roleIDs))) {
223 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Role Id', $errorMessage);
224 break;
225 }
226 }
227 }
228 else {
229 foreach ($val as $role) {
230 if (!CRM_Contact_Import_Parser_Contact::in_value(trim($role), $roleIDs)) {
231 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Role', $errorMessage);
232 break;
233 }
234 }
235 }
236 }
237 elseif ($val && (($key == 'participant_status_id') || ($key == 'participant_status'))) {
238 $statusIDs = CRM_Event_PseudoConstant::participantStatus();
239 if ($key == 'participant_status_id') {
240 if (!in_array(trim($val), array_keys($statusIDs))) {
241 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Status Id', $errorMessage);
242 break;
243 }
244 }
245 elseif (!CRM_Contact_Import_Parser_Contact::in_value($val, $statusIDs)) {
246 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Status', $errorMessage);
247 break;
248 }
249 }
250 }
251 //date-Format part ends
252
253 $params['contact_type'] = 'Participant';
254 //checking error in custom data
255 CRM_Contact_Import_Parser_Contact::isErrorInCustomData($params, $errorMessage);
256
257 if ($errorMessage) {
258 $tempMsg = "Invalid value for field(s) : $errorMessage";
259 array_unshift($values, $tempMsg);
260 $errorMessage = NULL;
261 return CRM_Import_Parser::ERROR;
262 }
263 return CRM_Import_Parser::VALID;
264 }
265
266 /**
267 * Handle the values in import mode
268 *
269 * @param int $onDuplicate the code for what action to take on duplicates
270 * @param array $values the array of values belonging to this line
271 *
272 * @return boolean the result of this processing
273 * @access public
274 */
275 function import($onDuplicate, &$values) {
276
277 // first make sure this is a valid line
278 $response = $this->summary($values);
279 if ($response != CRM_Import_Parser::VALID) {
280 return $response;
281 }
282 $params = &$this->getActiveFieldParams();
283 $session = CRM_Core_Session::singleton();
284 $dateType = $session->get('dateTypes');
285 $formatted = array('version' => 3);
286 $customFields = CRM_Core_BAO_CustomField::getFields(CRM_Utils_Array::value('contact_type', $params));
287
288 // don't add to recent items, CRM-4399
289 $formatted['skipRecentView'] = TRUE;
290
291 foreach ($params as $key => $val) {
292 if ($val) {
293 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($key)) {
294 if ($customFields[$customFieldID]['data_type'] == 'Date') {
295 CRM_Contact_Import_Parser_Contact::formatCustomDate($params, $formatted, $dateType, $key);
296 unset($params[$key]);
297 }
298 elseif ($customFields[$customFieldID]['data_type'] == 'Boolean') {
299 $params[$key] = CRM_Utils_String::strtoboolstr($val);
300 }
301 }
302 if($key == 'participant_register_date') {
303 CRM_Utils_Date::convertToDefaultDate($params, $dateType, 'participant_register_date');
304 $formatted['participant_register_date'] = CRM_Utils_Date::processDate($params['participant_register_date']);
305 }
306 }
307 }
308
309 if (!(!empty($params['participant_role_id']) || !empty($params['participant_role']))) {
310 if (!empty($params['event_id'])) {
311 $params['participant_role_id'] = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $params['event_id'], 'default_role_id');
312 }
313 else {
314 $eventTitle = $params['event_title'];
315 $qParams = array();
316 $dao = new CRM_Core_DAO();
317 $params['participant_role_id'] = $dao->singleValueQuery("SELECT default_role_id FROM civicrm_event WHERE title = '$eventTitle' ",
318 $qParams
319 );
320 }
321 }
322
323 //date-Format part ends
324 static $indieFields = NULL;
325 if ($indieFields == NULL) {
326 $indieFields = CRM_Event_BAO_Participant::import();
327 }
328
329 $formatValues = array();
330 foreach ($params as $key => $field) {
331 if ($field == NULL || $field === '') {
332 continue;
333 }
334
335 $formatValues[$key] = $field;
336 }
337
338 $formatError = _civicrm_api3_deprecated_participant_formatted_param($formatValues, $formatted, TRUE);
339
340 if ($formatError) {
341 array_unshift($values, $formatError['error_message']);
342 return CRM_Import_Parser::ERROR;
343 }
344
345 if (!CRM_Utils_Rule::integer($formatted['event_id'])) {
346 array_unshift($values, ts('Invalid value for Event ID'));
347 return CRM_Import_Parser::ERROR;
348 }
349
350 if ($onDuplicate != CRM_Import_Parser::DUPLICATE_UPDATE) {
351 $formatted['custom'] = CRM_Core_BAO_CustomField::postProcess($formatted,
352 CRM_Core_DAO::$_nullObject,
353 NULL,
354 'Participant'
355 );
356 }
357 else {
358 if ($formatValues['participant_id']) {
359 $dao = new CRM_Event_BAO_Participant();
360 $dao->id = $formatValues['participant_id'];
361
362 $formatted['custom'] = CRM_Core_BAO_CustomField::postProcess($formatted,
363 CRM_Core_DAO::$_nullObject,
364 $formatValues['participant_id'],
365 'Participant'
366 );
367 if ($dao->find(TRUE)) {
368 $ids = array(
369 'participant' => $formatValues['participant_id'],
370 'userId' => $session->get('userID'),
371 );
372 $participantValues = array();
373 //@todo calling api functions directly is not supported
374 $newParticipant = _civicrm_api3_deprecated_participant_check_params($formatted, $participantValues, FALSE);
375 if ($newParticipant['error_message']) {
376 array_unshift($values, $newParticipant['error_message']);
377 return CRM_Import_Parser::ERROR;
378 }
379 $newParticipant = CRM_Event_BAO_Participant::create($formatted, $ids);
380 if (!empty($formatted['fee_level'])) {
381 $otherParams = array(
382 'fee_label' => $formatted['fee_level'],
383 'event_id' => $newParticipant->event_id
384 );
385 CRM_Price_BAO_LineItem::syncLineItems($newParticipant->id, 'civicrm_participant', $newParticipant->fee_amount, $otherParams);
386 }
387
388 $this->_newParticipant[] = $newParticipant->id;
389 return CRM_Import_Parser::VALID;
390 }
391 else {
392 array_unshift($values, 'Matching Participant record not found for Participant ID ' . $formatValues['participant_id'] . '. Row was skipped.');
393 return CRM_Import_Parser::ERROR;
394 }
395 }
396 }
397
398 if ($this->_contactIdIndex < 0) {
399
400 //retrieve contact id using contact dedupe rule
401 $formatValues['contact_type'] = $this->_contactType;
402 $formatValues['version'] = 3;
403 $error = _civicrm_api3_deprecated_check_contact_dedupe($formatValues);
404
405 if (CRM_Core_Error::isAPIError($error, CRM_Core_ERROR::DUPLICATE_CONTACT)) {
406 $matchedIDs = explode(',', $error['error_message']['params'][0]);
407 if (count($matchedIDs) >= 1) {
408 foreach ($matchedIDs as $contactId) {
409 $formatted['contact_id'] = $contactId;
410 $formatted['version'] = 3;
411 $newParticipant = _civicrm_api3_deprecated_create_participant_formatted($formatted, $onDuplicate);
412 }
413 }
414 }
415 else {
416 // Using new Dedupe rule.
417 $ruleParams = array(
418 'contact_type' => $this->_contactType,
419 'used' => 'Unsupervised',
420 );
421 $fieldsArray = CRM_Dedupe_BAO_Rule::dedupeRuleFields($ruleParams);
422
423 $disp = '';
424 foreach ($fieldsArray as $value) {
425 if (array_key_exists(trim($value), $params)) {
426 $paramValue = $params[trim($value)];
427 if (is_array($paramValue)) {
428 $disp .= $params[trim($value)][0][trim($value)] . " ";
429 }
430 else {
431 $disp .= $params[trim($value)] . " ";
432 }
433 }
434 }
435
436 if (!empty($params['external_identifier'])) {
437 if ($disp) {
438 $disp .= "AND {$params['external_identifier']}";
439 }
440 else {
441 $disp = $params['external_identifier'];
442 }
443 }
444
445 array_unshift($values, 'No matching Contact found for (' . $disp . ')');
446 return CRM_Import_Parser::ERROR;
447 }
448 }
449 else {
450 if (!empty($formatValues['external_identifier'])) {
451 $checkCid = new CRM_Contact_DAO_Contact();
452 $checkCid->external_identifier = $formatValues['external_identifier'];
453 $checkCid->find(TRUE);
454 if ($checkCid->id != $formatted['contact_id']) {
455 array_unshift($values, 'Mismatch of External identifier :' . $formatValues['external_identifier'] . ' and Contact Id:' . $formatted['contact_id']);
456 return CRM_Import_Parser::ERROR;
457 }
458 }
459
460 $newParticipant = _civicrm_api3_deprecated_create_participant_formatted($formatted, $onDuplicate);
461 }
462
463 if (is_array($newParticipant) && civicrm_error($newParticipant)) {
464 if ($onDuplicate == CRM_Import_Parser::DUPLICATE_SKIP) {
465
466 $contactID = CRM_Utils_Array::value('contactID', $newParticipant);
467 $participantID = CRM_Utils_Array::value('participantID', $newParticipant);
468 $url = CRM_Utils_System::url('civicrm/contact/view/participant',
469 "reset=1&id={$participantID}&cid={$contactID}&action=view", TRUE
470 );
471 if (is_array($newParticipant['error_message']) &&
472 ($participantID == $newParticipant['error_message']['params'][0])
473 ) {
474 array_unshift($values, $url);
475 return CRM_Import_Parser::DUPLICATE;
476 }
477 elseif ($newParticipant['error_message']) {
478 array_unshift($values, $newParticipant['error_message']);
479 return CRM_Import_Parser::ERROR;
480 }
481 return CRM_Import_Parser::ERROR;
482 }
483 }
484
485 if (!(is_array($newParticipant) && civicrm_error($newParticipant))) {
486 $this->_newParticipants[] = CRM_Utils_Array::value('id', $newParticipant);
487 }
488
489 return CRM_Import_Parser::VALID;
490 }
491
492 /**
493 * Get the array of successfully imported Participation ids
494 *
495 * @return array
496 * @access public
497 */
498 function &getImportedParticipations() {
499 return $this->_newParticipants;
500 }
501
502 /**
503 * The initializer code, called before the processing
504 *
505 * @return void
506 * @access public
507 */
508 function fini() {}
509 }
510