users
[ class tree: users ] [ index: users ] [ all elements ]

Source for file recaptchalib.php

Documentation is available at recaptchalib.php

  1. <?php
  2. /**
  3.  * This is a PHP library that handles calling reCAPTCHA.
  4.  *    - Documentation and latest version
  5.  *          http://recaptcha.net/plugins/php/
  6.  *    - Get a reCAPTCHA API Key
  7.  *          https://www.google.com/recaptcha/admin/create
  8.  *    - Discussion group
  9.  *          http://groups.google.com/group/recaptcha
  10.  *
  11.  * Copyright (c) 2007 reCAPTCHA -- http://recaptcha.net
  12.  * AUTHORS:
  13.  *   Mike Crawford
  14.  *   Ben Maurer
  15.  *
  16.  * Permission is hereby granted, free of charge, to any person obtaining a copy
  17.  * of this software and associated documentation files (the "Software"), to deal
  18.  * in the Software without restriction, including without limitation the rights
  19.  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  20.  * copies of the Software, and to permit persons to whom the Software is
  21.  * furnished to do so, subject to the following conditions:
  22.  *
  23.  * The above copyright notice and this permission notice shall be included in
  24.  * all copies or substantial portions of the Software.
  25.  *
  26.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  27.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  28.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  29.  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  30.  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  31.  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  32.  * THE SOFTWARE.
  33.  *
  34.  * @package users
  35.  * @subpackage functions
  36.  */
  37.  
  38. /**
  39.  * The reCAPTCHA server URL's
  40.  */
  41. define("RECAPTCHA_API_SERVER""http://www.google.com/recaptcha/api");
  42. define("RECAPTCHA_API_SECURE_SERVER""https://www.google.com/recaptcha/api");
  43. define("RECAPTCHA_VERIFY_SERVER""www.google.com");
  44.  
  45. /**
  46.  * Encodes the given data into a query string format
  47.  * @param $data - array of string elements to be encoded
  48.  * @return string - encoded request
  49.  */
  50. function _recaptcha_qsencode ($data{
  51.         $req "";
  52.         foreach $data as $key => $value )
  53.                 $req .= $key '=' urlencodestripslashes($value) ) '&';
  54.  
  55.         // Cut the last '&'
  56.         $req=substr($req,0,strlen($req)-1);
  57.         return $req;
  58. }
  59.  
  60.  
  61.  
  62. /**
  63.  * Submits an HTTP POST to a reCAPTCHA server
  64.  * @param string $host 
  65.  * @param string $path 
  66.  * @param array $data 
  67.  * @param int port
  68.  * @return array response
  69.  */
  70. function _recaptcha_http_post($host$path$data$port 80{
  71.  
  72.         $req _recaptcha_qsencode ($data);
  73.  
  74.         $http_request  "POST $path HTTP/1.0\r\n";
  75.         $http_request .= "Host: $host\r\n";
  76.         $http_request .= "Content-Type: application/x-www-form-urlencoded;\r\n";
  77.         $http_request .= "Content-Length: " strlen($req"\r\n";
  78.         $http_request .= "User-Agent: reCAPTCHA/PHP\r\n";
  79.         $http_request .= "\r\n";
  80.         $http_request .= $req;
  81.  
  82.         $response '';
  83.         iffalse == $fs @fsockopen($host$port$errno$errstr10) ) ) {
  84.                 die ('Could not open socket');
  85.         }
  86.  
  87.         fwrite($fs$http_request);
  88.  
  89.         while !feof($fs) )
  90.                 $response .= fgets($fs1160)// One TCP-IP packet
  91.         fclose($fs);
  92.         $response explode("\r\n\r\n"$response2);
  93.  
  94.         return $response;
  95. }
  96.  
  97.  
  98.  
  99. /**
  100.  * Gets the challenge HTML (javascript and non-javascript version).
  101.  * This is called from the browser, and the resulting reCAPTCHA HTML widget
  102.  * is embedded within the HTML form it was called from.
  103.  * @param string $pubkey A public key for reCAPTCHA
  104.  * @param string $error The error given by reCAPTCHA (optional, default is null)
  105.  * @param boolean $use_ssl Should the request be made over ssl? (optional, default is false)
  106.  
  107.  * @return string - The HTML to be embedded in the user's form.
  108.  */
  109. function recaptcha_get_html ($pubkey$error null$use_ssl false)
  110. {
  111.     if ($pubkey == null || $pubkey == ''{
  112.         die ("To use reCAPTCHA you must get an API key from <a href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a>");
  113.     }
  114.     
  115.     if ($use_ssl{
  116.                 $server RECAPTCHA_API_SECURE_SERVER;
  117.         else {
  118.                 $server RECAPTCHA_API_SERVER;
  119.         }
  120.  
  121.         $errorpart "";
  122.         if ($error{
  123.            $errorpart "&amp;error=" $error;
  124.         }
  125.         return '<script type="text/javascript" src="'$server '/challenge?k=' $pubkey $errorpart '"></script>
  126.  
  127.     <noscript>
  128.           <iframe src="'$server '/noscript?k=' $pubkey $errorpart '" height="300" width="500" frameborder="0"></iframe><br/>
  129.           <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
  130.           <input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
  131.     </noscript>';
  132. }
  133.  
  134.  
  135.  
  136.  
  137. /**
  138.  * A ReCaptchaResponse is returned from recaptcha_check_answer()
  139.  *
  140.  * @package users
  141.  */
  142.         var $is_valid;
  143.         var $error;
  144. }
  145.  
  146.  
  147. /**
  148.   * Calls an HTTP POST function to verify if the user's guess was correct
  149.   * @param string $privkey 
  150.   * @param string $remoteip 
  151.   * @param string $challenge 
  152.   * @param string $response 
  153.   * @param array $extra_params an array of extra variables to post to the server
  154.   * @return ReCaptchaResponse 
  155.   */
  156. function recaptcha_check_answer ($privkey$remoteip$challenge$response$extra_params array())
  157. {
  158.     if ($privkey == null || $privkey == ''{
  159.         die ("To use reCAPTCHA you must get an API key from <a href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a>");
  160.     }
  161.  
  162.     if ($remoteip == null || $remoteip == ''{
  163.         die ("For security reasons, you must pass the remote ip to reCAPTCHA");
  164.     }
  165.  
  166.     
  167.     
  168.         //discard spam submissions
  169.         if ($challenge == null || strlen($challenge== || $response == null || strlen($response== 0{
  170.                 $recaptcha_response new ReCaptchaResponse();
  171.                 $recaptcha_response->is_valid false;
  172.                 $recaptcha_response->error 'incorrect-captcha-sol';
  173.                 return $recaptcha_response;
  174.         }
  175.  
  176.         $response _recaptcha_http_post (RECAPTCHA_VERIFY_SERVER"/recaptcha/api/verify",
  177.                                           array (
  178.                                                  'privatekey' => $privkey,
  179.                                                  'remoteip' => $remoteip,
  180.                                                  'challenge' => $challenge,
  181.                                                  'response' => $response
  182.                                                  $extra_params
  183.                                           );
  184.  
  185.         $answers explode ("\n"$response [1]);
  186.         $recaptcha_response new ReCaptchaResponse();
  187.  
  188.         if (trim ($answers [0]== 'true'{
  189.                 $recaptcha_response->is_valid true;
  190.         }
  191.         else {
  192.                 $recaptcha_response->is_valid false;
  193.                 $recaptcha_response->error $answers [1];
  194.         }
  195.         return $recaptcha_response;
  196.  
  197. }
  198.  
  199. /**
  200.  * gets a URL where the user can sign up for reCAPTCHA. If your application
  201.  * has a configuration page where you enter a key, you should provide a link
  202.  * using this function.
  203.  * @param string $domain The domain where the page is hosted
  204.  * @param string $appname The name of your application
  205.  */
  206. function recaptcha_get_signup_url ($domain null$appname null{
  207.     return "https://www.google.com/recaptcha/admin/create?" .  _recaptcha_qsencode (array ('domains' => $domain'app' => $appname));
  208. }
  209.  
  210. function _recaptcha_aes_pad($val{
  211.     $block_size 16;
  212.     $numpad $block_size (strlen ($val$block_size);
  213.     return str_pad($valstrlen ($val$numpadchr($numpad));
  214. }
  215.  
  216. /* Mailhide related code */
  217.  
  218. function _recaptcha_aes_encrypt($val,$ky{
  219.     if (function_exists ("mcrypt_encrypt")) {
  220.         die ("To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed.");
  221.     }
  222.     $mode=MCRYPT_MODE_CBC;   
  223.     $enc=MCRYPT_RIJNDAEL_128;
  224.     $val=_recaptcha_aes_pad($val);
  225.     return mcrypt_encrypt($enc$ky$val$mode"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
  226. }
  227.  
  228.  
  229.     return strtr(base64_encode ($x)'+/''-_');
  230. }
  231.  
  232. /* gets the reCAPTCHA Mailhide url for a given email, public key and private key */
  233. function recaptcha_mailhide_url($pubkey$privkey$email{
  234.     if ($pubkey == '' || $pubkey == null || $privkey == "" || $privkey == null{
  235.         die ("To use reCAPTCHA Mailhide, you have to sign up for a public and private key, " .
  236.              "you can do so at <a href='http://www.google.com/recaptcha/mailhide/apikey'>http://www.google.com/recaptcha/mailhide/apikey</a>");
  237.     }
  238.     
  239.  
  240.     $ky pack('H*'$privkey);
  241.     $cryptmail _recaptcha_aes_encrypt ($email$ky);
  242.     
  243.     return "http://www.google.com/recaptcha/mailhide/d?k=" $pubkey "&c=" _recaptcha_mailhide_urlbase64 ($cryptmail);
  244. }
  245.  
  246. /**
  247.  * gets the parts of the email to expose to the user.
  248.  * eg, given johndoe@example,com return ["john", "example.com"].
  249.  * the email is then displayed as john...@example.com
  250.  */
  251. function _recaptcha_mailhide_email_parts ($email{
  252.     $arr preg_split("/@/"$email );
  253.  
  254.     if (strlen ($arr[0]<= 4{
  255.         $arr[0substr ($arr[0]01);
  256.     else if (strlen ($arr[0]<= 6{
  257.         $arr[0substr ($arr[0]03);
  258.     else {
  259.         $arr[0substr ($arr[0]04);
  260.     }
  261.     return $arr;
  262. }
  263.  
  264. /**
  265.  * Gets html to display an email address given a public an private key.
  266.  * to get a key, go to:
  267.  *
  268.  * http://www.google.com/recaptcha/mailhide/apikey
  269.  */
  270. function recaptcha_mailhide_html($pubkey$privkey$email{
  271.     $emailparts _recaptcha_mailhide_email_parts ($email);
  272.     $url recaptcha_mailhide_url ($pubkey$privkey$email);
  273.     
  274.     return htmlentities($emailparts[0]"<a href='" htmlentities ($url.
  275.         "' onclick=\"window.open('" htmlentities ($url"', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;\" title=\"Reveal this e-mail address\">...</a>@" htmlentities ($emailparts [1]);
  276.  
  277. }
  278.  
  279.  
  280. ?>

Documentation generated on Wed, 29 Jul 2015 13:57:18 +0000 by phpDocumentor 1.5.0-lsces