INFRA-132 - Spaces around "."
[civicrm-core.git] / CRM / Contribute / 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_Contribute_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/contribute/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 contributions'), CRM_Import_Parser::DUPLICATE_SKIP
6a488035
TO
78 );
79 $duplicateOptions[] = $this->createElement('radio',
a05662ef 80 NULL, NULL, ts('Update existing contributions'), CRM_Import_Parser::DUPLICATE_UPDATE
6a488035
TO
81 );
82 $this->addGroup($duplicateOptions, 'onDuplicate',
83 ts('Import mode')
84 );
85
86 //get the saved mapping details
87 $mappingArray = CRM_Core_BAO_Mapping::getMappings(CRM_Core_OptionGroup::getValue('mapping_type',
88 'Import Contribution',
89 'name'
90 ));
91 $this->assign('savedMapping', $mappingArray);
92 $this->add('select', 'savedMapping', ts('Mapping Option'), array('' => ts('- select -')) + $mappingArray);
93 $this->addElement('submit', 'loadMapping', ts('Load Mapping'), NULL, array('onclick' => 'checkSelect()'));
94
95 if ($loadeMapping = $this->get('loadedMapping')) {
96 $this->assign('loadedMapping', $loadeMapping);
97 $this->setDefaults(array('savedMapping' => $loadeMapping));
98 }
99
100 $this->setDefaults(array(
101 'onDuplicate' =>
a05662ef 102 CRM_Import_Parser::DUPLICATE_SKIP,
6a488035
TO
103 ));
104
105 //contact types option
106 $contactOptions = array();
107 if (CRM_Contact_BAO_ContactType::isActive('Individual')) {
108 $contactOptions[] = $this->createElement('radio',
a05662ef 109 NULL, NULL, ts('Individual'), CRM_Import_Parser::CONTACT_INDIVIDUAL
6a488035
TO
110 );
111 }
112 if (CRM_Contact_BAO_ContactType::isActive('Household')) {
113 $contactOptions[] = $this->createElement('radio',
a05662ef 114 NULL, NULL, ts('Household'), CRM_Import_Parser::CONTACT_HOUSEHOLD
6a488035
TO
115 );
116 }
117 if (CRM_Contact_BAO_ContactType::isActive('Organization')) {
118 $contactOptions[] = $this->createElement('radio',
a05662ef 119 NULL, NULL, ts('Organization'), CRM_Import_Parser::CONTACT_ORGANIZATION
6a488035
TO
120 );
121 }
122
123 $this->addGroup($contactOptions, 'contactType',
124 ts('Contact Type')
125 );
126
127 $this->setDefaults(array(
128 'contactType' =>
a05662ef 129 CRM_Import_Parser::CONTACT_INDIVIDUAL,
6a488035
TO
130 ));
131
132 //build date formats
133 CRM_Core_Form_Date::buildAllowedDateFormats($this);
134
135 $this->addButtons(array(
136 array(
137 'type' => 'upload',
138 'name' => ts('Continue >>'),
139 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
140 'isDefault' => TRUE,
141 ),
142 array(
143 'type' => 'cancel',
144 'name' => ts('Cancel'),
145 ),
146 )
147 );
148 }
149
150 /**
151 * Process the uploaded file
152 *
153 * @return void
6a488035
TO
154 */
155 public function postProcess() {
156 $this->controller->resetPage('MapField');
157
158 $fileName = $this->controller->exportValue($this->_name, 'uploadFile');
159 $skipColumnHeader = $this->controller->exportValue($this->_name, 'skipColumnHeader');
160 $onDuplicate = $this->controller->exportValue($this->_name, 'onDuplicate');
161 $contactType = $this->controller->exportValue($this->_name, 'contactType');
162 $dateFormats = $this->controller->exportValue($this->_name, 'dateFormats');
163 $savedMapping = $this->controller->exportValue($this->_name, 'savedMapping');
164
165 $this->set('onDuplicate', $onDuplicate);
166 $this->set('contactType', $contactType);
167 $this->set('dateFormats', $dateFormats);
168 $this->set('savedMapping', $savedMapping);
169
170 $session = CRM_Core_Session::singleton();
171 $session->set("dateTypes", $dateFormats);
172
173 $config = CRM_Core_Config::singleton();
174 $seperator = $config->fieldSeparator;
175
176 $mapper = array();
177
178 $parser = new CRM_Contribute_Import_Parser_Contribution($mapper);
179 $parser->setMaxLinesToProcess(100);
180 $parser->run($fileName, $seperator,
181 $mapper,
182 $skipColumnHeader,
a05662ef 183 CRM_Import_Parser::MODE_MAPFIELD, $contactType
6a488035
TO
184 );
185
186 // add all the necessary variables to the form
187 $parser->set($this);
188 }
189
190 /**
191 * Return a descriptive name for the page, used in wizard header
192 *
193 * @return string
6a488035
TO
194 */
195 public function getTitle() {
196 return ts('Upload Data');
197 }
198}