8c7d383f89250207d4c1408746044b7b2e7b86c9
[civicrm-core.git] / CRM / Member / Import / Form / DataSource.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 /**
37 * This class gets the name of the file to upload
38 */
39 class CRM_Member_Import_Form_DataSource extends CRM_Core_Form {
40
41 /**
42 * set variables up before form is built
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/member/import', 'reset=1'));
50 // check for post max size
51 CRM_Core_Config_Defaults::formatUnitSize(ini_get('post_max_size'), TRUE);
52 }
53
54 /**
55 * Build the form object
56 *
57 * @return void
58 * @access public
59 */
60 public function buildQuickForm() {
61 //Setting Upload File Size
62 $config = CRM_Core_Config::singleton();
63
64 $uploadFileSize = CRM_Core_Config_Defaults::formatUnitSize($config->maxFileSize.'m');
65 $uploadSize = round(($uploadFileSize / (1024 * 1024)), 2);
66
67 $this->assign('uploadSize', $uploadSize);
68
69 $this->add('File', 'uploadFile', ts('Import Data File'), 'size=30 maxlength=255', TRUE);
70 $this->setMaxFileSize($uploadFileSize);
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');
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',
79 NULL, NULL, ts('Insert new Membership'), CRM_Import_Parser::DUPLICATE_SKIP
80 );
81 $duplicateOptions[] = $this->createElement('radio',
82 NULL, NULL, ts('Update existing Membership'), CRM_Import_Parser::DUPLICATE_UPDATE
83 );
84
85 $this->addGroup($duplicateOptions, 'onDuplicate',
86 ts('Import mode')
87 );
88 $this->setDefaults(array(
89 'onDuplicate' =>
90 CRM_Import_Parser::DUPLICATE_SKIP,
91 ));
92
93 //get the saved mapping details
94 $mappingArray = CRM_Core_BAO_Mapping::getMappings(CRM_Core_OptionGroup::getValue('mapping_type',
95 'Import Membership',
96 'name'
97 ));
98 $this->assign('savedMapping', $mappingArray);
99 $this->add('select', 'savedMapping', ts('Mapping Option'), array('' => ts('- select -')) + $mappingArray);
100
101 if ($loadeMapping = $this->get('loadedMapping')) {
102 $this->assign('loadedMapping', $loadeMapping);
103 $this->setDefaults(array('savedMapping' => $loadeMapping));
104 }
105
106 //contact types option
107 $contactOptions = array();
108 if (CRM_Contact_BAO_ContactType::isActive('Individual')) {
109 $contactOptions[] = $this->createElement('radio',
110 NULL, NULL, ts('Individual'), CRM_Import_Parser::CONTACT_INDIVIDUAL
111 );
112 }
113 if (CRM_Contact_BAO_ContactType::isActive('Household')) {
114 $contactOptions[] = $this->createElement('radio',
115 NULL, NULL, ts('Household'), CRM_Import_Parser::CONTACT_HOUSEHOLD
116 );
117 }
118 if (CRM_Contact_BAO_ContactType::isActive('Organization')) {
119 $contactOptions[] = $this->createElement('radio',
120 NULL, NULL, ts('Organization'), CRM_Import_Parser::CONTACT_ORGANIZATION
121 );
122 }
123
124 $this->addGroup($contactOptions, 'contactType',
125 ts('Contact Type')
126 );
127
128 $this->setDefaults(array(
129 'contactType' =>
130 CRM_Import_Parser::CONTACT_INDIVIDUAL,
131 ));
132
133 //build date formats
134 CRM_Core_Form_Date::buildAllowedDateFormats($this);
135
136 $this->addButtons(array(
137 array(
138 'type' => 'upload',
139 'name' => ts('Continue >>'),
140 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
141 'isDefault' => TRUE,
142 ),
143 array(
144 'type' => 'cancel',
145 'name' => ts('Cancel'),
146 ),
147 )
148 );
149 }
150
151 /**
152 * Process the uploaded file
153 *
154 * @return void
155 * @access public
156 */
157 public function postProcess() {
158 $this->controller->resetPage('MapField');
159
160 $fileName = $this->controller->exportValue($this->_name, 'uploadFile');
161 $skipColumnHeader = $this->controller->exportValue($this->_name, 'skipColumnHeader');
162 $onDuplicate = $this->controller->exportValue($this->_name, 'onDuplicate');
163 $contactType = $this->controller->exportValue($this->_name, 'contactType');
164 $dateFormats = $this->controller->exportValue($this->_name, 'dateFormats');
165 $savedMapping = $this->controller->exportValue($this->_name, 'savedMapping');
166
167 $this->set('onDuplicate', $onDuplicate);
168 $this->set('contactType', $contactType);
169 $this->set('dateFormats', $dateFormats);
170 $this->set('savedMapping', $savedMapping);
171
172 $session = CRM_Core_Session::singleton();
173 $session->set("dateTypes", $dateFormats);
174
175 $config = CRM_Core_Config::singleton();
176 $seperator = $config->fieldSeparator;
177
178 $mapper = array();
179
180 $parser = new CRM_Member_Import_Parser_Membership($mapper);
181 $parser->setMaxLinesToProcess(100);
182 $parser->run($fileName, $seperator,
183 $mapper,
184 $skipColumnHeader,
185 CRM_Import_Parser::MODE_MAPFIELD, $contactType
186 );
187
188 // add all the necessary variables to the form
189 $parser->set($this);
190 }
191
192 /**
193 * Return a descriptive name for the page, used in wizard header
194 *
195 * @return string
196 * @access public
197 */
198 public function getTitle() {
199 return ts('Upload Data');
200 }
201 }
202