CRM-15615
[civicrm-core.git] / CRM / Event / Import / Form / DataSource.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class gets the name of the file to upload
38 */
ac4410cd 39class CRM_Event_Import_Form_DataSource extends CRM_Core_Form {
6a488035
TO
40
41 /**
100fef9d 42 * Set variables up before form is built
6a488035
TO
43 *
44 * @return void
45 * @access public
46 */
47 public function preProcess() {
48 $session = CRM_Core_Session::singleton();
49 $session->pushUserContext(CRM_Utils_System::url('civicrm/event/import', 'reset=1'));
66dc6009 50 // check for post max size
51 CRM_Core_Config_Defaults::formatUnitSize(ini_get('post_max_size'), TRUE);
6a488035
TO
52 }
53
54 /**
c490a46a 55 * Build the form object
6a488035 56 *
355ba699 57 * @return void
6a488035
TO
58 * @access public
59 */
60 public function buildQuickForm() {
61 //Setting Upload File Size
62 $config = CRM_Core_Config::singleton();
66dc6009 63
64 $uploadFileSize = CRM_Core_Config_Defaults::formatUnitSize($config->maxFileSize.'m');
6a488035
TO
65 $uploadSize = round(($uploadFileSize / (1024 * 1024)), 2);
66
67 $this->assign('uploadSize', $uploadSize);
68
66dc6009 69 $this->add('File', 'uploadFile', ts('Import Data File'), 'size=30 maxlength=255', TRUE);
6a488035 70 $this->setMaxFileSize($uploadFileSize);
66dc6009 71 $this->addRule('uploadFile', ts('File size should be less than %1 MBytes (%2 bytes)', array(1 => $uploadSize, 2 => $uploadFileSize)), 'maxfilesize', $uploadFileSize);
72 $this->addRule('uploadFile', ts('A valid file must be uploaded.'), 'uploadedfile');
6a488035
TO
73 $this->addRule('uploadFile', ts('Input file must be in CSV format'), 'utf8File');
74
75 $this->addElement('checkbox', 'skipColumnHeader', ts('First row contains column headers'));
76
77 $duplicateOptions = array();
78 $duplicateOptions[] = $this->createElement('radio',
a05662ef 79 NULL, NULL, ts('Skip'), CRM_Import_Parser::DUPLICATE_SKIP
6a488035
TO
80 );
81 $duplicateOptions[] = $this->createElement('radio',
a05662ef 82 NULL, NULL, ts('Update'), CRM_Import_Parser::DUPLICATE_UPDATE
6a488035
TO
83 );
84 $duplicateOptions[] = $this->createElement('radio',
a05662ef 85 NULL, NULL, ts('No Duplicate Checking'), CRM_Import_Parser::DUPLICATE_NOCHECK
6a488035
TO
86 );
87 // for contributions NOCHECK == SKIP
88 // $duplicateOptions[] = $this->createElement('radio',
a05662ef 89 // null, null, ts('No Duplicate Checking'), CRM_Import_Parser::DUPLICATE_NOCHECK);
6a488035
TO
90
91 $this->addGroup($duplicateOptions, 'onDuplicate',
92 ts('On Duplicate Entries')
93 );
94
95 //get the saved mapping details
96 $mappingArray = CRM_Core_BAO_Mapping::getMappings(CRM_Core_OptionGroup::getValue('mapping_type',
97 'Import Participant',
98 'name'
99 ));
100 $this->assign('savedMapping', $mappingArray);
101 $this->add('select', 'savedMapping', ts('Mapping Option'), array('' => ts('- select -')) + $mappingArray);
102
103 if ($loadeMapping = $this->get('loadedMapping')) {
104 $this->assign('loadedMapping', $loadeMapping);
105 $this->setDefaults(array('savedMapping' => $loadeMapping));
106 }
107
108 $this->setDefaults(array(
109 'onDuplicate' =>
a05662ef 110 CRM_Import_Parser::DUPLICATE_SKIP,
6a488035
TO
111 ));
112
113 //contact types option
114 $contactOptions = array();
115 if (CRM_Contact_BAO_ContactType::isActive('Individual')) {
116 $contactOptions[] = $this->createElement('radio',
a05662ef 117 NULL, NULL, ts('Individual'), CRM_Import_Parser::CONTACT_INDIVIDUAL
6a488035
TO
118 );
119 }
120 if (CRM_Contact_BAO_ContactType::isActive('Household')) {
121 $contactOptions[] = $this->createElement('radio',
a05662ef 122 NULL, NULL, ts('Household'), CRM_Import_Parser::CONTACT_HOUSEHOLD
6a488035
TO
123 );
124 }
125 if (CRM_Contact_BAO_ContactType::isActive('Organization')) {
126 $contactOptions[] = $this->createElement('radio',
a05662ef 127 NULL, NULL, ts('Organization'), CRM_Import_Parser::CONTACT_ORGANIZATION
6a488035
TO
128 );
129 }
130 $this->addGroup($contactOptions, 'contactType', ts('Contact Type'));
131
132 $this->setDefaults(array(
9d72cede 133 'contactType' => CRM_Import_Parser::CONTACT_INDIVIDUAL,
6a488035
TO
134 )
135 );
136
137 //build date formats
138 CRM_Core_Form_Date::buildAllowedDateFormats($this);
139
140 $this->addButtons(array(
141 array(
142 'type' => 'upload',
143 'name' => ts('Continue >>'),
144 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
145 'isDefault' => TRUE,
146 ),
147 array(
148 'type' => 'cancel',
149 'name' => ts('Cancel'),
150 ),
151 )
152 );
153 }
154
155 /**
156 * Process the uploaded file
157 *
158 * @return void
159 * @access public
160 */
161 public function postProcess() {
162 $this->controller->resetPage('MapField');
163
164 $fileName = $this->controller->exportValue($this->_name, 'uploadFile');
165 $skipColumnHeader = $this->controller->exportValue($this->_name, 'skipColumnHeader');
166 $onDuplicate = $this->controller->exportValue($this->_name, 'onDuplicate');
167 $contactType = $this->controller->exportValue($this->_name, 'contactType');
168 $dateFormats = $this->controller->exportValue($this->_name, 'dateFormats');
169 $savedMapping = $this->controller->exportValue($this->_name, 'savedMapping');
170
171 $this->set('onDuplicate', $onDuplicate);
172 $this->set('contactType', $contactType);
173 $this->set('dateFormats', $dateFormats);
174 $this->set('savedMapping', $savedMapping);
175
176 $session = CRM_Core_Session::singleton();
177 $session->set("dateTypes", $dateFormats);
178
179 $config = CRM_Core_Config::singleton();
180 $seperator = $config->fieldSeparator;
181
182 $mapper = array();
183 $parser = new CRM_Event_Import_Parser_Participant($mapper);
184 $parser->setMaxLinesToProcess(100);
185 $parser->run($fileName, $seperator,
186 $mapper,
187 $skipColumnHeader,
a05662ef 188 CRM_Import_Parser::MODE_MAPFIELD, $contactType
6a488035
TO
189 );
190
191 // add all the necessary variables to the form
192 $parser->set($this);
193 }
194
195 /**
196 * Return a descriptive name for the page, used in wizard header
197 *
198 * @return string
199 * @access public
200 */
201 public function getTitle() {
202 return ts('Upload Data');
203 }
204}
205