Merge pull request #11821 from michaelmcandrew/500-http-response-code
[civicrm-core.git] / CRM / Import / Form / DataSource.php
CommitLineData
81c3812a
CW
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
81c3812a 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
81c3812a
CW
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/**
81c3812a 29 * @package CRM
8c9251b3 30 * @copyright CiviCRM LLC (c) 2004-2018
81c3812a
CW
31 */
32
33/**
2b4bc760 34 * Base class for upload-only import forms (all but Contact import).
81c3812a
CW
35 */
36abstract class CRM_Import_Form_DataSource extends CRM_Core_Form {
37
38 /**
39 * Set variables up before form is built.
81c3812a
CW
40 */
41 public function preProcess() {
42 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE);
43 $params = "reset=1";
44 if ($this->_id) {
45 $params .= "&id={$this->_id}";
46 }
47 CRM_Core_Session::singleton()->pushUserContext(CRM_Utils_System::url(static::PATH, $params));
48
49 // check for post max size
2e966dd5 50 CRM_Utils_Number::formatUnitSize(ini_get('post_max_size'), TRUE);
81c3812a
CW
51 }
52
53 /**
54 * Common form elements.
81c3812a
CW
55 */
56 public function buildQuickForm() {
57 $config = CRM_Core_Config::singleton();
58
2e966dd5 59 $uploadFileSize = CRM_Utils_Number::formatUnitSize($config->maxFileSize . 'm', TRUE);
ebcf0a88
JP
60
61 //Fetch uploadFileSize from php_ini when $config->maxFileSize is set to "no limit".
62 if (empty($uploadFileSize)) {
63 $uploadFileSize = CRM_Utils_Number::formatUnitSize(ini_get('upload_max_filesize'), TRUE);
64 }
81c3812a
CW
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(
72 1 => $uploadSize,
73 2 => $uploadFileSize,
74 )), 'maxfilesize', $uploadFileSize);
75 $this->addRule('uploadFile', ts('A valid file must be uploaded.'), 'uploadedfile');
76 $this->addRule('uploadFile', ts('Input file must be in CSV format'), 'utf8File');
77
78 $this->addElement('checkbox', 'skipColumnHeader', ts('First row contains column headers'));
79
19a68bae
CW
80 $this->add('text', 'fieldSeparator', ts('Import Field Separator'), array('size' => 2), TRUE);
81 $this->setDefaults(array('fieldSeparator' => $config->fieldSeparator));
412585fb 82 $mappingArray = CRM_Core_BAO_Mapping::getCreateMappingValues('Import ' . static::IMPORT_ENTITY);
19a68bae 83
81c3812a
CW
84 $this->assign('savedMapping', $mappingArray);
85 $this->add('select', 'savedMapping', ts('Mapping Option'), array('' => ts('- select -')) + $mappingArray);
86
87 if ($loadedMapping = $this->get('loadedMapping')) {
88 $this->assign('loadedMapping', $loadedMapping);
89 $this->setDefaults(array('savedMapping' => $loadedMapping));
90 }
91
92 //build date formats
93 CRM_Core_Form_Date::buildAllowedDateFormats($this);
94
95 $this->addButtons(array(
96 array(
97 'type' => 'upload',
98 'name' => ts('Continue'),
99 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
100 'isDefault' => TRUE,
101 ),
102 array(
103 'type' => 'cancel',
104 'name' => ts('Cancel'),
105 ),
106 )
107 );
108 }
109
110 /**
2b4bc760 111 * A long-winded way to add one radio element to the form.
81c3812a
CW
112 */
113 protected function addContactTypeSelector() {
114 //contact types option
115 $contactOptions = array();
116 if (CRM_Contact_BAO_ContactType::isActive('Individual')) {
117 $contactOptions[] = $this->createElement('radio',
118 NULL, NULL, ts('Individual'), CRM_Import_Parser::CONTACT_INDIVIDUAL
119 );
120 }
121 if (CRM_Contact_BAO_ContactType::isActive('Household')) {
122 $contactOptions[] = $this->createElement('radio',
123 NULL, NULL, ts('Household'), CRM_Import_Parser::CONTACT_HOUSEHOLD
124 );
125 }
126 if (CRM_Contact_BAO_ContactType::isActive('Organization')) {
127 $contactOptions[] = $this->createElement('radio',
128 NULL, NULL, ts('Organization'), CRM_Import_Parser::CONTACT_ORGANIZATION
129 );
130 }
131
132 $this->addGroup($contactOptions, 'contactType',
133 ts('Contact Type')
134 );
135
136 $this->setDefaults(array(
137 'contactType' => CRM_Import_Parser::CONTACT_INDIVIDUAL,
138 ));
139 }
140
141 /**
2b4bc760 142 * Store form values.
143 *
81c3812a
CW
144 * @param array $names
145 */
146 protected function storeFormValues($names) {
147 foreach ($names as $name) {
148 $this->set($name, $this->controller->exportValue($this->_name, $name));
149 }
150 }
151
152 /**
2b4bc760 153 * Common form postProcess.
81c3812a
CW
154 *
155 * @param string $parserClassName
cef29526
SL
156 *
157 * @param string|null $entity
158 * Entity to set for paraser currently only for custom import
81c3812a 159 */
cef29526 160 protected function submitFileForMapping($parserClassName, $entity = NULL) {
81c3812a
CW
161 $this->controller->resetPage('MapField');
162
163 $fileName = $this->controller->exportValue($this->_name, 'uploadFile');
164 $skipColumnHeader = $this->controller->exportValue($this->_name, 'skipColumnHeader');
165
166 $session = CRM_Core_Session::singleton();
167 $session->set("dateTypes", $this->get('dateFormats'));
168
19a68bae 169 $separator = $this->controller->exportValue($this->_name, 'fieldSeparator');
81c3812a
CW
170
171 $mapper = array();
172
173 $parser = new $parserClassName($mapper);
cef29526
SL
174 if ($entity) {
175 $parser->setEntity($this->get($entity));
176 }
81c3812a
CW
177 $parser->setMaxLinesToProcess(100);
178 $parser->run($fileName,
19a68bae 179 $separator,
81c3812a
CW
180 $mapper,
181 $skipColumnHeader,
182 CRM_Import_Parser::MODE_MAPFIELD,
183 $this->get('contactType')
184 );
185
186 // add all the necessary variables to the form
187 $parser->set($this);
188 }
189
190 /**
2b4bc760 191 * Return a descriptive name for the page, used in wizard header.
81c3812a
CW
192 *
193 * @return string
194 */
195 public function getTitle() {
196 return ts('Upload Data');
197 }
198
199}