@@ -36,53 +36,53 @@ |
||
| 36 | 36 | */ |
| 37 | 37 | class CurlPost implements RequestMethod |
| 38 | 38 | { |
| 39 | - /** |
|
| 40 | - * URL to which requests are sent via cURL. |
|
| 41 | - * @const string |
|
| 42 | - */ |
|
| 43 | - const SITE_VERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify'; |
|
| 39 | + /** |
|
| 40 | + * URL to which requests are sent via cURL. |
|
| 41 | + * @const string |
|
| 42 | + */ |
|
| 43 | + const SITE_VERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify'; |
|
| 44 | 44 | |
| 45 | - /** |
|
| 46 | - * Curl connection to the reCAPTCHA service |
|
| 47 | - * @var Curl |
|
| 48 | - */ |
|
| 49 | - private $curl; |
|
| 45 | + /** |
|
| 46 | + * Curl connection to the reCAPTCHA service |
|
| 47 | + * @var Curl |
|
| 48 | + */ |
|
| 49 | + private $curl; |
|
| 50 | 50 | |
| 51 | - public function __construct(Curl $curl = null) |
|
| 52 | - { |
|
| 53 | - if (!is_null($curl)) { |
|
| 54 | - $this->curl = $curl; |
|
| 55 | - } else { |
|
| 56 | - $this->curl = new Curl(); |
|
| 57 | - } |
|
| 58 | - } |
|
| 51 | + public function __construct(Curl $curl = null) |
|
| 52 | + { |
|
| 53 | + if (!is_null($curl)) { |
|
| 54 | + $this->curl = $curl; |
|
| 55 | + } else { |
|
| 56 | + $this->curl = new Curl(); |
|
| 57 | + } |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | - /** |
|
| 61 | - * Submit the cURL request with the specified parameters. |
|
| 62 | - * |
|
| 63 | - * @param RequestParameters $params Request parameters |
|
| 64 | - * @return string Body of the reCAPTCHA response |
|
| 65 | - */ |
|
| 66 | - public function submit(RequestParameters $params) |
|
| 67 | - { |
|
| 68 | - $handle = $this->curl->init(self::SITE_VERIFY_URL); |
|
| 60 | + /** |
|
| 61 | + * Submit the cURL request with the specified parameters. |
|
| 62 | + * |
|
| 63 | + * @param RequestParameters $params Request parameters |
|
| 64 | + * @return string Body of the reCAPTCHA response |
|
| 65 | + */ |
|
| 66 | + public function submit(RequestParameters $params) |
|
| 67 | + { |
|
| 68 | + $handle = $this->curl->init(self::SITE_VERIFY_URL); |
|
| 69 | 69 | |
| 70 | - $options = array( |
|
| 71 | - CURLOPT_POST => true, |
|
| 72 | - CURLOPT_POSTFIELDS => $params->toQueryString(), |
|
| 73 | - CURLOPT_HTTPHEADER => array( |
|
| 74 | - 'Content-Type: application/x-www-form-urlencoded' |
|
| 75 | - ), |
|
| 76 | - CURLINFO_HEADER_OUT => false, |
|
| 77 | - CURLOPT_HEADER => false, |
|
| 78 | - CURLOPT_RETURNTRANSFER => true, |
|
| 79 | - CURLOPT_SSL_VERIFYPEER => true |
|
| 80 | - ); |
|
| 81 | - $this->curl->setoptArray($handle, $options); |
|
| 70 | + $options = array( |
|
| 71 | + CURLOPT_POST => true, |
|
| 72 | + CURLOPT_POSTFIELDS => $params->toQueryString(), |
|
| 73 | + CURLOPT_HTTPHEADER => array( |
|
| 74 | + 'Content-Type: application/x-www-form-urlencoded' |
|
| 75 | + ), |
|
| 76 | + CURLINFO_HEADER_OUT => false, |
|
| 77 | + CURLOPT_HEADER => false, |
|
| 78 | + CURLOPT_RETURNTRANSFER => true, |
|
| 79 | + CURLOPT_SSL_VERIFYPEER => true |
|
| 80 | + ); |
|
| 81 | + $this->curl->setoptArray($handle, $options); |
|
| 82 | 82 | |
| 83 | - $response = $this->curl->exec($handle); |
|
| 84 | - $this->curl->close($handle); |
|
| 83 | + $response = $this->curl->exec($handle); |
|
| 84 | + $this->curl->close($handle); |
|
| 85 | 85 | |
| 86 | - return $response; |
|
| 87 | - } |
|
| 86 | + return $response; |
|
| 87 | + } |
|
| 88 | 88 | } |
@@ -32,74 +32,74 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | class Socket |
| 34 | 34 | { |
| 35 | - private $handle = null; |
|
| 35 | + private $handle = null; |
|
| 36 | 36 | |
| 37 | - /** |
|
| 38 | - * fsockopen |
|
| 39 | - * |
|
| 40 | - * @see http://php.net/fsockopen |
|
| 41 | - * @param string $hostname |
|
| 42 | - * @param int $port |
|
| 43 | - * @param int $errno |
|
| 44 | - * @param string $errstr |
|
| 45 | - * @param float $timeout |
|
| 46 | - * @return resource |
|
| 47 | - */ |
|
| 48 | - public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) |
|
| 49 | - { |
|
| 50 | - $this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout)); |
|
| 37 | + /** |
|
| 38 | + * fsockopen |
|
| 39 | + * |
|
| 40 | + * @see http://php.net/fsockopen |
|
| 41 | + * @param string $hostname |
|
| 42 | + * @param int $port |
|
| 43 | + * @param int $errno |
|
| 44 | + * @param string $errstr |
|
| 45 | + * @param float $timeout |
|
| 46 | + * @return resource |
|
| 47 | + */ |
|
| 48 | + public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) |
|
| 49 | + { |
|
| 50 | + $this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout)); |
|
| 51 | 51 | |
| 52 | - if ($this->handle != false && $errno === 0 && $errstr === '') { |
|
| 53 | - return $this->handle; |
|
| 54 | - } else { |
|
| 55 | - return false; |
|
| 56 | - } |
|
| 57 | - } |
|
| 52 | + if ($this->handle != false && $errno === 0 && $errstr === '') { |
|
| 53 | + return $this->handle; |
|
| 54 | + } else { |
|
| 55 | + return false; |
|
| 56 | + } |
|
| 57 | + } |
|
| 58 | 58 | |
| 59 | - /** |
|
| 60 | - * fwrite |
|
| 61 | - * |
|
| 62 | - * @see http://php.net/fwrite |
|
| 63 | - * @param string $string |
|
| 64 | - * @param int $length |
|
| 65 | - * @return int | bool |
|
| 66 | - */ |
|
| 67 | - public function fwrite($string, $length = null) |
|
| 68 | - { |
|
| 69 | - return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length)); |
|
| 70 | - } |
|
| 59 | + /** |
|
| 60 | + * fwrite |
|
| 61 | + * |
|
| 62 | + * @see http://php.net/fwrite |
|
| 63 | + * @param string $string |
|
| 64 | + * @param int $length |
|
| 65 | + * @return int | bool |
|
| 66 | + */ |
|
| 67 | + public function fwrite($string, $length = null) |
|
| 68 | + { |
|
| 69 | + return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length)); |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | - /** |
|
| 73 | - * fgets |
|
| 74 | - * |
|
| 75 | - * @see http://php.net/fgets |
|
| 76 | - * @param int $length |
|
| 77 | - * @return string |
|
| 78 | - */ |
|
| 79 | - public function fgets($length = null) |
|
| 80 | - { |
|
| 81 | - return fgets($this->handle, $length); |
|
| 82 | - } |
|
| 72 | + /** |
|
| 73 | + * fgets |
|
| 74 | + * |
|
| 75 | + * @see http://php.net/fgets |
|
| 76 | + * @param int $length |
|
| 77 | + * @return string |
|
| 78 | + */ |
|
| 79 | + public function fgets($length = null) |
|
| 80 | + { |
|
| 81 | + return fgets($this->handle, $length); |
|
| 82 | + } |
|
| 83 | 83 | |
| 84 | - /** |
|
| 85 | - * feof |
|
| 86 | - * |
|
| 87 | - * @see http://php.net/feof |
|
| 88 | - * @return bool |
|
| 89 | - */ |
|
| 90 | - public function feof() |
|
| 91 | - { |
|
| 92 | - return feof($this->handle); |
|
| 93 | - } |
|
| 84 | + /** |
|
| 85 | + * feof |
|
| 86 | + * |
|
| 87 | + * @see http://php.net/feof |
|
| 88 | + * @return bool |
|
| 89 | + */ |
|
| 90 | + public function feof() |
|
| 91 | + { |
|
| 92 | + return feof($this->handle); |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | - /** |
|
| 96 | - * fclose |
|
| 97 | - * |
|
| 98 | - * @see http://php.net/fclose |
|
| 99 | - * @return bool |
|
| 100 | - */ |
|
| 101 | - public function fclose() |
|
| 102 | - { |
|
| 103 | - return fclose($this->handle); |
|
| 104 | - } |
|
| 95 | + /** |
|
| 96 | + * fclose |
|
| 97 | + * |
|
| 98 | + * @see http://php.net/fclose |
|
| 99 | + * @return bool |
|
| 100 | + */ |
|
| 101 | + public function fclose() |
|
| 102 | + { |
|
| 103 | + return fclose($this->handle); |
|
| 104 | + } |
|
| 105 | 105 | } |
@@ -34,37 +34,37 @@ |
||
| 34 | 34 | */ |
| 35 | 35 | class Post implements RequestMethod |
| 36 | 36 | { |
| 37 | - /** |
|
| 38 | - * URL to which requests are POSTed. |
|
| 39 | - * @const string |
|
| 40 | - */ |
|
| 41 | - const SITE_VERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify'; |
|
| 37 | + /** |
|
| 38 | + * URL to which requests are POSTed. |
|
| 39 | + * @const string |
|
| 40 | + */ |
|
| 41 | + const SITE_VERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify'; |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Submit the POST request with the specified parameters. |
|
| 45 | - * |
|
| 46 | - * @param RequestParameters $params Request parameters |
|
| 47 | - * @return string Body of the reCAPTCHA response |
|
| 48 | - */ |
|
| 49 | - public function submit(RequestParameters $params) |
|
| 50 | - { |
|
| 51 | - /** |
|
| 52 | - * PHP 5.6.0 changed the way you specify the peer name for SSL context options. |
|
| 53 | - * Using "CN_name" will still work, but it will raise deprecated errors. |
|
| 54 | - */ |
|
| 55 | - $peer_key = version_compare(PHP_VERSION, '5.6.0', '<') ? 'CN_name' : 'peer_name'; |
|
| 56 | - $options = array( |
|
| 57 | - 'http' => array( |
|
| 58 | - 'header' => "Content-type: application/x-www-form-urlencoded\r\n", |
|
| 59 | - 'method' => 'POST', |
|
| 60 | - 'content' => $params->toQueryString(), |
|
| 61 | - // Force the peer to validate (not needed in 5.6.0+, but still works |
|
| 62 | - 'verify_peer' => true, |
|
| 63 | - // Force the peer validation to use www.google.com |
|
| 64 | - $peer_key => 'www.google.com', |
|
| 65 | - ), |
|
| 66 | - ); |
|
| 67 | - $context = stream_context_create($options); |
|
| 68 | - return file_get_contents(self::SITE_VERIFY_URL, false, $context); |
|
| 69 | - } |
|
| 43 | + /** |
|
| 44 | + * Submit the POST request with the specified parameters. |
|
| 45 | + * |
|
| 46 | + * @param RequestParameters $params Request parameters |
|
| 47 | + * @return string Body of the reCAPTCHA response |
|
| 48 | + */ |
|
| 49 | + public function submit(RequestParameters $params) |
|
| 50 | + { |
|
| 51 | + /** |
|
| 52 | + * PHP 5.6.0 changed the way you specify the peer name for SSL context options. |
|
| 53 | + * Using "CN_name" will still work, but it will raise deprecated errors. |
|
| 54 | + */ |
|
| 55 | + $peer_key = version_compare(PHP_VERSION, '5.6.0', '<') ? 'CN_name' : 'peer_name'; |
|
| 56 | + $options = array( |
|
| 57 | + 'http' => array( |
|
| 58 | + 'header' => "Content-type: application/x-www-form-urlencoded\r\n", |
|
| 59 | + 'method' => 'POST', |
|
| 60 | + 'content' => $params->toQueryString(), |
|
| 61 | + // Force the peer to validate (not needed in 5.6.0+, but still works |
|
| 62 | + 'verify_peer' => true, |
|
| 63 | + // Force the peer validation to use www.google.com |
|
| 64 | + $peer_key => 'www.google.com', |
|
| 65 | + ), |
|
| 66 | + ); |
|
| 67 | + $context = stream_context_create($options); |
|
| 68 | + return file_get_contents(self::SITE_VERIFY_URL, false, $context); |
|
| 69 | + } |
|
| 70 | 70 | } |
@@ -36,86 +36,86 @@ |
||
| 36 | 36 | */ |
| 37 | 37 | class SocketPost implements RequestMethod |
| 38 | 38 | { |
| 39 | - /** |
|
| 40 | - * reCAPTCHA service host. |
|
| 41 | - * @const string |
|
| 42 | - */ |
|
| 43 | - const RECAPTCHA_HOST = 'www.google.com'; |
|
| 44 | - |
|
| 45 | - /** |
|
| 46 | - * @const string reCAPTCHA service path |
|
| 47 | - */ |
|
| 48 | - const SITE_VERIFY_PATH = '/recaptcha/api/siteverify'; |
|
| 49 | - |
|
| 50 | - /** |
|
| 51 | - * @const string Bad request error |
|
| 52 | - */ |
|
| 53 | - const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}'; |
|
| 54 | - |
|
| 55 | - /** |
|
| 56 | - * @const string Bad response error |
|
| 57 | - */ |
|
| 58 | - const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}'; |
|
| 59 | - |
|
| 60 | - /** |
|
| 61 | - * Socket to the reCAPTCHA service |
|
| 62 | - * @var Socket |
|
| 63 | - */ |
|
| 64 | - private $socket; |
|
| 65 | - |
|
| 66 | - /** |
|
| 67 | - * Constructor |
|
| 68 | - * |
|
| 69 | - * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing |
|
| 70 | - */ |
|
| 71 | - public function __construct(Socket $socket = null) |
|
| 72 | - { |
|
| 73 | - if (!is_null($socket)) { |
|
| 74 | - $this->socket = $socket; |
|
| 75 | - } else { |
|
| 76 | - $this->socket = new Socket(); |
|
| 77 | - } |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - /** |
|
| 81 | - * Submit the POST request with the specified parameters. |
|
| 82 | - * |
|
| 83 | - * @param RequestParameters $params Request parameters |
|
| 84 | - * @return string Body of the reCAPTCHA response |
|
| 85 | - */ |
|
| 86 | - public function submit(RequestParameters $params) |
|
| 87 | - { |
|
| 88 | - $errno = 0; |
|
| 89 | - $errstr = ''; |
|
| 90 | - |
|
| 91 | - if (false === $this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30)) { |
|
| 92 | - return self::BAD_REQUEST; |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - $content = $params->toQueryString(); |
|
| 96 | - |
|
| 97 | - $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
| 98 | - $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
| 99 | - $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
|
| 100 | - $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
| 101 | - $request .= "Connection: close\r\n\r\n"; |
|
| 102 | - $request .= $content . "\r\n\r\n"; |
|
| 103 | - |
|
| 104 | - $this->socket->fwrite($request); |
|
| 105 | - $response = ''; |
|
| 106 | - |
|
| 107 | - while (!$this->socket->feof()) { |
|
| 108 | - $response .= $this->socket->fgets(4096); |
|
| 109 | - } |
|
| 110 | - |
|
| 111 | - $this->socket->fclose(); |
|
| 112 | - |
|
| 113 | - if (0 !== strpos($response, 'HTTP/1.1 200 OK')) { |
|
| 114 | - return self::BAD_RESPONSE; |
|
| 115 | - } |
|
| 116 | - |
|
| 117 | - $parts = preg_split("#\n\s*\n#Uis", $response); |
|
| 118 | - |
|
| 119 | - return $parts[1]; |
|
| 120 | - } |
|
| 39 | + /** |
|
| 40 | + * reCAPTCHA service host. |
|
| 41 | + * @const string |
|
| 42 | + */ |
|
| 43 | + const RECAPTCHA_HOST = 'www.google.com'; |
|
| 44 | + |
|
| 45 | + /** |
|
| 46 | + * @const string reCAPTCHA service path |
|
| 47 | + */ |
|
| 48 | + const SITE_VERIFY_PATH = '/recaptcha/api/siteverify'; |
|
| 49 | + |
|
| 50 | + /** |
|
| 51 | + * @const string Bad request error |
|
| 52 | + */ |
|
| 53 | + const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}'; |
|
| 54 | + |
|
| 55 | + /** |
|
| 56 | + * @const string Bad response error |
|
| 57 | + */ |
|
| 58 | + const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}'; |
|
| 59 | + |
|
| 60 | + /** |
|
| 61 | + * Socket to the reCAPTCHA service |
|
| 62 | + * @var Socket |
|
| 63 | + */ |
|
| 64 | + private $socket; |
|
| 65 | + |
|
| 66 | + /** |
|
| 67 | + * Constructor |
|
| 68 | + * |
|
| 69 | + * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing |
|
| 70 | + */ |
|
| 71 | + public function __construct(Socket $socket = null) |
|
| 72 | + { |
|
| 73 | + if (!is_null($socket)) { |
|
| 74 | + $this->socket = $socket; |
|
| 75 | + } else { |
|
| 76 | + $this->socket = new Socket(); |
|
| 77 | + } |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + /** |
|
| 81 | + * Submit the POST request with the specified parameters. |
|
| 82 | + * |
|
| 83 | + * @param RequestParameters $params Request parameters |
|
| 84 | + * @return string Body of the reCAPTCHA response |
|
| 85 | + */ |
|
| 86 | + public function submit(RequestParameters $params) |
|
| 87 | + { |
|
| 88 | + $errno = 0; |
|
| 89 | + $errstr = ''; |
|
| 90 | + |
|
| 91 | + if (false === $this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30)) { |
|
| 92 | + return self::BAD_REQUEST; |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + $content = $params->toQueryString(); |
|
| 96 | + |
|
| 97 | + $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
| 98 | + $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
| 99 | + $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
|
| 100 | + $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
| 101 | + $request .= "Connection: close\r\n\r\n"; |
|
| 102 | + $request .= $content . "\r\n\r\n"; |
|
| 103 | + |
|
| 104 | + $this->socket->fwrite($request); |
|
| 105 | + $response = ''; |
|
| 106 | + |
|
| 107 | + while (!$this->socket->feof()) { |
|
| 108 | + $response .= $this->socket->fgets(4096); |
|
| 109 | + } |
|
| 110 | + |
|
| 111 | + $this->socket->fclose(); |
|
| 112 | + |
|
| 113 | + if (0 !== strpos($response, 'HTTP/1.1 200 OK')) { |
|
| 114 | + return self::BAD_RESPONSE; |
|
| 115 | + } |
|
| 116 | + |
|
| 117 | + $parts = preg_split("#\n\s*\n#Uis", $response); |
|
| 118 | + |
|
| 119 | + return $parts[1]; |
|
| 120 | + } |
|
| 121 | 121 | } |
@@ -32,43 +32,43 @@ |
||
| 32 | 32 | class Curl |
| 33 | 33 | { |
| 34 | 34 | |
| 35 | - /** |
|
| 36 | - * @see http://php.net/curl_init |
|
| 37 | - * @param string $url |
|
| 38 | - * @return resource cURL handle |
|
| 39 | - */ |
|
| 40 | - public function init($url = null) |
|
| 41 | - { |
|
| 42 | - return curl_init($url); |
|
| 43 | - } |
|
| 35 | + /** |
|
| 36 | + * @see http://php.net/curl_init |
|
| 37 | + * @param string $url |
|
| 38 | + * @return resource cURL handle |
|
| 39 | + */ |
|
| 40 | + public function init($url = null) |
|
| 41 | + { |
|
| 42 | + return curl_init($url); |
|
| 43 | + } |
|
| 44 | 44 | |
| 45 | - /** |
|
| 46 | - * @see http://php.net/curl_setopt_array |
|
| 47 | - * @param resource $ch |
|
| 48 | - * @param array $options |
|
| 49 | - * @return bool |
|
| 50 | - */ |
|
| 51 | - public function setoptArray($ch, array $options) |
|
| 52 | - { |
|
| 53 | - return curl_setopt_array($ch, $options); |
|
| 54 | - } |
|
| 45 | + /** |
|
| 46 | + * @see http://php.net/curl_setopt_array |
|
| 47 | + * @param resource $ch |
|
| 48 | + * @param array $options |
|
| 49 | + * @return bool |
|
| 50 | + */ |
|
| 51 | + public function setoptArray($ch, array $options) |
|
| 52 | + { |
|
| 53 | + return curl_setopt_array($ch, $options); |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | - /** |
|
| 57 | - * @see http://php.net/curl_exec |
|
| 58 | - * @param resource $ch |
|
| 59 | - * @return mixed |
|
| 60 | - */ |
|
| 61 | - public function exec($ch) |
|
| 62 | - { |
|
| 63 | - return curl_exec($ch); |
|
| 64 | - } |
|
| 56 | + /** |
|
| 57 | + * @see http://php.net/curl_exec |
|
| 58 | + * @param resource $ch |
|
| 59 | + * @return mixed |
|
| 60 | + */ |
|
| 61 | + public function exec($ch) |
|
| 62 | + { |
|
| 63 | + return curl_exec($ch); |
|
| 64 | + } |
|
| 65 | 65 | |
| 66 | - /** |
|
| 67 | - * @see http://php.net/curl_close |
|
| 68 | - * @param resource $ch |
|
| 69 | - */ |
|
| 70 | - public function close($ch) |
|
| 71 | - { |
|
| 72 | - curl_close($ch); |
|
| 73 | - } |
|
| 66 | + /** |
|
| 67 | + * @see http://php.net/curl_close |
|
| 68 | + * @param resource $ch |
|
| 69 | + */ |
|
| 70 | + public function close($ch) |
|
| 71 | + { |
|
| 72 | + curl_close($ch); |
|
| 73 | + } |
|
| 74 | 74 | } |
@@ -31,72 +31,72 @@ |
||
| 31 | 31 | */ |
| 32 | 32 | class Response |
| 33 | 33 | { |
| 34 | - /** |
|
| 35 | - * Succes or failure. |
|
| 36 | - * @var boolean |
|
| 37 | - */ |
|
| 38 | - private $success = false; |
|
| 34 | + /** |
|
| 35 | + * Succes or failure. |
|
| 36 | + * @var boolean |
|
| 37 | + */ |
|
| 38 | + private $success = false; |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * Error code strings. |
|
| 42 | - * @var array |
|
| 43 | - */ |
|
| 44 | - private $errorCodes = array(); |
|
| 40 | + /** |
|
| 41 | + * Error code strings. |
|
| 42 | + * @var array |
|
| 43 | + */ |
|
| 44 | + private $errorCodes = array(); |
|
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Build the response from the expected JSON returned by the service. |
|
| 48 | - * |
|
| 49 | - * @param string $json |
|
| 50 | - * @return \ReCaptcha\Response |
|
| 51 | - */ |
|
| 52 | - public static function fromJson($json) |
|
| 53 | - { |
|
| 54 | - $responseData = json_decode($json, true); |
|
| 46 | + /** |
|
| 47 | + * Build the response from the expected JSON returned by the service. |
|
| 48 | + * |
|
| 49 | + * @param string $json |
|
| 50 | + * @return \ReCaptcha\Response |
|
| 51 | + */ |
|
| 52 | + public static function fromJson($json) |
|
| 53 | + { |
|
| 54 | + $responseData = json_decode($json, true); |
|
| 55 | 55 | |
| 56 | - if (!$responseData) { |
|
| 57 | - return new Response(false, array('invalid-json')); |
|
| 58 | - } |
|
| 56 | + if (!$responseData) { |
|
| 57 | + return new Response(false, array('invalid-json')); |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | - if (isset($responseData['success']) && $responseData['success'] == true) { |
|
| 61 | - return new Response(true); |
|
| 62 | - } |
|
| 60 | + if (isset($responseData['success']) && $responseData['success'] == true) { |
|
| 61 | + return new Response(true); |
|
| 62 | + } |
|
| 63 | 63 | |
| 64 | - if (isset($responseData['error-codes']) && is_array($responseData['error-codes'])) { |
|
| 65 | - return new Response(false, $responseData['error-codes']); |
|
| 66 | - } |
|
| 64 | + if (isset($responseData['error-codes']) && is_array($responseData['error-codes'])) { |
|
| 65 | + return new Response(false, $responseData['error-codes']); |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | - return new Response(false); |
|
| 69 | - } |
|
| 68 | + return new Response(false); |
|
| 69 | + } |
|
| 70 | 70 | |
| 71 | - /** |
|
| 72 | - * Constructor. |
|
| 73 | - * |
|
| 74 | - * @param boolean $success |
|
| 75 | - * @param array $errorCodes |
|
| 76 | - */ |
|
| 77 | - public function __construct($success, array $errorCodes = array()) |
|
| 78 | - { |
|
| 79 | - $this->success = $success; |
|
| 80 | - $this->errorCodes = $errorCodes; |
|
| 81 | - } |
|
| 71 | + /** |
|
| 72 | + * Constructor. |
|
| 73 | + * |
|
| 74 | + * @param boolean $success |
|
| 75 | + * @param array $errorCodes |
|
| 76 | + */ |
|
| 77 | + public function __construct($success, array $errorCodes = array()) |
|
| 78 | + { |
|
| 79 | + $this->success = $success; |
|
| 80 | + $this->errorCodes = $errorCodes; |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - /** |
|
| 84 | - * Is success? |
|
| 85 | - * |
|
| 86 | - * @return boolean |
|
| 87 | - */ |
|
| 88 | - public function isSuccess() |
|
| 89 | - { |
|
| 90 | - return $this->success; |
|
| 91 | - } |
|
| 83 | + /** |
|
| 84 | + * Is success? |
|
| 85 | + * |
|
| 86 | + * @return boolean |
|
| 87 | + */ |
|
| 88 | + public function isSuccess() |
|
| 89 | + { |
|
| 90 | + return $this->success; |
|
| 91 | + } |
|
| 92 | 92 | |
| 93 | - /** |
|
| 94 | - * Get error codes. |
|
| 95 | - * |
|
| 96 | - * @return array |
|
| 97 | - */ |
|
| 98 | - public function getErrorCodes() |
|
| 99 | - { |
|
| 100 | - return $this->errorCodes; |
|
| 101 | - } |
|
| 93 | + /** |
|
| 94 | + * Get error codes. |
|
| 95 | + * |
|
| 96 | + * @return array |
|
| 97 | + */ |
|
| 98 | + public function getErrorCodes() |
|
| 99 | + { |
|
| 100 | + return $this->errorCodes; |
|
| 101 | + } |
|
| 102 | 102 | } |
@@ -31,67 +31,67 @@ |
||
| 31 | 31 | */ |
| 32 | 32 | class ReCaptcha |
| 33 | 33 | { |
| 34 | - /** |
|
| 35 | - * Version of this client library. |
|
| 36 | - * @const string |
|
| 37 | - */ |
|
| 38 | - const VERSION = 'php_1.1.2'; |
|
| 34 | + /** |
|
| 35 | + * Version of this client library. |
|
| 36 | + * @const string |
|
| 37 | + */ |
|
| 38 | + const VERSION = 'php_1.1.2'; |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * Shared secret for the site. |
|
| 42 | - * @var type string |
|
| 43 | - */ |
|
| 44 | - private $secret; |
|
| 40 | + /** |
|
| 41 | + * Shared secret for the site. |
|
| 42 | + * @var type string |
|
| 43 | + */ |
|
| 44 | + private $secret; |
|
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Method used to communicate with service. Defaults to POST request. |
|
| 48 | - * @var RequestMethod |
|
| 49 | - */ |
|
| 50 | - private $requestMethod; |
|
| 46 | + /** |
|
| 47 | + * Method used to communicate with service. Defaults to POST request. |
|
| 48 | + * @var RequestMethod |
|
| 49 | + */ |
|
| 50 | + private $requestMethod; |
|
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * Create a configured instance to use the reCAPTCHA service. |
|
| 54 | - * |
|
| 55 | - * @param string $secret shared secret between site and reCAPTCHA server. |
|
| 56 | - * @param RequestMethod $requestMethod method used to send the request. Defaults to POST. |
|
| 57 | - */ |
|
| 58 | - public function __construct($secret, RequestMethod $requestMethod = null) |
|
| 59 | - { |
|
| 60 | - if (empty($secret)) { |
|
| 61 | - throw new \RuntimeException('No secret provided'); |
|
| 62 | - } |
|
| 52 | + /** |
|
| 53 | + * Create a configured instance to use the reCAPTCHA service. |
|
| 54 | + * |
|
| 55 | + * @param string $secret shared secret between site and reCAPTCHA server. |
|
| 56 | + * @param RequestMethod $requestMethod method used to send the request. Defaults to POST. |
|
| 57 | + */ |
|
| 58 | + public function __construct($secret, RequestMethod $requestMethod = null) |
|
| 59 | + { |
|
| 60 | + if (empty($secret)) { |
|
| 61 | + throw new \RuntimeException('No secret provided'); |
|
| 62 | + } |
|
| 63 | 63 | |
| 64 | - if (!is_string($secret)) { |
|
| 65 | - throw new \RuntimeException('The provided secret must be a string'); |
|
| 66 | - } |
|
| 64 | + if (!is_string($secret)) { |
|
| 65 | + throw new \RuntimeException('The provided secret must be a string'); |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | - $this->secret = $secret; |
|
| 68 | + $this->secret = $secret; |
|
| 69 | 69 | |
| 70 | - if (!is_null($requestMethod)) { |
|
| 71 | - $this->requestMethod = $requestMethod; |
|
| 72 | - } else { |
|
| 73 | - $this->requestMethod = new RequestMethod\Post(); |
|
| 74 | - } |
|
| 75 | - } |
|
| 70 | + if (!is_null($requestMethod)) { |
|
| 71 | + $this->requestMethod = $requestMethod; |
|
| 72 | + } else { |
|
| 73 | + $this->requestMethod = new RequestMethod\Post(); |
|
| 74 | + } |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | - /** |
|
| 78 | - * Calls the reCAPTCHA siteverify API to verify whether the user passes |
|
| 79 | - * CAPTCHA test. |
|
| 80 | - * |
|
| 81 | - * @param string $response The value of 'g-recaptcha-response' in the submitted form. |
|
| 82 | - * @param string $remoteIp The end user's IP address. |
|
| 83 | - * @return Response Response from the service. |
|
| 84 | - */ |
|
| 85 | - public function verify($response, $remoteIp = null) |
|
| 86 | - { |
|
| 87 | - // Discard empty solution submissions |
|
| 88 | - if (empty($response)) { |
|
| 89 | - $recaptchaResponse = new Response(false, array('missing-input-response')); |
|
| 90 | - return $recaptchaResponse; |
|
| 91 | - } |
|
| 77 | + /** |
|
| 78 | + * Calls the reCAPTCHA siteverify API to verify whether the user passes |
|
| 79 | + * CAPTCHA test. |
|
| 80 | + * |
|
| 81 | + * @param string $response The value of 'g-recaptcha-response' in the submitted form. |
|
| 82 | + * @param string $remoteIp The end user's IP address. |
|
| 83 | + * @return Response Response from the service. |
|
| 84 | + */ |
|
| 85 | + public function verify($response, $remoteIp = null) |
|
| 86 | + { |
|
| 87 | + // Discard empty solution submissions |
|
| 88 | + if (empty($response)) { |
|
| 89 | + $recaptchaResponse = new Response(false, array('missing-input-response')); |
|
| 90 | + return $recaptchaResponse; |
|
| 91 | + } |
|
| 92 | 92 | |
| 93 | - $params = new RequestParameters($this->secret, $response, $remoteIp, self::VERSION); |
|
| 94 | - $rawResponse = $this->requestMethod->submit($params); |
|
| 95 | - return Response::fromJson($rawResponse); |
|
| 96 | - } |
|
| 93 | + $params = new RequestParameters($this->secret, $response, $remoteIp, self::VERSION); |
|
| 94 | + $rawResponse = $this->requestMethod->submit($params); |
|
| 95 | + return Response::fromJson($rawResponse); |
|
| 96 | + } |
|
| 97 | 97 | } |