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