qa-recaptcha-captcha.php 3.91 KB
Newer Older
Gideon Greenspan committed
1 2 3 4 5 6 7
<?php

/*
	Question2Answer (c) Gideon Greenspan

	http://www.question2answer.org/

8

Gideon Greenspan committed
9 10 11 12 13 14 15 16 17
	File: qa-plugin/recaptcha-captcha/qa-recaptcha-captcha.php
	Version: See define()s at top of qa-include/qa-base.php
	Description: Captcha module for reCAPTCHA


	This program is free software; you can redistribute it and/or
	modify it under the terms of the GNU General Public License
	as published by the Free Software Foundation; either version 2
	of the License, or (at your option) any later version.
18

Gideon Greenspan committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	More about this license: http://www.question2answer.org/license.php
*/

	if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
		header('Location: ../');
		exit;
	}


	class qa_recaptcha_captcha {
34

Gideon Greenspan committed
35
		var $directory;
36

Gideon Greenspan committed
37 38 39 40 41 42 43 44 45
		function load_module($directory, $urltoroot)
		{
			$this->directory=$directory;
		}


		function admin_form()
		{
			$saved=false;
46

Gideon Greenspan committed
47 48 49
			if (qa_clicked('recaptcha_save_button')) {
				qa_opt('recaptcha_public_key', qa_post_text('recaptcha_public_key_field'));
				qa_opt('recaptcha_private_key', qa_post_text('recaptcha_private_key_field'));
50

Gideon Greenspan committed
51 52
				$saved=true;
			}
53

Gideon Greenspan committed
54 55
			$form=array(
				'ok' => $saved ? 'reCAPTCHA settings saved' : null,
56

Gideon Greenspan committed
57 58 59 60
				'fields' => array(
					'public' => array(
						'label' => 'reCAPTCHA public key:',
						'value' => qa_opt('recaptcha_public_key'),
Gideon Greenspan committed
61
						'tags' => 'name="recaptcha_public_key_field"',
Gideon Greenspan committed
62 63 64 65 66
					),

					'private' => array(
						'label' => 'reCAPTCHA private key:',
						'value' => qa_opt('recaptcha_private_key'),
Gideon Greenspan committed
67
						'tags' => 'name="recaptcha_private_key_field"',
Gideon Greenspan committed
68 69 70 71 72 73 74
						'error' => $this->recaptcha_error_html(),
					),
				),

				'buttons' => array(
					array(
						'label' => 'Save Changes',
Gideon Greenspan committed
75
						'tags' => 'name="recaptcha_save_button"',
Gideon Greenspan committed
76 77 78
					),
				),
			);
79

Gideon Greenspan committed
80 81
			return $form;
		}
82

Gideon Greenspan committed
83 84 85 86 87

		function recaptcha_error_html()
		{
			if (!function_exists('fsockopen'))
				return 'To use reCAPTCHA, the fsockopen() PHP function must be enabled on your server. Please check with your system administrator.';
88

Gideon Greenspan committed
89 90
			elseif ( (!strlen(trim(qa_opt('recaptcha_public_key')))) || (!strlen(trim(qa_opt('recaptcha_private_key')))) ) {
				require_once $this->directory.'recaptchalib.php';
91

Gideon Greenspan committed
92
				$url=recaptcha_get_signup_url(@$_SERVER['HTTP_HOST'], qa_opt('site_title'));
93

Gideon Greenspan committed
94
				return 'To use reCAPTCHA, you must <a href="'.qa_html($url).'">sign up</a> to get these keys.';
Gideon Greenspan committed
95
			}
96 97

			return null;
Gideon Greenspan committed
98
		}
99 100


Gideon Greenspan committed
101 102 103 104 105
		function allow_captcha()
		{
			return function_exists('fsockopen') && strlen(trim(qa_opt('recaptcha_public_key'))) && strlen(trim(qa_opt('recaptcha_private_key')));
		}

106

Gideon Greenspan committed
107 108 109
		function form_html(&$qa_content, $error)
		{
			require_once $this->directory.'recaptchalib.php';
110

Gideon Greenspan committed
111 112 113
			$language=qa_opt('site_language');
			if (strpos('|en|nl|fr|de|pt|ru|es|tr|', '|'.$language.'|')===false) // supported as of 3/2010
				$language='en';
114

Gideon Greenspan committed
115
			$qa_content['script_lines'][]=array(
Gideon Greenspan committed
116
				"var RecaptchaOptions={",
Gideon Greenspan committed
117 118
				"\ttheme:'white',",
				"\tlang:".qa_js($language),
Gideon Greenspan committed
119
				"};",
Gideon Greenspan committed
120
			);
121

Gideon Greenspan committed
122 123 124 125 126 127 128 129
			return recaptcha_get_html(qa_opt('recaptcha_public_key'), $error, qa_is_https_probably());
		}


		function validate_post(&$error)
		{
			if ( (!empty($_POST['recaptcha_challenge_field'])) && (!empty($_POST['recaptcha_response_field'])) ) {
				require_once $this->directory.'recaptchalib.php';
130

Gideon Greenspan committed
131 132 133 134 135 136
				$answer=recaptcha_check_answer(
					qa_opt('recaptcha_private_key'),
					qa_remote_ip_address(),
					$_POST['recaptcha_challenge_field'],
					$_POST['recaptcha_response_field']
				);
137

Gideon Greenspan committed
138 139 140 141 142
				if ($answer->is_valid)
					return true;

				$error=@$answer->error;
			}
143

Gideon Greenspan committed
144 145
			return false;
		}
146

Gideon Greenspan committed
147
	}
148

Gideon Greenspan committed
149 150 151 152

/*
	Omit PHP closing tag to help avoid accidental output
*/