commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Activity / Import / Form / DataSource.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
31 * @copyright CiviCRM LLC (c) 2004-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * This class gets the name of the file to upload
38 */
39 class CRM_Activity_Import_Form_DataSource extends CRM_Core_Form {
40
41 /**
42 * Set variables up before form is built.
43 *
44 * @return void
45 */
46 public function preProcess() {
47 $session = CRM_Core_Session::singleton();
48 $session->pushUserContext(CRM_Utils_System::url('civicrm/import/activity', 'reset=1'));
49 // check for post max size
50 CRM_Core_Config_Defaults::formatUnitSize(ini_get('post_max_size'), TRUE);
51 }
52
53 /**
54 * Build the form object.
55 *
56 * @return void
57 */
58 public function buildQuickForm() {
59 //Setting Upload File Size
60 $config = CRM_Core_Config::singleton();
61
62 $uploadFileSize = CRM_Core_Config_Defaults::formatUnitSize($config->maxFileSize . 'm', TRUE);
63 $uploadSize = round(($uploadFileSize / (1024 * 1024)), 2);
64
65 $this->assign('uploadSize', $uploadSize);
66 $this->setMaxFileSize($uploadFileSize);
67 $this->add('File', 'uploadFile', ts('Import Data File'), 'size=30 maxlength=255', TRUE);
68 $this->addRule('uploadFile', ts('File size should be less than %1 MBytes (%2 bytes)', array(
69 1 => $uploadSize,
70 2 => $uploadFileSize,
71 )), 'maxfilesize', $uploadFileSize);
72 $this->addRule('uploadFile', ts('A valid file must be uploaded.'), 'uploadedfile');
73 $this->addRule('uploadFile', ts('Input file must be in CSV format'), 'utf8File');
74
75 $this->addElement('checkbox', 'skipColumnHeader', ts('First row contains column headers'));
76
77 $duplicateOptions = array();
78 $duplicateOptions[] = $this->createElement('radio',
79 NULL, NULL, ts('Skip'), CRM_Import_Parser::DUPLICATE_SKIP
80 );
81 $duplicateOptions[] = $this->createElement('radio',
82 NULL, NULL, ts('Update'), CRM_Import_Parser::DUPLICATE_UPDATE
83 );
84 $duplicateOptions[] = $this->createElement('radio',
85 NULL, NULL, ts('Fill'), CRM_Import_Parser::DUPLICATE_FILL
86 );
87
88 $this->addGroup($duplicateOptions, 'onDuplicate',
89 ts('On duplicate entries')
90 );
91
92 //get the saved mapping details
93 $mappingArray = CRM_Core_BAO_Mapping::getMappings(CRM_Core_OptionGroup::getValue('mapping_type',
94 'Import Activity',
95 'name'
96 ));
97 $this->assign('savedMapping', $mappingArray);
98 $this->add('select', 'savedMapping', ts('Mapping Option'), array('' => ts('- select -')) + $mappingArray);
99
100 if ($loadeMapping = $this->get('loadedMapping')) {
101 $this->assign('loadedMapping', $loadeMapping);
102 $this->setDefaults(array('savedMapping' => $loadeMapping));
103 }
104
105 $this->setDefaults(array(
106 'onDuplicate' => CRM_Import_Parser::DUPLICATE_SKIP,
107 ));
108
109 //build date formats
110 CRM_Core_Form_Date::buildAllowedDateFormats($this);
111
112 $this->addButtons(array(
113 array(
114 'type' => 'upload',
115 'name' => ts('Continue'),
116 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
117 'isDefault' => TRUE,
118 ),
119 array(
120 'type' => 'cancel',
121 'name' => ts('Cancel'),
122 ),
123 )
124 );
125 }
126
127 /**
128 * Process the uploaded file.
129 *
130 * @return void
131 */
132 public function postProcess() {
133 $this->controller->resetPage('MapField');
134
135 $fileName = $this->controller->exportValue($this->_name, 'uploadFile');
136 $skipColumnHeader = $this->controller->exportValue($this->_name, 'skipColumnHeader');
137 $onDuplicate = $this->controller->exportValue($this->_name, 'onDuplicate');
138 $dateFormats = $this->controller->exportValue($this->_name, 'dateFormats');
139 $savedMapping = $this->controller->exportValue($this->_name, 'savedMapping');
140
141 $this->set('onDuplicate', $onDuplicate);
142 $this->set('dateFormats', $dateFormats);
143 $this->set('savedMapping', $savedMapping);
144
145 $session = CRM_Core_Session::singleton();
146 $session->set("dateTypes", $dateFormats);
147
148 $config = CRM_Core_Config::singleton();
149 $seperator = $config->fieldSeparator;
150
151 $mapper = array();
152
153 $parser = new CRM_Activity_Import_Parser_Activity($mapper);
154 $parser->setMaxLinesToProcess(100);
155 $parser->run($fileName, $seperator,
156 $mapper,
157 $skipColumnHeader,
158 CRM_Import_Parser::MODE_MAPFIELD
159 );
160
161 // add all the necessary variables to the form
162 $parser->set($this);
163 }
164
165 /**
166 * Return a descriptive name for the page, used in wizard header
167 *
168 * @return string
169 */
170 public function getTitle() {
171 return ts('Upload Data');
172 }
173
174 }