recaptcha.php
14.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
<?php
class WPCF7_RECAPTCHA extends WPCF7_Service {
const VERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify';
private static $instance;
private $sitekeys;
public static function get_instance() {
if ( empty( self::$instance ) ) {
self::$instance = new self;
}
return self::$instance;
}
private function __construct() {
$this->sitekeys = WPCF7::get_option( 'recaptcha' );
}
public function get_title() {
return __( 'reCAPTCHA', 'contact-form-7' );
}
public function is_active() {
$sitekey = $this->get_sitekey();
$secret = $this->get_secret( $sitekey );
return $sitekey && $secret;
}
public function get_categories() {
return array( 'captcha' );
}
public function icon() {
}
public function link() {
echo sprintf( '<a href="%1$s">%2$s</a>',
'https://www.google.com/recaptcha/intro/index.html',
'google.com/recaptcha' );
}
public function get_sitekey() {
if ( empty( $this->sitekeys ) || ! is_array( $this->sitekeys ) ) {
return false;
}
$sitekeys = array_keys( $this->sitekeys );
return $sitekeys[0];
}
public function get_secret( $sitekey ) {
$sitekeys = (array) $this->sitekeys;
if ( isset( $sitekeys[$sitekey] ) ) {
return $sitekeys[$sitekey];
} else {
return false;
}
}
public function verify( $response_token ) {
$is_human = false;
if ( empty( $response_token ) ) {
return $is_human;
}
$url = self::VERIFY_URL;
$sitekey = $this->get_sitekey();
$secret = $this->get_secret( $sitekey );
$response = wp_safe_remote_post( $url, array(
'body' => array(
'secret' => $secret,
'response' => $response_token,
'remoteip' => $_SERVER['REMOTE_ADDR'] ) ) );
if ( 200 != wp_remote_retrieve_response_code( $response ) ) {
return $is_human;
}
$response = wp_remote_retrieve_body( $response );
$response = json_decode( $response, true );
$is_human = isset( $response['success'] ) && true == $response['success'];
return $is_human;
}
private function menu_page_url( $args = '' ) {
$args = wp_parse_args( $args, array() );
$url = menu_page_url( 'wpcf7-integration', false );
$url = add_query_arg( array( 'service' => 'recaptcha' ), $url );
if ( ! empty( $args) ) {
$url = add_query_arg( $args, $url );
}
return $url;
}
public function load( $action = '' ) {
if ( 'setup' == $action ) {
if ( 'POST' == $_SERVER['REQUEST_METHOD'] ) {
check_admin_referer( 'wpcf7-recaptcha-setup' );
$sitekey = isset( $_POST['sitekey'] ) ? trim( $_POST['sitekey'] ) : '';
$secret = isset( $_POST['secret'] ) ? trim( $_POST['secret'] ) : '';
if ( $sitekey && $secret ) {
WPCF7::update_option( 'recaptcha', array( $sitekey => $secret ) );
$redirect_to = $this->menu_page_url( array(
'message' => 'success' ) );
} elseif ( '' === $sitekey && '' === $secret ) {
WPCF7::update_option( 'recaptcha', null );
$redirect_to = $this->menu_page_url( array(
'message' => 'success' ) );
} else {
$redirect_to = $this->menu_page_url( array(
'action' => 'setup',
'message' => 'invalid' ) );
}
wp_safe_redirect( $redirect_to );
exit();
}
}
}
public function admin_notice( $message = '' ) {
if ( 'invalid' == $message ) {
echo sprintf(
'<div class="error notice notice-error is-dismissible"><p><strong>%1$s</strong>: %2$s</p></div>',
esc_html( __( "ERROR", 'contact-form-7' ) ),
esc_html( __( "Invalid key values.", 'contact-form-7' ) ) );
}
if ( 'success' == $message ) {
echo sprintf( '<div class="updated notice notice-success is-dismissible"><p>%s</p></div>',
esc_html( __( 'Settings saved.', 'contact-form-7' ) ) );
}
}
public function display( $action = '' ) {
?>
<p><?php echo esc_html( __( "reCAPTCHA is a free service to protect your website from spam and abuse.", 'contact-form-7' ) ); ?></p>
<?php
if ( 'setup' == $action ) {
$this->display_setup();
return;
}
if ( $this->is_active() ) {
$sitekey = $this->get_sitekey();
$secret = $this->get_secret( $sitekey );
?>
<table class="form-table">
<tbody>
<tr>
<th scope="row"><?php echo esc_html( __( 'Site Key', 'contact-form-7' ) ); ?></th>
<td class="code"><?php echo esc_html( $sitekey ); ?></td>
</tr>
<tr>
<th scope="row"><?php echo esc_html( __( 'Secret Key', 'contact-form-7' ) ); ?></th>
<td class="code"><?php echo esc_html( wpcf7_mask_password( $secret ) ); ?></td>
</tr>
</tbody>
</table>
<p><a href="<?php echo esc_url( $this->menu_page_url( 'action=setup' ) ); ?>" class="button"><?php echo esc_html( __( "Reset Keys", 'contact-form-7' ) ); ?></a></p>
<?php
} else {
?>
<p><?php echo esc_html( __( "To use reCAPTCHA, you need to install an API key pair.", 'contact-form-7' ) ); ?></p>
<p><a href="<?php echo esc_url( $this->menu_page_url( 'action=setup' ) ); ?>" class="button"><?php echo esc_html( __( "Configure Keys", 'contact-form-7' ) ); ?></a></p>
<p><?php echo sprintf( esc_html( __( "For more details, see %s.", 'contact-form-7' ) ), wpcf7_link( __( 'http://contactform7.com/recaptcha/', 'contact-form-7' ), __( 'reCAPTCHA', 'contact-form-7' ) ) ); ?></p>
<?php
}
}
public function display_setup() {
?>
<form method="post" action="<?php echo esc_url( $this->menu_page_url( 'action=setup' ) ); ?>">
<?php wp_nonce_field( 'wpcf7-recaptcha-setup' ); ?>
<table class="form-table">
<tbody>
<tr>
<th scope="row"><label for="sitekey"><?php echo esc_html( __( 'Site Key', 'contact-form-7' ) ); ?></label></th>
<td><input type="text" aria-required="true" value="" id="sitekey" name="sitekey" class="regular-text code" /></td>
</tr>
<tr>
<th scope="row"><label for="secret"><?php echo esc_html( __( 'Secret Key', 'contact-form-7' ) ); ?></label></th>
<td><input type="text" aria-required="true" value="" id="secret" name="secret" class="regular-text code" /></td>
</tr>
</tbody>
</table>
<p class="submit"><input type="submit" class="button button-primary" value="<?php echo esc_attr( __( 'Save', 'contact-form-7' ) ); ?>" name="submit" /></p>
</form>
<?php
}
}
add_action( 'wpcf7_init', 'wpcf7_recaptcha_register_service' );
function wpcf7_recaptcha_register_service() {
$integration = WPCF7_Integration::get_instance();
$categories = array(
'captcha' => __( 'CAPTCHA', 'contact-form-7' ) );
foreach ( $categories as $name => $category ) {
$integration->add_category( $name, $category );
}
$services = array(
'recaptcha' => WPCF7_RECAPTCHA::get_instance() );
foreach ( $services as $name => $service ) {
$integration->add_service( $name, $service );
}
}
add_action( 'wpcf7_enqueue_scripts', 'wpcf7_recaptcha_enqueue_scripts' );
function wpcf7_recaptcha_enqueue_scripts() {
$url = 'https://www.google.com/recaptcha/api.js';
$url = add_query_arg( array(
'onload' => 'recaptchaCallback',
'render' => 'explicit' ), $url );
wp_register_script( 'google-recaptcha', $url, array(), '2.0', true );
}
add_action( 'wp_footer', 'wpcf7_recaptcha_callback_script' );
function wpcf7_recaptcha_callback_script() {
if ( ! wp_script_is( 'google-recaptcha', 'enqueued' ) ) {
return;
}
?>
<script type="text/javascript">
var recaptchaCallback = function() {
var forms = document.getElementsByTagName('form');
var pattern = /(^|\s)g-recaptcha(\s|$)/;
for (var i = 0; i < forms.length; i++) {
var divs = forms[i].getElementsByTagName('div');
for (var j = 0; j < divs.length; j++) {
var sitekey = divs[j].getAttribute('data-sitekey');
if (divs[j].className && divs[j].className.match(pattern) && sitekey) {
grecaptcha.render(divs[j], {
'sitekey': sitekey,
'theme': divs[j].getAttribute('data-theme'),
'type': divs[j].getAttribute('data-type'),
'size': divs[j].getAttribute('data-size'),
'tabindex': divs[j].getAttribute('data-tabindex'),
'callback': divs[j].getAttribute('data-callback'),
'expired-callback': divs[j].getAttribute('data-expired-callback')
});
break;
}
}
}
}
</script>
<?php
}
add_action( 'wpcf7_init', 'wpcf7_recaptcha_add_shortcode_recaptcha' );
function wpcf7_recaptcha_add_shortcode_recaptcha() {
$recaptcha = WPCF7_RECAPTCHA::get_instance();
if ( $recaptcha->is_active() ) {
wpcf7_add_shortcode( 'recaptcha', 'wpcf7_recaptcha_shortcode_handler' );
}
}
function wpcf7_recaptcha_shortcode_handler( $tag ) {
wp_enqueue_script( 'google-recaptcha' );
$tag = new WPCF7_Shortcode( $tag );
$atts = array();
$recaptcha = WPCF7_RECAPTCHA::get_instance();
$atts['data-sitekey'] = $recaptcha->get_sitekey();
$atts['data-theme'] = $tag->get_option( 'theme', '(dark|light)', true );
$atts['data-type'] = $tag->get_option( 'type', '(audio|image)', true );
$atts['data-size'] = $tag->get_option( 'size', '(compact|normal)', true );
$atts['data-tabindex'] = $tag->get_option( 'tabindex', 'int', true );
$atts['data-callback'] = $tag->get_option( 'callback', '', true );
$atts['data-expired-callback'] =
$tag->get_option( 'expired-callback', '', true );
$atts['class'] = $tag->get_class_option(
wpcf7_form_controls_class( $tag->type, 'g-recaptcha' ) );
$atts['id'] = $tag->get_id_option();
$html = sprintf( '<div %1$s></div>', wpcf7_format_atts( $atts ) );
$html .= wpcf7_recaptcha_noscript(
array( 'sitekey' => $atts['data-sitekey'] ) );
$html = sprintf( '<div class="wpcf7-form-control-wrap">%s</div>', $html );
return $html;
}
function wpcf7_recaptcha_noscript( $args = '' ) {
$args = wp_parse_args( $args, array(
'sitekey' => '' ) );
if ( empty( $args['sitekey'] ) ) {
return;
}
$url = add_query_arg( 'k', $args['sitekey'],
'https://www.google.com/recaptcha/api/fallback' );
ob_start();
?>
<noscript>
<div style="width: 302px; height: 422px;">
<div style="width: 302px; height: 422px; position: relative;">
<div style="width: 302px; height: 422px; position: absolute;">
<iframe src="<?php echo esc_url( $url ); ?>" frameborder="0" scrolling="no" style="width: 302px; height:422px; border-style: none;">
</iframe>
</div>
<div style="width: 300px; height: 60px; border-style: none; bottom: 12px; left: 25px; margin: 0px; padding: 0px; right: 25px; background: #f9f9f9; border: 1px solid #c1c1c1; border-radius: 3px;">
<textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response" style="width: 250px; height: 40px; border: 1px solid #c1c1c1; margin: 10px 25px; padding: 0px; resize: none;">
</textarea>
</div>
</div>
</div>
</noscript>
<?php
return ob_get_clean();
}
add_filter( 'wpcf7_spam', 'wpcf7_recaptcha_check_with_google', 9 );
function wpcf7_recaptcha_check_with_google( $spam ) {
if ( $spam ) {
return $spam;
}
$contact_form = wpcf7_get_current_contact_form();
if ( ! $contact_form ) {
return $spam;
}
$tags = $contact_form->form_scan_shortcode( array( 'type' => 'recaptcha' ) );
if ( empty( $tags ) ) {
return $spam;
}
$recaptcha = WPCF7_RECAPTCHA::get_instance();
if ( ! $recaptcha->is_active() ) {
return $spam;
}
$response_token = wpcf7_recaptcha_response();
$spam = ! $recaptcha->verify( $response_token );
return $spam;
}
add_action( 'wpcf7_admin_init', 'wpcf7_add_tag_generator_recaptcha', 45 );
function wpcf7_add_tag_generator_recaptcha() {
$tag_generator = WPCF7_TagGenerator::get_instance();
$tag_generator->add( 'recaptcha', __( 'reCAPTCHA', 'contact-form-7' ),
'wpcf7_tag_generator_recaptcha', array( 'nameless' => 1 ) );
}
function wpcf7_tag_generator_recaptcha( $contact_form, $args = '' ) {
$args = wp_parse_args( $args, array() );
$recaptcha = WPCF7_RECAPTCHA::get_instance();
if ( ! $recaptcha->is_active() ) {
?>
<div class="control-box">
<fieldset>
<legend><?php echo sprintf( esc_html( __( "To use reCAPTCHA, first you need to install an API key pair. For more details, see %s.", 'contact-form-7' ) ), wpcf7_link( __( 'http://contactform7.com/recaptcha/', 'contact-form-7' ), __( 'reCAPTCHA', 'contact-form-7' ) ) ); ?></legend>
</fieldset>
</div>
<?php
return;
}
$description = __( "Generate a form-tag for a reCAPTCHA widget. For more details, see %s.", 'contact-form-7' );
$desc_link = wpcf7_link( __( 'http://contactform7.com/recaptcha/', 'contact-form-7' ), __( 'reCAPTCHA', 'contact-form-7' ) );
?>
<div class="control-box">
<fieldset>
<legend><?php echo sprintf( esc_html( $description ), $desc_link ); ?></legend>
<table class="form-table">
<tbody>
<tr>
<th scope="row"><?php echo esc_html( __( 'Theme', 'contact-form-7' ) ); ?></th>
<td>
<fieldset>
<legend class="screen-reader-text"><?php echo esc_html( __( 'Theme', 'contact-form-7' ) ); ?></legend>
<label for="<?php echo esc_attr( $args['content'] . '-theme-light' ); ?>"><input type="radio" name="theme" class="option default" id="<?php echo esc_attr( $args['content'] . '-theme-light' ); ?>" value="light" checked="checked" /> <?php echo esc_html( __( 'Light', 'contact-form-7' ) ); ?></label>
<br />
<label for="<?php echo esc_attr( $args['content'] . '-theme-dark' ); ?>"><input type="radio" name="theme" class="option" id="<?php echo esc_attr( $args['content'] . '-theme-dark' ); ?>" value="dark" /> <?php echo esc_html( __( 'Dark', 'contact-form-7' ) ); ?></label>
</fieldset>
</td>
</tr>
<tr>
<th scope="row"><?php echo esc_html( __( 'Size', 'contact-form-7' ) ); ?></th>
<td>
<fieldset>
<legend class="screen-reader-text"><?php echo esc_html( __( 'Size', 'contact-form-7' ) ); ?></legend>
<label for="<?php echo esc_attr( $args['content'] . '-size-normal' ); ?>"><input type="radio" name="size" class="option default" id="<?php echo esc_attr( $args['content'] . '-size-normal' ); ?>" value="normal" checked="checked" /> <?php echo esc_html( __( 'Normal', 'contact-form-7' ) ); ?></label>
<br />
<label for="<?php echo esc_attr( $args['content'] . '-size-compact' ); ?>"><input type="radio" name="size" class="option" id="<?php echo esc_attr( $args['content'] . '-size-compact' ); ?>" value="compact" /> <?php echo esc_html( __( 'Compact', 'contact-form-7' ) ); ?></label>
</fieldset>
</td>
</tr>
<tr>
<th scope="row"><label for="<?php echo esc_attr( $args['content'] . '-id' ); ?>"><?php echo esc_html( __( 'Id attribute', 'contact-form-7' ) ); ?></label></th>
<td><input type="text" name="id" class="idvalue oneline option" id="<?php echo esc_attr( $args['content'] . '-id' ); ?>" /></td>
</tr>
<tr>
<th scope="row"><label for="<?php echo esc_attr( $args['content'] . '-class' ); ?>"><?php echo esc_html( __( 'Class attribute', 'contact-form-7' ) ); ?></label></th>
<td><input type="text" name="class" class="classvalue oneline option" id="<?php echo esc_attr( $args['content'] . '-class' ); ?>" /></td>
</tr>
</tbody>
</table>
</fieldset>
</div>
<div class="insert-box">
<input type="text" name="recaptcha" class="tag code" readonly="readonly" onfocus="this.select()" />
<div class="submitbox">
<input type="button" class="button button-primary insert-tag" value="<?php echo esc_attr( __( 'Insert Tag', 'contact-form-7' ) ); ?>" />
</div>
</div>
<?php
}
function wpcf7_recaptcha_response() {
if ( isset( $_POST['g-recaptcha-response'] ) ) {
return $_POST['g-recaptcha-response'];
}
return false;
}