Merge pull request #23205 from braders/tablink-nodefaults
[civicrm-core.git] / CRM / Import / Form / DataSource.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 * @package CRM
14 * @copyright CiviCRM LLC https://civicrm.org/licensing
15 */
16
17 /**
18 * Base class for upload-only import forms (all but Contact import).
19 */
20 abstract class CRM_Import_Form_DataSource extends CRM_Import_Forms {
21
22 /**
23 * Set variables up before form is built.
24 */
25 public function preProcess() {
26 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE);
27 $params = "reset=1";
28 if ($this->_id) {
29 $params .= "&id={$this->_id}";
30 }
31 CRM_Core_Session::singleton()->pushUserContext(CRM_Utils_System::url(static::PATH, $params));
32
33 // check for post max size
34 CRM_Utils_Number::formatUnitSize(ini_get('post_max_size'), TRUE);
35 }
36
37 /**
38 * Common form elements.
39 */
40 public function buildQuickForm() {
41 $config = CRM_Core_Config::singleton();
42
43 $uploadFileSize = CRM_Utils_Number::formatUnitSize($config->maxFileSize . 'm', TRUE);
44
45 //Fetch uploadFileSize from php_ini when $config->maxFileSize is set to "no limit".
46 if (empty($uploadFileSize)) {
47 $uploadFileSize = CRM_Utils_Number::formatUnitSize(ini_get('upload_max_filesize'), TRUE);
48 }
49 $uploadSize = round(($uploadFileSize / (1024 * 1024)), 2);
50
51 $this->assign('uploadSize', $uploadSize);
52
53 $this->add('File', 'uploadFile', ts('Import Data File'), NULL, TRUE);
54 $this->setMaxFileSize($uploadFileSize);
55 $this->addRule('uploadFile', ts('File size should be less than %1 MBytes (%2 bytes)', [
56 1 => $uploadSize,
57 2 => $uploadFileSize,
58 ]), 'maxfilesize', $uploadFileSize);
59 $this->addRule('uploadFile', ts('A valid file must be uploaded.'), 'uploadedfile');
60 $this->addRule('uploadFile', ts('Input file must be in CSV format'), 'utf8File');
61
62 $this->addElement('checkbox', 'skipColumnHeader', ts('First row contains column headers'));
63
64 $this->add('text', 'fieldSeparator', ts('Import Field Separator'), ['size' => 2], TRUE);
65 $this->setDefaults(['fieldSeparator' => $config->fieldSeparator]);
66 $mappingArray = CRM_Core_BAO_Mapping::getCreateMappingValues('Import ' . static::IMPORT_ENTITY);
67
68 $this->assign('savedMapping', $mappingArray);
69 $this->add('select', 'savedMapping', ts('Saved Field Mapping'), ['' => ts('- select -')] + $mappingArray);
70
71 if ($loadedMapping = $this->get('loadedMapping')) {
72 $this->setDefaults(['savedMapping' => $loadedMapping]);
73 }
74
75 //build date formats
76 CRM_Core_Form_Date::buildAllowedDateFormats($this);
77
78 $this->addButtons([
79 [
80 'type' => 'upload',
81 'name' => ts('Continue'),
82 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
83 'isDefault' => TRUE,
84 ],
85 [
86 'type' => 'cancel',
87 'name' => ts('Cancel'),
88 ],
89 ]);
90 }
91
92 /**
93 * A long-winded way to add one radio element to the form.
94 */
95 protected function addContactTypeSelector() {
96 //contact types option
97 $contactTypeOptions = [];
98 if (CRM_Contact_BAO_ContactType::isActive('Individual')) {
99 $contactTypeOptions[CRM_Import_Parser::CONTACT_INDIVIDUAL] = ts('Individual');
100 }
101 if (CRM_Contact_BAO_ContactType::isActive('Household')) {
102 $contactTypeOptions[CRM_Import_Parser::CONTACT_HOUSEHOLD] = ts('Household');
103 }
104 if (CRM_Contact_BAO_ContactType::isActive('Organization')) {
105 $contactTypeOptions[CRM_Import_Parser::CONTACT_ORGANIZATION] = ts('Organization');
106 }
107 $this->addRadio('contactType', ts('Contact Type'), $contactTypeOptions);
108
109 $this->setDefaults([
110 'contactType' => CRM_Import_Parser::CONTACT_INDIVIDUAL,
111 ]);
112 }
113
114 /**
115 * Store form values.
116 *
117 * @param array $names
118 */
119 protected function storeFormValues($names) {
120 foreach ($names as $name) {
121 $this->set($name, $this->controller->exportValue($this->_name, $name));
122 }
123 }
124
125 /**
126 * Common form postProcess.
127 *
128 * @param string $parserClassName
129 *
130 * @param string|null $entity
131 * Entity to set for paraser currently only for custom import
132 */
133 protected function submitFileForMapping($parserClassName, $entity = NULL) {
134 $this->controller->resetPage('MapField');
135 CRM_Core_Session::singleton()->set('dateTypes', $this->getSubmittedValue('dateFormats'));
136
137 $mapper = [];
138
139 $parser = new $parserClassName($mapper);
140 if ($entity) {
141 $parser->setEntity($this->get($entity));
142 }
143 $parser->setMaxLinesToProcess(100);
144 $parser->run(
145 $this->getSubmittedValue('uploadFile'),
146 $this->getSubmittedValue('fieldSeparator'),
147 [],
148 $this->getSubmittedValue('skipColumnHeader'),
149 CRM_Import_Parser::MODE_MAPFIELD,
150 $this->getSubmittedValue('contactType')
151 );
152
153 // add all the necessary variables to the form
154 $parser->set($this);
155 }
156
157 /**
158 * Return a descriptive name for the page, used in wizard header.
159 *
160 * @return string
161 */
162 public function getTitle() {
163 return ts('Upload Data');
164 }
165
166 }