Merge pull request #1176 from pratik-joshi/CRM-13025
[civicrm-core.git] / CRM / PCP / Form / PCPAccount.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35
36 /**
37 * This class generates form components for processing a ontribution
38 *
39 */
40 class CRM_PCP_Form_PCPAccount extends CRM_Core_Form {
41
42 /**
43 *Variable defined for Contribution Page Id
44 *
45 */
46
47 public $_pageId = NULL;
48 public $_id = NULL;
49 public $_component = NULL;
50
51 /**
52 * are we in single form mode or wizard mode?
53 *
54 * @var boolean
55 * @access protected
56 */
57 public $_single;
58
59 public function preProcess() {
60 $session = CRM_Core_Session::singleton();
61 $config = CRM_Core_Config::singleton();
62 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE);
63 $this->_pageId = CRM_Utils_Request::retrieve('pageId', 'Positive', $this);
64 $this->_component = CRM_Utils_Request::retrieve('component', 'String', $this);
65 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
66
67 if (!$this->_pageId && $config->userFramework == 'Joomla' && $config->userFrameworkFrontend) {
68 $this->_pageId = $this->_id;
69 }
70
71 if ($this->_id) {
72 $contactID = CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCP', $this->_id, 'contact_id');
73 }
74
75 $this->_contactID = isset($contactID) ? $contactID : $session->get('userID');
76 if (!$this->_pageId) {
77 if (!$this->_id) {
78 $msg = ts('We can\'t load the requested web page due to an incomplete link. This can be caused by using your browser\'s Back button or by using an incomplete or invalid link.');
79 CRM_Core_Error::fatal($msg);
80 }
81 else {
82 $this->_pageId = CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCP', $this->_id, 'page_id');
83 }
84 }
85
86 if (!$this->_pageId) {
87 CRM_Core_Error::fatal(ts('Could not find source page id.'));
88 }
89
90 $this->_single = $this->get('single');
91
92 if (!$this->_single) {
93 $this->_single = $session->get('singleForm');
94 }
95
96 $this->set('action', $this->_action);
97 $this->set('page_id', $this->_id);
98 $this->set('component_page_id', $this->_pageId);
99
100 // we do not want to display recently viewed items, so turn off
101 $this->assign('displayRecent', FALSE);
102
103 $this->assign('pcpComponent', $this->_component);
104
105 if ($this->_single) {
106 CRM_Utils_System::setTitle(ts('Update Contact Information'));
107 }
108 }
109
110 function setDefaultValues() {
111 if ($this->_contactID) {
112 foreach ($this->_fields as $name => $dontcare) {
113 $fields[$name] = 1;
114 }
115
116 CRM_Core_BAO_UFGroup::setProfileDefaults($this->_contactID, $fields, $this->_defaults);
117 }
118 $stateCountryMap = array();
119 //set custom field defaults
120 foreach ($this->_fields as $name => $field) {
121 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($name)) {
122 if (!isset($this->_defaults[$name])) {
123 CRM_Core_BAO_CustomField::setProfileDefaults($customFieldID, $name, $this->_defaults,
124 NULL, CRM_Profile_Form::MODE_REGISTER
125 );
126 }
127 }
128 if ((substr($name, 0, 14) === 'state_province') || (substr($name, 0, 7) === 'country') || (substr($name, 0, 6) === 'county')) {
129 list($fieldName, $index) = CRM_Utils_System::explode('-', $name, 2);
130 if (!array_key_exists($index, $stateCountryMap)) {
131 $stateCountryMap[$index] = array();
132 }
133 $stateCountryMap[$index][$fieldName] = $name;
134 }
135
136 // also take care of state country widget
137 if (!empty($stateCountryMap)) {
138 CRM_Core_BAO_Address::addStateCountryMap($stateCountryMap, $this->_defaults);
139 }
140 }
141 // now fix all state country selectors
142 CRM_Core_BAO_Address::fixAllStateSelects($this, $this->_defaults);
143 return $this->_defaults;
144 }
145
146 /**
147 * Function to build the form
148 *
149 * @return None
150 * @access public
151 */
152 public function buildQuickForm() {
153 $id = CRM_PCP_BAO_PCP::getSupporterProfileId($this->_pageId, $this->_component);
154 if (CRM_PCP_BAO_PCP::checkEmailProfile($id)) {
155 $this->assign('profileDisplay', TRUE);
156 }
157 $fields = NULL;
158 if ($this->_contactID) {
159 if (CRM_Core_BAO_UFGroup::filterUFGroups($id, $this->_contactID)) {
160 $fields = CRM_Core_BAO_UFGroup::getFields($id, FALSE, CRM_Core_Action::ADD);
161 }
162 $this->addFormRule(array('CRM_PCP_Form_PCPAccount', 'formRule'), $this);
163 }
164 else {
165 CRM_Core_BAO_CMSUser::buildForm($this, $id, TRUE);
166
167 $fields = CRM_Core_BAO_UFGroup::getFields($id, FALSE, CRM_Core_Action::ADD);
168 }
169
170 if ($fields) {
171 $this->assign('fields', $fields);
172 $addCaptcha = FALSE;
173 foreach ($fields as $key => $field) {
174 if (isset($field['data_type']) && $field['data_type'] == 'File') {
175 // ignore file upload fields
176 continue;
177 }
178 CRM_Core_BAO_UFGroup::buildProfile($this, $field, CRM_Profile_Form::MODE_CREATE);
179 $this->_fields[$key] = $field;
180 if ($field['add_captcha']) {
181 $addCaptcha = TRUE;
182 }
183 }
184
185 if ($addCaptcha) {
186 $captcha = &CRM_Utils_ReCAPTCHA::singleton();
187 $captcha->add($this);
188 $this->assign('isCaptcha', TRUE);
189 }
190 }
191
192
193 if ($this->_component == 'contribute') {
194 $this->assign('campaignName', CRM_Contribute_PseudoConstant::contributionPage($this->_pageId));
195 }
196 elseif ($this->_component == 'event') {
197 $this->assign('campaignName', CRM_Event_PseudoConstant::event($this->_pageId));
198 }
199
200 if ($this->_single) {
201 $button = array(
202 array('type' => 'next',
203 'name' => ts('Save'),
204 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
205 'isDefault' => TRUE,
206 ),
207 array(
208 'type' => 'cancel',
209 'name' => ts('Cancel'),
210 ),
211 );
212 }
213 else {
214 $button[] = array(
215 'type' => 'next',
216 'name' => ts('Continue >>'),
217 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
218 'isDefault' => TRUE,
219 );
220 }
221 $this->addFormRule(array('CRM_PCP_Form_PCPAccount', 'formRule'), $this);
222 $this->addButtons($button);
223 }
224
225 /**
226 * global form rule
227 *
228 * @param array $fields the input form values
229 * @param array $files the uploaded files if any
230 * @param array $options additional user data
231 *
232 * @return true if no errors, else array of errors
233 * @access public
234 * @static
235 */
236 static function formRule($fields, $files, $self) {
237 $errors = array();
238 foreach ($fields as $key => $value) {
239 if (strpos($key, 'email-') !== FALSE && !empty($value)) {
240 $ufContactId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFMatch', $value, 'contact_id', 'uf_name');
241 if ($ufContactId && $ufContactId != $self->_contactID) {
242 $errors[$key] = ts('There is already an user associated with this email address. Please enter different email address.');
243 }
244 }
245 }
246 return empty($errors) ? TRUE : $errors;
247 }
248
249 /**
250 * Function to process the form
251 *
252 * @access public
253 *
254 * @return None
255 */
256 public function postProcess() {
257 $params = $this->controller->exportValues($this->getName());
258
259 if (!$this->_contactID && isset($params['cms_create_account'])) {
260 foreach ($params as $key => $value) {
261 if (substr($key, 0, 5) == 'email' && !empty($value)) {
262 list($fieldName, $locTypeId) = CRM_Utils_System::explode('-', $key, 2);
263 $isPrimary = 0;
264 if ($locTypeId == 'Primary') {
265 $locTypeDefault = CRM_Core_BAO_LocationType::getDefault();
266 $locTypeId = NULL;
267 if ($locTypeDefault) {
268 $locTypeId = $locTypeDefault->id;
269 }
270 $isPrimary = 1;
271 }
272
273 $params['email'] = array();
274 $params['email'][1]['email'] = $value;
275 $params['email'][1]['location_type_id'] = $locTypeId;
276 $params['email'][1]['is_primary'] = $isPrimary;
277 }
278 }
279 }
280
281 $dedupeParams = CRM_Dedupe_Finder::formatParams($params, 'Individual');
282 $ids = CRM_Dedupe_Finder::dupesByParams($dedupeParams, 'Individual', 'Unsupervised');
283 if ($ids) {
284 $this->_contactID = $ids['0'];
285 }
286 $contactID = &CRM_Contact_BAO_Contact::createProfileContact($params, $this->_fields, $this->_contactID);
287 $this->set('contactID', $contactID);
288
289 if (!empty($params['email'])) {
290 $params['email'] = $params['email'][1]['email'];
291 }
292
293 CRM_Contribute_BAO_Contribution_Utils::createCMSUser($params, $contactID, 'email');
294 }
295 }
296