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