Zend_Service_Nirvanix

Zend_Service_ReCaptcha

Introduction

Zend_Service_ReCaptcha fournit un client pour le » Service Web reCAPTCHA. D'après le site de reCAPTCHA, "reCAPTCHA est un service gratuit de CAPTCHA qui aide à la numérisation de livres." Chaque reCAPTCHA requière que l'utilisateur saisisse 2 mots, le premier est le CAPTCHA, et le second est issu de texte scanné que les OCR (Optical Character Recognition) ne peuvent identifier.

Pour utiliser le service reCAPTCHA, vous devez » créer un compte et enregistrer un ou plusieurs domaines d'utilisation afin de générer une clé publique et une privée.

Utilisation la plus simple

Instanciez un objet Zend_Service_ReCaptcha en lui passant vos clés publique et privée :

Example #1 Créer une instance de service ReCaptcha

  1. $recaptcha = new Zend_Service_ReCaptcha($pubKey, $privKey);

Pour rendre le reCAPTCHA, appelez simplement la méthode getHTML() :

Example #2 Afficher le ReCaptcha

  1. echo $recaptcha->getHTML();

Lorsque le formulaire est envoyé, vous devriez recevoir 2 champs 'recaptcha_challenge_field' et 'recaptcha_response_field'. Passez les alors à la méthode verify() :

  1. $result = $recaptcha->verify(
  2.     $_POST['recaptcha_challenge_field'],
  3.     $_POST['recaptcha_response_field']
  4. );

Une fois que vous possédez le résultat, vérifiez sa validité. Il s'agit d'un objet Zend_Service_ReCaptcha_Response qui possède une méthode isValid().

Example #3 Vérifier les champs de formulaire

  1. if (!$result->isValid()) {
  2.     // Validation échouée
  3. }

Encore plus simple : utilisez l'adaptateur ReCaptcha de Zend_Captcha, ou utilisez cet adaptateur comme backend pour l'élément formulaire Captcha. Dans ces 2 cas, le rendu et la validation du reCAPTCHA sont assurés pour vous.

Hiding email addresses

Zend_Service_ReCaptcha_MailHide can be used to hide email addresses. It will replace a part of an email address with a link that opens a popup window with a ReCaptcha challenge. Solving the challenge will reveal the complete email address.

In order to use this component you will need » an account, and generate public and private keys for the mailhide API.

Example #4 Using the mail hide component

  1. // The mail address we want to hide
  2. $mail = 'mail@example.com';
  3.  
  4. // Create an instance of the mailhide component, passing it your public and private keys as well as
  5. // the mail address you want to hide
  6. $mailHide = new Zend_Service_ReCaptcha_Mailhide();
  7. $mailHide->setPublicKey($pubKey);
  8. $mailHide->setPrivateKey($privKey);
  9. $mailHide->setEmail($mail);
  10.  
  11. // Display it
  12. print($mailHide);

The example above will display "m...@example.com" where "..." has a link that opens up a popup windows with a ReCaptcha challenge.

The public key, private key and the email address can also be specified in the constructor of the class. A fourth argument also exists that enables you to set some options for the component. The available options are listed in the following table:

Zend_Service_ReCaptcha_MailHide options
Option Description Expected Values Default Value
linkTitle The title attribute of the link string 'Reveal this e-mail address'
linkHiddenText The text that includes the popup link string '...'
popupWidth The width of the popup window int 500
popupHeight The height of the popup window int 300

The configuration options can be set by sending it as the fourth argument to the constructor or by calling the setOptions($options) which takes an associative array or an instance of Zend_Config.

Example #5 Generating many hidden email addresses

  1. // Create an instance of the mailhide component, passing it your public and private keys as well as
  2. // well the mail address you want to hide
  3. $mailHide = new Zend_Service_ReCaptcha_Mailhide();
  4. $mailHide->setPublicKey($pubKey);
  5. $mailHide->setPrivateKey($privKey);
  6. $mailHide->setOptions(array(
  7.     'linkTitle' => 'Click me',
  8.     'linkHiddenText' => '+++++',
  9. ));
  10.  
  11. // The addresses we want to hide
  12. $mailAddresses = array(
  13.     'mail@example.com',
  14.     'johndoe@example.com',
  15.     'janedoe@example.com',
  16. );
  17.  
  18. foreach ($mailAddresses as $mail) {
  19.     $mailHide->setEmail($mail);
  20.     print($mailHide);
  21. }

Zend_Service_Nirvanix