Call hooks when deleting recent items
[civicrm-core.git] / CRM / Utils / ReCAPTCHA.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
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 * Singleton.
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 CRM_Utils_ReCAPTCHA
50 */
51 static private $_singleton = NULL;
52
53 /**
54 * Singleton function used to manage this object.
55 *
56 * @return object
57 */
58 public static function &singleton() {
59 if (self::$_singleton === NULL) {
60 self::$_singleton = new CRM_Utils_ReCAPTCHA();
61 }
62 return self::$_singleton;
63 }
64
65
66 /**
67 * Check if reCaptcha settings is avilable to add on form.
68 */
69 public static function hasSettingsAvailable() {
70 $config = CRM_Core_Config::singleton();
71 if ($config->recaptchaPublicKey == NULL || $config->recaptchaPublicKey == "") {
72 return FALSE;
73 }
74 return TRUE;
75 }
76
77 /**
78 * Check if reCaptcha has to be added on form forcefully.
79 */
80 public static function hasToAddForcefully() {
81 $config = CRM_Core_Config::singleton();
82 if (!$config->forceRecaptcha) {
83 return FALSE;
84 }
85 return TRUE;
86 }
87
88 /**
89 * Add element to form.
90 *
91 * @param CRM_Core_Form $form
92 */
93 public static function add(&$form) {
94 $error = NULL;
95 $config = CRM_Core_Config::singleton();
96 $useSSL = FALSE;
97 if (!function_exists('recaptcha_get_html')) {
98 require_once 'packages/recaptcha/recaptchalib.php';
99 }
100
101 // See if we are using SSL
102 if (CRM_Utils_System::isSSL()) {
103 $useSSL = TRUE;
104 }
105 $html = recaptcha_get_html($config->recaptchaPublicKey, $error, $useSSL);
106
107 $form->assign('recaptchaHTML', $html);
108 $form->assign('recaptchaOptions', $config->recaptchaOptions);
109 $form->add(
110 'text',
111 'g-recaptcha-response',
112 'reCaptcha',
113 NULL,
114 TRUE
115 );
116 $form->registerRule('recaptcha', 'callback', 'validate', 'CRM_Utils_ReCAPTCHA');
117 if ($form->isSubmitted() && empty($form->_submitValues['g-recaptcha-response'])) {
118 $form->setElementError(
119 'g-recaptcha-response',
120 ts('Please go back and complete the CAPTCHA at the bottom of this form.')
121 );
122 }
123 }
124
125 }