INFRA-132 - CRM/ - PHPStorm cleanup
[civicrm-core.git] / CRM / Utils / ReCAPTCHA.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Utils_ReCAPTCHA {
36
37 protected $_captcha = NULL;
38
39 protected $_name = NULL;
40
41 protected $_url = NULL;
42
43 protected $_phrase = NULL;
44
45 /**
46 * We only need one instance of this object. So we use the singleton
47 * pattern and cache the instance in this variable
48 *
49 * @var object
50 * @static
51 */
52 static private $_singleton = NULL;
53
54 /**
100fef9d 55 * Singleton function used to manage this object
6a488035
TO
56 *
57 * @param string the key to permit session scope's
58 *
59 * @return object
60 * @static
6a488035 61 */
00be9182 62 public static function &singleton() {
6a488035
TO
63 if (self::$_singleton === NULL) {
64 self::$_singleton = new CRM_Utils_ReCAPTCHA();
65 }
66 return self::$_singleton;
67 }
68
5bc392e6 69 /**
5bc392e6 70 */
e7292422
TO
71 public function __construct() {
72 }
6a488035
TO
73
74 /**
75 * Add element to form
6a488035 76 */
00be9182 77 public static function add(&$form) {
353ffa53 78 $error = NULL;
6a488035
TO
79 $config = CRM_Core_Config::singleton();
80 $useSSL = FALSE;
481a74f4 81 if (!function_exists('recaptcha_get_html')) {
14e15f46 82 require_once 'packages/recaptcha/recaptchalib.php';
d2485799 83 }
6a488035
TO
84
85 // See if we are using SSL
86 if (CRM_Utils_System::isSSL()) {
87 $useSSL = TRUE;
88 }
89 $html = recaptcha_get_html($config->recaptchaPublicKey, $error, $useSSL);
90
91 $form->assign('recaptchaHTML', $html);
92 $form->assign('recaptchaOptions', $config->recaptchaOptions);
93 $form->add(
94 'text',
95 'recaptcha_challenge_field',
96 NULL,
97 NULL,
98 TRUE
99 );
100 $form->add(
101 'hidden',
102 'recaptcha_response_field',
103 'manual_challenge'
104 );
105
106 $form->registerRule('recaptcha', 'callback', 'validate', 'CRM_Utils_ReCAPTCHA');
107 $form->addRule(
108 'recaptcha_challenge_field',
109 ts('Input text must match the phrase in the image. Please review the image and re-enter matching text.'),
110 'recaptcha',
111 $form
112 );
113 }
114
5bc392e6
EM
115 /**
116 * @param $value
c490a46a 117 * @param CRM_Core_Form $form
5bc392e6
EM
118 *
119 * @return mixed
120 */
00be9182 121 public static function validate($value, $form) {
6a488035
TO
122 $config = CRM_Core_Config::singleton();
123
124 $resp = recaptcha_check_answer($config->recaptchaPrivateKey,
125 $_SERVER['REMOTE_ADDR'],
126 $_POST["recaptcha_challenge_field"],
127 $_POST["recaptcha_response_field"]
128 );
129 return $resp->is_valid;
130 }
131}