Merge pull request #7019 from jitendrapurohit/CRM-17395
[civicrm-core.git] / CRM / Utils / ReCAPTCHA.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
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 */
33 class CRM_Utils_ReCAPTCHA {
34
35 protected $_captcha = NULL;
36
37 protected $_name = NULL;
38
39 protected $_url = NULL;
40
41 protected $_phrase = NULL;
42
43 /**
44 * We only need one instance of this object. So we use the singleton
45 * pattern and cache the instance in this variable
46 *
47 * @var object
48 */
49 static private $_singleton = NULL;
50
51 /**
52 * Singleton function used to manage this object.
53 *
54 *
55 * @return object
56 */
57 public static function &singleton() {
58 if (self::$_singleton === NULL) {
59 self::$_singleton = new CRM_Utils_ReCAPTCHA();
60 }
61 return self::$_singleton;
62 }
63
64 public function __construct() {
65 // Empty function?
66 }
67
68 /**
69 * Add element to form.
70 */
71 public static function add(&$form) {
72 $error = NULL;
73 $config = CRM_Core_Config::singleton();
74 $useSSL = FALSE;
75 if (!function_exists('recaptcha_get_html')) {
76 require_once 'packages/recaptcha/recaptchalib.php';
77 }
78
79 // See if we are using SSL
80 if (CRM_Utils_System::isSSL()) {
81 $useSSL = TRUE;
82 }
83 $html = recaptcha_get_html($config->recaptchaPublicKey, $error, $useSSL);
84
85 $form->assign('recaptchaHTML', $html);
86 $form->assign('recaptchaOptions', $config->recaptchaOptions);
87 $form->add(
88 'text',
89 'g-recaptcha-response',
90 'reCaptcha',
91 NULL,
92 TRUE
93 );
94 $form->registerRule('recaptcha', 'callback', 'validate', 'CRM_Utils_ReCAPTCHA');
95 if ($form->isSubmitted() && empty($form->_submitValues['g-recaptcha-response'])) {
96 $form->setElementError(
97 'g-recaptcha-response',
98 ts('Input text must match the phrase in the image. Please review the image and re-enter matching text.')
99 );
100 }
101 }
102
103 }