Merge pull request #15168 from MegaphoneJon/class-fixes
[civicrm-core.git] / CRM / Campaign / Form / Petition / Signature.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
ce064e4f 35 * This class generates form components for processing a petition signature.
6a488035
TO
36 */
37class CRM_Campaign_Form_Petition_Signature extends CRM_Core_Form {
7da04cde 38 const EMAIL_THANK = 1, EMAIL_CONFIRM = 2, MODE_CREATE = 4;
6a488035
TO
39
40 protected $_mode;
41
42 /**
100fef9d 43 * The id of the contact associated with this signature
6a488035
TO
44 *
45 * @var int
6a488035
TO
46 */
47 public $_contactId;
48
49 /**
50 * Is this a logged in user
51 *
52 * @var int
53 */
54 protected $_loggedIn = FALSE;
55
56 /**
57 * The contact type
58 *
353ffa53 59 * @var string ("Individual"/"Household"/"Organization"). Never been tested for something else than Individual
6a488035
TO
60 */
61 protected $_ctype = 'Individual';
62
63 /**
64 * The contact profile id attached with this petition
65 *
66 * @var int
67 */
68 protected $_contactProfileId;
69
70 /**
100fef9d 71 * The contact profile fields used for this petition
6a488035
TO
72 *
73 * @var array
74 */
75 public $_contactProfileFields;
76
77 /**
78 * The activity profile id attached with this petition
79 *
80 * @var int
81 */
82 protected $_activityProfileId;
83
84 /**
100fef9d 85 * The activity profile fields used for this petition
6a488035
TO
86 *
87 * @var array
88 */
89 public $_activityProfileFields;
90
91 /**
100fef9d 92 * The id of the survey (petition) we are proceessing
6a488035
TO
93 *
94 * @var int
6a488035
TO
95 */
96 public $_surveyId;
97
98 /**
99 * The tag id used to set against contacts with unconfirmed email
100 *
101 * @var int
102 */
103 protected $_tagId;
104
105 /**
100fef9d 106 * Values to use for custom profiles
6a488035
TO
107 *
108 * @var array
6a488035
TO
109 */
110 public $_values;
111
112 /**
113 * The params submitted by the form
114 *
115 * @var array
6a488035
TO
116 */
117 protected $_params;
118
119 /**
100fef9d 120 * Which email send mode do we use
6a488035
TO
121 *
122 * @var int
123 * EMAIL_THANK = 1,
124 * connected user via login/pwd - thank you
125 * or dedupe contact matched who doesn't have a tag CIVICRM_TAG_UNCONFIRMED - thank you
126 * or login using fb connect - thank you + click to add msg to fb wall
127 * EMAIL_CONFIRM = 2;
128 * send a confirmation request email
129 */
130 protected $_sendEmailMode;
131
132 protected $_image_URL;
133
30c4e065 134 /**
30c4e065 135 */
00be9182 136 public function __construct() {
6a488035
TO
137 parent::__construct();
138 // this property used by civicrm_fb module and if true, forces thank you email to be sent
139 // for users signing in via Facebook connect; also sets Fb email to check against
140 $this->forceEmailConfirmed['flag'] = FALSE;
141 $this->forceEmailConfirmed['email'] = '';
142 }
143
30c4e065
EM
144 /**
145 * @return mixed
146 */
00be9182 147 public function getContactID() {
6a488035
TO
148 $tempID = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
149
150 // force to ignore the authenticated user
151 if ($tempID === '0') {
152 return $tempID;
153 }
154
155 //check if this is a checksum authentication
156 $userChecksum = CRM_Utils_Request::retrieve('cs', 'String', $this);
157 if ($userChecksum) {
158 //check for anonymous user.
159 $validUser = CRM_Contact_BAO_Contact_Utils::validChecksum($tempID, $userChecksum);
160 if ($validUser) {
161 return $tempID;
162 }
163 }
164
165 // check if the user is registered and we have a contact ID
166 $session = CRM_Core_Session::singleton();
167 return $session->get('userID');
168 }
169
170 public function preProcess() {
171 $this->bao = new CRM_Campaign_BAO_Petition();
172 $this->_mode = self::MODE_CREATE;
173
174 //get the survey id
175 $this->_surveyId = CRM_Utils_Request::retrieve('sid', 'Positive', $this);
176
177 //some sanity checks
178 if (!$this->_surveyId) {
179 CRM_Core_Error::fatal('Petition id is not valid. (it needs a "sid" in the url).');
180 return;
181 }
182 //check petition is valid and active
183 $params['id'] = $this->_surveyId;
be2fb01f 184 $this->petition = [];
6a488035
TO
185 CRM_Campaign_BAO_Survey::retrieve($params, $this->petition);
186 if (empty($this->petition)) {
187 CRM_Core_Error::fatal('Petition doesn\'t exist.');
188 }
189 if ($this->petition['is_active'] == 0) {
190 CRM_Core_Error::fatal('Petition is no longer active.');
191 }
192
193 //get userID from session
194 $session = CRM_Core_Session::singleton();
195
196 //get the contact id for this user if logged in
197 $this->_contactId = $this->getContactId();
198 if (isset($this->_contactId)) {
199 $this->_loggedIn = TRUE;
200 }
201
202 // add the custom contact and activity profile fields to the signature form
203
be2fb01f 204 $ufJoinParams = [
6a488035
TO
205 'entity_id' => $this->_surveyId,
206 'entity_table' => 'civicrm_survey',
207 'module' => 'CiviCampaign',
208 'weight' => 2,
be2fb01f 209 ];
6a488035
TO
210
211 $this->_contactProfileId = CRM_Core_BAO_UFJoin::findUFGroupId($ufJoinParams);
212 if ($this->_contactProfileId) {
213 $this->_contactProfileFields = CRM_Core_BAO_UFGroup::getFields($this->_contactProfileId, FALSE, CRM_Core_Action::ADD);
214 }
215 if (!isset($this->_contactProfileFields['email-Primary'])) {
216 CRM_Core_Error::fatal('The contact profile needs to contain the primary email address field');
217 }
218
6a488035
TO
219 $ufJoinParams['weight'] = 1;
220 $this->_activityProfileId = CRM_Core_BAO_UFJoin::findUFGroupId($ufJoinParams);
221
222 if ($this->_activityProfileId) {
223 $this->_activityProfileFields = CRM_Core_BAO_UFGroup::getFields($this->_activityProfileId, FALSE, CRM_Core_Action::ADD);
224 }
225
226 $this->setDefaultValues();
227 CRM_Utils_System::setTitle($this->petition['title']);
228 }
229
230 /**
c490a46a 231 * Set default values for the form.
6a488035 232 */
00be9182 233 public function setDefaultValues() {
be2fb01f 234 $this->_defaults = [];
6a488035
TO
235 if ($this->_contactId) {
236 CRM_Core_BAO_UFGroup::setProfileDefaults($this->_contactId, $this->_contactProfileFields, $this->_defaults, TRUE);
237 if ($this->_activityProfileId) {
238 CRM_Core_BAO_UFGroup::setProfileDefaults($this->_contactId, $this->_activityProfileFields, $this->_defaults, TRUE);
239 }
240 }
241
242 //set custom field defaults
243
244 foreach ($this->_contactProfileFields as $name => $field) {
245 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($name)) {
246 $htmlType = $field['html_type'];
247
248 if (!isset($this->_defaults[$name])) {
249 CRM_Core_BAO_CustomField::setProfileDefaults($customFieldID,
250 $name,
251 $this->_defaults,
252 $this->_contactId,
253 $this->_mode
254 );
255 }
256 }
257 }
258
259 if ($this->_activityProfileFields) {
260 foreach ($this->_activityProfileFields as $name => $field) {
261 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($name)) {
262 $htmlType = $field['html_type'];
263
264 if (!isset($this->_defaults[$name])) {
265 CRM_Core_BAO_CustomField::setProfileDefaults($customFieldID,
266 $name,
267 $this->_defaults,
268 $this->_contactId,
269 $this->_mode
270 );
271 }
272 }
273 }
274 }
275
276 $this->setDefaults($this->_defaults);
277 }
278
279 public function buildQuickForm() {
280 $this->assign('survey_id', $this->_surveyId);
281 $this->assign('petitionTitle', $this->petition['title']);
282 if (isset($_COOKIE['signed_' . $this->_surveyId])) {
283 if (isset($_COOKIE['confirmed_' . $this->_surveyId])) {
284 $this->assign('duplicate', "confirmed");
285 }
286 else {
287 $this->assign('duplicate', "unconfirmed");
288 }
289 return;
290 }
291
292 $this->applyFilter('__ALL__', 'trim');
293
294 $this->buildCustom($this->_contactProfileId, 'petitionContactProfile');
295 if ($this->_activityProfileId) {
296 $this->buildCustom($this->_activityProfileId, 'petitionActivityProfile');
297 }
298 // add buttons
be2fb01f 299 $this->addButtons([
5d4fcf54
TO
300 [
301 'type' => 'upload',
302 'name' => ts('Sign the Petition'),
303 'isDefault' => TRUE,
304 ],
305 ]);
6a488035
TO
306 }
307
308 /**
dc195289 309 * add the rules (mainly global rules) for form.
6a488035
TO
310 * All local rules are added near the element
311 *
da6b46f4
EM
312 * @param $fields
313 * @param $files
314 * @param $errors
315 *
6a488035 316 * @see valid_date
ce064e4f 317 * @return array|bool
6a488035 318 */
00be9182 319 public static function formRule($fields, $files, $errors) {
be2fb01f 320 $errors = [];
6a488035
TO
321
322 return empty($errors) ? TRUE : $errors;
323 }
324
325 /**
fe482240 326 * Form submission of petition signature.
6a488035
TO
327 */
328 public function postProcess() {
aaffa79f 329 $tag_name = Civi::settings()->get('tag_unconfirmed');
6a488035 330
6a488035
TO
331 if ($tag_name) {
332 // Check if contact 'email confirmed' tag exists, else create one
333 // This should be in the petition module initialise code to create a default tag for this
334 $tag_params['name'] = $tag_name;
335 $tag_params['version'] = 3;
336 $tag = civicrm_api('tag', 'get', $tag_params);
337 if ($tag['count'] == 0) {
338 //create tag
339 $tag_params['description'] = $tag_name;
340 $tag_params['is_reserved'] = 1;
341 $tag_params['used_for'] = 'civicrm_contact';
342 $tag = civicrm_api('tag', 'create', $tag_params);
343 }
344 $this->_tagId = $tag['id'];
345 }
346
347 // export the field values to be used for saving the profile form
348 $params = $this->controller->exportValues($this->_name);
349
350 $session = CRM_Core_Session::singleton();
351 // format params
352 $params['last_modified_id'] = $session->get('userID');
353 $params['last_modified_date'] = date('YmdHis');
354
355 if ($this->_action & CRM_Core_Action::ADD) {
356 $params['created_id'] = $session->get('userID');
357 $params['created_date'] = date('YmdHis');
358 }
359
360 if (isset($this->_surveyId)) {
361 $params['sid'] = $this->_surveyId;
362 }
363
364 if (isset($this->_contactId)) {
365 $params['contactId'] = $this->_contactId;
366 }
367
368 // if logged in user, skip dedupe
369 if ($this->_loggedIn) {
370 $ids[0] = $this->_contactId;
371 }
372 else {
be2fb01f 373 $ids = CRM_Contact_BAO_Contact::getDuplicateContacts($params, $this->_ctype, 'Unsupervised', [], FALSE);
6a488035
TO
374 }
375
353ffa53 376 $petition_params['id'] = $this->_surveyId;
be2fb01f 377 $petition = [];
353ffa53 378 CRM_Campaign_BAO_Survey::retrieve($petition_params, $petition);
6a488035
TO
379
380 switch (count($ids)) {
381 case 0:
382 //no matching contacts - create a new contact
383 // Add a source for this new contact
384 $params['source'] = ts('Petition Signature') . ' ' . $this->petition['title'];
385
386 if ($this->petition['bypass_confirm']) {
387 // send thank you email directly, bypassing confirmation
388 $this->_sendEmailMode = self::EMAIL_THANK;
389 // Set status for signature activity to completed
390 $params['statusId'] = 2;
391 }
392 else {
353ffa53 393 $this->_sendEmailMode = self::EMAIL_CONFIRM;
6a488035 394
353ffa53
TO
395 // Set status for signature activity to scheduled until email is verified
396 $params['statusId'] = 1;
6a488035
TO
397 }
398 break;
399
400 case 1:
401 $this->_contactId = $params['contactId'] = $ids[0];
402
403 // check if user has already signed this petition - redirects to Thank You if true
404 $this->redirectIfSigned($params);
405
406 if ($this->petition['bypass_confirm']) {
407 // send thank you email directly, bypassing confirmation
408 $this->_sendEmailMode = self::EMAIL_THANK;
409 // Set status for signature activity to completed
410 $params['statusId'] = 2;
411 break;
412 }
413
414 // dedupe matched single contact, check for 'unconfirmed' tag
415 if ($tag_name) {
353ffa53 416 $tag = new CRM_Core_DAO_EntityTag();
6a488035 417 $tag->entity_id = $this->_contactId;
353ffa53 418 $tag->tag_id = $this->_tagId;
6a488035
TO
419
420 if (!($tag->find())) {
421 // send thank you email directly, the user is known and validated
422 $this->_sendEmailMode = self::EMAIL_THANK;
423 // Set status for signature activity to completed
424 $params['statusId'] = 2;
425 }
426 else {
427 // send email verification email
428 $this->_sendEmailMode = self::EMAIL_CONFIRM;
429 // Set status for signature activity to scheduled until email is verified
430 $params['statusId'] = 1;
431 }
432 }
433 break;
434
435 default:
436 // more than 1 matching contact
437 // for time being, take the first matching contact (not sure that's the best strategy, but better than creating another duplicate)
438 $this->_contactId = $params['contactId'] = $ids[0];
439
440 // check if user has already signed this petition - redirects to Thank You if true
441 $this->redirectIfSigned($params);
442
443 if ($this->petition['bypass_confirm']) {
444 // send thank you email directly, bypassing confirmation
445 $this->_sendEmailMode = self::EMAIL_THANK;
446 // Set status for signature activity to completed
447 $params['statusId'] = 2;
448 break;
449 }
450
451 if ($tag_name) {
353ffa53 452 $tag = new CRM_Core_DAO_EntityTag();
6a488035 453 $tag->entity_id = $this->_contactId;
353ffa53 454 $tag->tag_id = $this->_tagId;
6a488035
TO
455
456 if (!($tag->find())) {
457 // send thank you email
458 $this->_sendEmailMode = self::EMAIL_THANK;
459 // Set status for signature activity to completed
460 $params['statusId'] = 2;
461 }
462 else {
463 // send email verification email
464 $this->_sendEmailMode = self::EMAIL_CONFIRM;
465 // Set status for signature activity to scheduled until email is verified
466 $params['statusId'] = 1;
467 }
468 }
469 break;
470 }
471
6a488035
TO
472 $transaction = new CRM_Core_Transaction();
473
32ad9152 474 // CRM-17029 - get the add_to_group_id from the _contactProfileFields array.
26016861
J
475 // There's a much more elegant solution with
476 // array_values($this->_contactProfileFields)[0] but it's PHP 5.4+ only.
477 $slice = array_slice($this->_contactProfileFields, 0, 1);
478 $firstField = array_shift($slice);
32ad9152 479 $addToGroupID = isset($firstField['add_to_group_id']) ? $firstField['add_to_group_id'] : NULL;
6a488035
TO
480 $this->_contactId = CRM_Contact_BAO_Contact::createProfileContact($params, $this->_contactProfileFields,
481 $this->_contactId, $addToGroupID,
482 $this->_contactProfileId, $this->_ctype,
483 TRUE
484 );
485
486 // get additional custom activity profile field data
487 // to save with new signature activity record
488 $surveyInfo = $this->bao->getSurveyInfo($this->_surveyId);
489 $customActivityFields = CRM_Core_BAO_CustomField::getFields('Activity', FALSE, FALSE,
490 $surveyInfo['activity_type_id']
491 );
492 $customActivityFields = CRM_Utils_Array::crmArrayMerge($customActivityFields,
493 CRM_Core_BAO_CustomField::getFields('Activity', FALSE, FALSE,
494 NULL, NULL, TRUE
495 )
496 );
497
498 $params['custom'] = CRM_Core_BAO_CustomField::postProcess($params,
6a488035
TO
499 NULL,
500 'Activity'
501 );
502
503 // create the signature activity record
504 $params['contactId'] = $this->_contactId;
43427a24 505 $params['activity_campaign_id'] = CRM_Utils_Array::value('campaign_id', $this->petition);
6a488035
TO
506 $result = $this->bao->createSignature($params);
507
508 // send thank you or email verification emails
509
510 // if logged in using Facebook connect and email on form matches Fb email,
511 // no need for email confirmation, send thank you email
512 if ($this->forceEmailConfirmed['flag'] &&
513 ($this->forceEmailConfirmed['email'] == $params['email-Primary'])
514 ) {
515 $this->_sendEmailMode = self::EMAIL_THANK;
516 }
517
518 switch ($this->_sendEmailMode) {
519 case self::EMAIL_THANK:
520 // mark the signature activity as completed and set confirmed cookie
521 $this->bao->confirmSignature($result->id, $this->_contactId, $this->_surveyId);
522 break;
523
524 case self::EMAIL_CONFIRM:
525 // set 'Unconfirmed' tag for this new contact
526 if ($tag_name) {
527 unset($tag_params);
528 $tag_params['contact_id'] = $this->_contactId;
529 $tag_params['tag_id'] = $this->_tagId;
83b0a3cc 530 $tag_params['version'] = 3;
6a488035
TO
531 $tag_value = civicrm_api('entity_tag', 'create', $tag_params);
532 }
533 break;
534 }
535
536 //send email
537 $params['activityId'] = $result->id;
538 $params['tagId'] = $this->_tagId;
6a488035
TO
539
540 $transaction->commit();
541
83b0a3cc 542 $this->bao->sendEmail($params, $this->_sendEmailMode);
543
6a488035
TO
544 if ($result) {
545 // call the hook before we redirect
546 $this->postProcessHook();
547
548 // set the template to thank you
8d7a9d07
CB
549 $url = CRM_Utils_System::url(
550 'civicrm/petition/thankyou',
551 'pid=' . $this->_surveyId . '&id=' . $this->_sendEmailMode . '&reset=1'
552 );
6a488035
TO
553 CRM_Utils_System::redirect($url);
554 }
555 }
556
557 /**
fe482240 558 * Build the petition profile form.
6a488035 559 *
100fef9d
CW
560 * @param int $id
561 * @param string $name
2a6da8d7 562 * @param bool $viewOnly
6a488035 563 */
00be9182 564 public function buildCustom($id, $name, $viewOnly = FALSE) {
6a488035
TO
565 if ($id) {
566 $session = CRM_Core_Session::singleton();
567 $this->assign("petition", $this->petition);
568 //$contactID = $this->_contactId;
569 $contactID = NULL;
570 $this->assign('contact_id', $this->_contactId);
571
572 $fields = NULL;
573 // TODO: contactID is never set (commented above)
574 if ($contactID) {
575 if (CRM_Core_BAO_UFGroup::filterUFGroups($id, $contactID)) {
576 $fields = CRM_Core_BAO_UFGroup::getFields($id, FALSE, CRM_Core_Action::ADD);
577 }
578 }
579 else {
580 $fields = CRM_Core_BAO_UFGroup::getFields($id, FALSE, CRM_Core_Action::ADD);
581 }
582
583 if ($fields) {
6a488035
TO
584 $this->assign($name, $fields);
585
586 $addCaptcha = FALSE;
587 foreach ($fields as $key => $field) {
588 if ($viewOnly &&
589 isset($field['data_type']) &&
590 $field['data_type'] == 'File' || ($viewOnly && $field['name'] == 'image_URL')
591 ) {
592 // ignore file upload fields
593 continue;
594 }
2efcf0c2 595
596 // if state or country in the profile, create map
2c6b0601 597 list($prefixName, $index) = CRM_Utils_System::explode('-', $key, 2);
6a488035
TO
598
599 CRM_Core_BAO_UFGroup::buildProfile($this, $field, CRM_Profile_Form::MODE_CREATE, $contactID, TRUE);
600 $this->_fields[$key] = $field;
71fc6ea4
DG
601 // CRM-11316 Is ReCAPTCHA enabled for this profile AND is this an anonymous visitor
602 if ($field['add_captcha'] && !$this->_contactId) {
6a488035
TO
603 $addCaptcha = TRUE;
604 }
605 }
606
71fc6ea4 607 if ($addCaptcha && !$viewOnly) {
268ff0e8 608 CRM_Utils_ReCAPTCHA::enableCaptchaOnForm($this);
6a488035
TO
609 }
610 }
611 }
612 }
613
30c4e065
EM
614 /**
615 * @return string
616 */
00be9182 617 public function getTemplateFileName() {
6a488035
TO
618 if (isset($this->thankyou)) {
619 return ('CRM/Campaign/Page/Petition/ThankYou.tpl');
620 }
353ffa53
TO
621 else {
622 }
6a488035
TO
623 return parent::getTemplateFileName();
624 }
625
30c4e065 626 /**
fe482240 627 * check if user has already signed this petition.
c490a46a 628 * @param array $params
30c4e065 629 */
00be9182 630 public function redirectIfSigned($params) {
6a488035
TO
631 $signature = $this->bao->checkSignature($this->_surveyId, $this->_contactId);
632 //TODO: error case when more than one signature found for this petition and this contact
633 if (!empty($signature) && (count($signature) == 1)) {
634 $signature_id = array_keys($signature);
635 switch ($signature[$signature_id[0]]['status_id']) {
636 case 1:
637 //status is scheduled - email is unconfirmed
638 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/petition/thankyou', 'pid=' . $this->_surveyId . '&id=4&reset=1'));
639 break;
640
641 case 2:
642 //status is completed
643 $this->bao->sendEmail($params, 1);
644 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/petition/thankyou', 'pid=' . $this->_surveyId . '&id=5&reset=1'));
645 break;
646 }
647 }
648 }
96025800 649
6a488035 650}