Jiyan.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. namespace app\common\library;
  3. use think\Controller;
  4. header('Content-type:text/html;charset=utf-8');
  5. class Jiyan extends Controller
  6. {
  7. public static function jy($lot_number,$captcha_output,$pass_token,$gen_time,$type)
  8. {
  9. //type 1:发送短信验证码验证 2:下单验证
  10. error_reporting(0);
  11. // 1.初始化极验参数信息
  12. // 1.initialize geetest parameter
  13. switch ($type){
  14. case 1:
  15. $captcha_id = "46c329019f54e6d6e2171bc93da4fc57";
  16. $captcha_key = "fcea1180bef1b1a84d3acb6338a4200c";
  17. break;
  18. case 2:
  19. $captcha_id = "f79240154d3834df7b73d5514d555fff";
  20. $captcha_key = "97ad4e9039d04bc21222fc504152708e";
  21. break;
  22. }
  23. $api_server = "http://gcaptcha4.geetest.com";
  24. // 3.生成签名
  25. // 3.generate signature
  26. // 生成签名使用标准的hmac算法,使用用户当前完成验证的流水号lot_number作为原始消息message,使用客户验证私钥作为key
  27. // use standard hmac algorithms to generate signatures, and take the user's current verification serial number lot_number as the original message, and the client's verification private key as the key
  28. // 采用sha256散列算法将message和key进行单向散列生成最终的签名
  29. // use sha256 hash algorithm to hash message and key in one direction to generate the final signature
  30. $sign_token = hash_hmac('sha256', $lot_number, $captcha_key);
  31. // 4.上传校验参数到极验二次验证接口, 校验用户验证状态
  32. // 4.upload verification parameters to the secondary verification interface of GeeTest to validate the user verification status
  33. // captcha_id 参数建议放在 url 后面, 方便请求异常时可以在日志中根据id快速定位到异常请求
  34. // geetest recommends to put captcha_id parameter after url, so that when a request exception occurs, it can be quickly located in the log according to the id
  35. $query = array(
  36. "lot_number" => $lot_number,
  37. "captcha_output" => $captcha_output,
  38. "pass_token" => $pass_token,
  39. "gen_time" => $gen_time,
  40. "sign_token" => $sign_token
  41. );
  42. $url = sprintf($api_server . "/validate" . "?captcha_id=%s", $captcha_id);
  43. $res = self::post_request($url,$query);
  44. $obj = json_decode($res,true);
  45. return $obj;
  46. }
  47. // 注意处理接口异常情况,当请求极验二次验证接口异常时做出相应异常处理
  48. // pay attention to interface exceptions, and make corresponding exception handling when requesting GeeTest secondary verification interface exceptions or response status is not 200
  49. // 保证不会因为接口请求超时或服务未响应而阻碍业务流程
  50. // website's business will not be interrupted due to interface request timeout or server not-responding
  51. public static function post_request($url, $postdata) {
  52. $data = http_build_query($postdata);
  53. $options = array(
  54. 'http' => array(
  55. 'method' => 'POST',
  56. 'header' => "Content-type: application/x-www-form-urlencoded",
  57. 'content' => $data,
  58. 'timeout' => 5
  59. )
  60. );
  61. $context = stream_context_create($options);
  62. $result = file_get_contents($url, false, $context);
  63. if($http_response_header[0] != 'HTTP/1.1 200 OK'){
  64. $result = array(
  65. "result" => "success",
  66. "reason" => "request geetest api fail"
  67. );
  68. return json_encode($result);
  69. }else{
  70. return $result;
  71. }
  72. }
  73. }