Merge pull request #3196 from JoeMurray/master
[civicrm-core.git] / CRM / Custom / Import / Form / DataSource.php
CommitLineData
9ff5f6c0
N
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
9ff5f6c0 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
9ff5f6c0
N
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
9ff5f6c0
N
32 * $Id$
33 *
34 */
35
36/**
37 * This class gets the name of the file to upload
38 */
39class CRM_Custom_Import_Form_DataSource extends CRM_Core_Form {
40
41 /**
42 * Function to 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 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE);
50 if ($this->_id) {
51 $params = "reset=1&id={$this->_id}";
52 }
53 else {
54 $params = "reset=1";
55 }
56 $session->pushUserContext(CRM_Utils_System::url('civicrm/import/custom', $params));
57 }
58
59 function setDefaultValues() {
60 $config = CRM_Core_Config::singleton();
61 $defaults = array(
62 'contactType' => CRM_Import_Parser::CONTACT_INDIVIDUAL,
63 'fieldSeparator' => $config->fieldSeparator,
64 'multipleCustomData' => $this->_id,
65 );
66
67 if ($loadeMapping = $this->get('loadedMapping')) {
68 $this->assign('loadedMapping', $loadeMapping);
69 $defaults['savedMapping'] = $loadeMapping;
70 }
71
72 return $defaults;
73 }
74
75 /**
76 * Function to actually build the form
77 *
78 * @return void
79 * @access public
80 */
81 public function buildQuickForm() {
82 $multipleCustomData = CRM_Core_BAO_CustomGroup::getMultipleFieldGroup();
83 $this->add('select', 'multipleCustomData', ts('Multi-value Custom Data'), array('' => ts('- select -')) + $multipleCustomData, TRUE);
84
85 //Setting Upload File Size
86 $config = CRM_Core_Config::singleton();
87 if ($config->maxImportFileSize >= 8388608) {
88 $uploadFileSize = 8388608;
89 }
90 else {
91 $uploadFileSize = $config->maxImportFileSize;
92 }
93 $uploadSize = round(($uploadFileSize / (1024 * 1024)), 2);
94
95 $this->assign('uploadSize', $uploadSize);
96 $this->add('file', 'uploadFile', ts('Import Data File'), 'size=30 maxlength=255', TRUE);
97
98 $this->addRule('uploadFile', ts('A valid file must be uploaded.'), 'uploadedfile');
99 $this->addRule('uploadFile', ts('File size should be less than %1 MBytes (%2 bytes)', array(1 => $uploadSize, 2 => $uploadFileSize)), 'maxfilesize', $uploadFileSize);
100 $this->setMaxFileSize($uploadFileSize);
101 $this->addRule('uploadFile', ts('Input file must be in CSV format'), 'utf8File');
102
103 $this->addElement('checkbox', 'skipColumnHeader', ts('First row contains column headers'));
104
105 //get the saved mapping details
106 $mappingArray = CRM_Core_BAO_Mapping::getMappings(CRM_Core_OptionGroup::getValue('mapping_type',
107 'Import Multi value custom data',
108 'name'
109 ));
110 $this->assign('savedMapping', $mappingArray);
111 $this->add('select', 'savedMapping', ts('Mapping Option'), array('' => ts('- select -')) + $mappingArray);
112
113 if ($loadeMapping = $this->get('loadedMapping')) {
114 $this->assign('loadedMapping', $loadeMapping);
115 $this->setDefaults(array('savedMapping' => $loadeMapping));
116 }
117
118 //contact types option
119 $contactOptions = array();
120 if (CRM_Contact_BAO_ContactType::isActive('Individual')) {
121 $contactOptions[] = $this->createElement('radio',
122 NULL, NULL, ts('Individual'), CRM_Import_Parser::CONTACT_INDIVIDUAL
123 );
124 }
125 if (CRM_Contact_BAO_ContactType::isActive('Household')) {
126 $contactOptions[] = $this->createElement('radio',
127 NULL, NULL, ts('Household'), CRM_Import_Parser::CONTACT_HOUSEHOLD
128 );
129 }
130 if (CRM_Contact_BAO_ContactType::isActive('Organization')) {
131 $contactOptions[] = $this->createElement('radio',
132 NULL, NULL, ts('Organization'), CRM_Import_Parser::CONTACT_ORGANIZATION
133 );
134 }
135
136 $this->addGroup($contactOptions, 'contactType',
137 ts('Contact Type')
138 );
139
140 $this->setDefaults(array(
141 'contactType' =>
142 CRM_Import_Parser::CONTACT_INDIVIDUAL,
143 ));
144
145 //build date formats
146 CRM_Core_Form_Date::buildAllowedDateFormats($this);
147
148 $this->addButtons(array(
149 array(
150 'type' => 'upload',
151 'name' => ts('Continue >>'),
152 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
153 'isDefault' => TRUE,
154 ),
155 array(
156 'type' => 'cancel',
157 'name' => ts('Cancel'),
158 ),
159 )
160 );
161 }
162
163 /**
164 * Process the uploaded file
165 *
166 * @return void
167 * @access public
168 */
169 public function postProcess() {
170 $this->controller->resetPage('MapField');
171
172 $fileName = $this->controller->exportValue($this->_name, 'uploadFile');
173 $skipColumnHeader = $this->controller->exportValue($this->_name, 'skipColumnHeader');
174 $contactType = $this->controller->exportValue($this->_name, 'contactType');
175 $dateFormats = $this->controller->exportValue($this->_name, 'dateFormats');
176 $savedMapping = $this->controller->exportValue($this->_name, 'savedMapping');
177 $multipleCustomData = $this->controller->exportValue($this->_name, 'multipleCustomData');
178
179 $this->set('contactType', $contactType);
180 $this->set('dateFormats', $dateFormats);
181 $this->set('savedMapping', $savedMapping);
182 $this->set('multipleCustomData', $multipleCustomData);
183
184 $session = CRM_Core_Session::singleton();
185 $session->set("dateTypes", $dateFormats);
186
187 $config = CRM_Core_Config::singleton();
188 $seperator = $config->fieldSeparator;
189
190 $mapper = array();
191
192 $parser = new CRM_Custom_Import_Parser_Api($mapper);
193 $parser->setEntity($multipleCustomData);
194
195 $parser->setMaxLinesToProcess(100);
196 $parser->run($fileName, $seperator,
197 $mapper,
198 $skipColumnHeader,
199 CRM_Import_Parser::MODE_MAPFIELD, $contactType
200 );
201
202 // add all the necessary variables to the form
203 $parser->set($this);
204 }
205
206 /**
207 * Return a descriptive name for the page, used in wizard header
208 *
209 * @return string
210 * @access public
211 */
212 public function getTitle() {
213 return ts('Upload Data');
214 }
215}