CurlPost.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. /**
  3. * This is a PHP library that handles calling reCAPTCHA.
  4. *
  5. * @copyright Copyright (c) 2015, Google Inc.
  6. * @link http://www.google.com/recaptcha
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. namespace ReCaptcha\RequestMethod;
  27. use ReCaptcha\RequestMethod;
  28. use ReCaptcha\RequestParameters;
  29. /**
  30. * Sends cURL request to the reCAPTCHA service.
  31. * Note: this requires the cURL extension to be enabled in PHP
  32. * @see http://php.net/manual/en/book.curl.php
  33. */
  34. class CurlPost implements RequestMethod
  35. {
  36. /**
  37. * URL to which requests are sent via cURL.
  38. * @const string
  39. */
  40. const SITE_VERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify';
  41. /**
  42. * Curl connection to the reCAPTCHA service
  43. * @var Curl
  44. */
  45. private $curl;
  46. public function __construct(Curl $curl = null)
  47. {
  48. if (!is_null($curl)) {
  49. $this->curl = $curl;
  50. } else {
  51. $this->curl = new Curl();
  52. }
  53. }
  54. /**
  55. * Submit the cURL request with the specified parameters.
  56. *
  57. * @param RequestParameters $params Request parameters
  58. * @return string Body of the reCAPTCHA response
  59. */
  60. public function submit(RequestParameters $params)
  61. {
  62. $handle = $this->curl->init(self::SITE_VERIFY_URL);
  63. $options = array(
  64. CURLOPT_POST => true,
  65. CURLOPT_POSTFIELDS => $params->toQueryString(),
  66. CURLOPT_HTTPHEADER => array(
  67. 'Content-Type: application/x-www-form-urlencoded'
  68. ),
  69. CURLINFO_HEADER_OUT => false,
  70. CURLOPT_HEADER => false,
  71. CURLOPT_RETURNTRANSFER => true,
  72. CURLOPT_SSL_VERIFYPEER => true
  73. );
  74. $this->curl->setoptArray($handle, $options);
  75. $response = $this->curl->exec($handle);
  76. $this->curl->close($handle);
  77. return $response;
  78. }
  79. }