Geetestlib.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. <?php
  2. namespace com;
  3. /**
  4. * 极验行为式验证安全平台,php 网站主后台包含的库文件
  5. *
  6. * @author Tanxu
  7. */
  8. class Geetestlib {
  9. const GT_SDK_VERSION = 'php_3.2.0';
  10. public static $connectTimeout = 1;
  11. public static $socketTimeout = 1;
  12. private $response;
  13. public function __construct($captcha_id, $private_key) {
  14. $this->captcha_id = $captcha_id;
  15. $this->private_key = $private_key;
  16. }
  17. /**
  18. * 判断极验服务器是否down机
  19. *
  20. * @param null $user_id
  21. * @return int
  22. */
  23. public function pre_process($user_id = null) {
  24. $url = "http://api.geetest.com/register.php?gt=" . $this->captcha_id;
  25. if (($user_id != null) and (is_string($user_id))) {
  26. $url = $url . "&user_id=" . $user_id;
  27. }
  28. $challenge = $this->send_request($url);
  29. if (strlen($challenge) != 32) {
  30. $this->failback_process();
  31. return 0;
  32. }
  33. $this->success_process($challenge);
  34. return 1;
  35. }
  36. /**
  37. * @param $challenge
  38. */
  39. private function success_process($challenge) {
  40. $challenge = md5($challenge . $this->private_key);
  41. $result = array(
  42. 'success' => 1,
  43. 'gt' => $this->captcha_id,
  44. 'challenge' => $challenge
  45. );
  46. $this->response = $result;
  47. }
  48. /**
  49. *
  50. */
  51. private function failback_process() {
  52. $rnd1 = md5(rand(0, 100));
  53. $rnd2 = md5(rand(0, 100));
  54. $challenge = $rnd1 . substr($rnd2, 0, 2);
  55. $result = array(
  56. 'success' => 0,
  57. 'gt' => $this->captcha_id,
  58. 'challenge' => $challenge
  59. );
  60. $this->response = $result;
  61. }
  62. /**
  63. * @return mixed
  64. */
  65. public function get_response_str() {
  66. return json_encode($this->response);
  67. }
  68. /**
  69. * 返回数组方便扩展
  70. *
  71. * @return mixed
  72. */
  73. public function get_response() {
  74. return $this->response;
  75. }
  76. /**
  77. * 正常模式获取验证结果
  78. *
  79. * @param $challenge
  80. * @param $validate
  81. * @param $seccode
  82. * @param null $user_id
  83. * @return int
  84. */
  85. public function success_validate($challenge, $validate, $seccode, $user_id = null) {
  86. if (!$this->check_validate($challenge, $validate)) {
  87. return 0;
  88. }
  89. $data = array(
  90. "seccode" => $seccode,
  91. "sdk" => self::GT_SDK_VERSION,
  92. );
  93. if (($user_id != null) and (is_string($user_id))) {
  94. $data["user_id"] = $user_id;
  95. }
  96. $url = "http://api.geetest.com/validate.php";
  97. $codevalidate = $this->post_request($url, $data);
  98. if ($codevalidate == md5($seccode)) {
  99. return 1;
  100. } else {
  101. if ($codevalidate == "false") {
  102. return 0;
  103. } else {
  104. return 0;
  105. }
  106. }
  107. }
  108. /**
  109. * 宕机模式获取验证结果
  110. *
  111. * @param $challenge
  112. * @param $validate
  113. * @param $seccode
  114. * @return int
  115. */
  116. public function fail_validate($challenge, $validate, $seccode) {
  117. if ($validate) {
  118. $value = explode("_", $validate);
  119. $ans = $this->decode_response($challenge, $value['0']);
  120. $bg_idx = $this->decode_response($challenge, $value['1']);
  121. $grp_idx = $this->decode_response($challenge, $value['2']);
  122. $x_pos = $this->get_failback_pic_ans($bg_idx, $grp_idx);
  123. $answer = abs($ans - $x_pos);
  124. if ($answer < 4) {
  125. return 1;
  126. } else {
  127. return 0;
  128. }
  129. } else {
  130. return 0;
  131. }
  132. }
  133. /**
  134. * @param $challenge
  135. * @param $validate
  136. * @return bool
  137. */
  138. private function check_validate($challenge, $validate) {
  139. if (strlen($validate) != 32) {
  140. return false;
  141. }
  142. if (md5($this->private_key . 'geetest' . $challenge) != $validate) {
  143. return false;
  144. }
  145. return true;
  146. }
  147. /**
  148. * GET 请求
  149. *
  150. * @param $url
  151. * @return mixed|string
  152. */
  153. private function send_request($url) {
  154. if (function_exists('curl_exec')) {
  155. $ch = curl_init();
  156. curl_setopt($ch, CURLOPT_URL, $url);
  157. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, self::$connectTimeout);
  158. curl_setopt($ch, CURLOPT_TIMEOUT, self::$socketTimeout);
  159. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  160. $data = curl_exec($ch);
  161. if (curl_errno($ch)) {
  162. $err = sprintf("curl[%s] error[%s]", $url, curl_errno($ch) . ':' . curl_error($ch));
  163. $this->triggerError($err);
  164. }
  165. curl_close($ch);
  166. } else {
  167. $opts = array(
  168. 'http' => array(
  169. 'method' => "GET",
  170. 'timeout' => self::$connectTimeout + self::$socketTimeout,
  171. )
  172. );
  173. $context = stream_context_create($opts);
  174. $data = file_get_contents($url, false, $context);
  175. }
  176. return $data;
  177. }
  178. /**
  179. *
  180. * @param $url
  181. * @param array $postdata
  182. * @return mixed|string
  183. */
  184. private function post_request($url, $postdata = '') {
  185. if (!$postdata) {
  186. return false;
  187. }
  188. $data = http_build_query($postdata);
  189. if (function_exists('curl_exec')) {
  190. $ch = curl_init();
  191. curl_setopt($ch, CURLOPT_URL, $url);
  192. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  193. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, self::$connectTimeout);
  194. curl_setopt($ch, CURLOPT_TIMEOUT, self::$socketTimeout);
  195. //不可能执行到的代码
  196. if (!$postdata) {
  197. curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  198. } else {
  199. curl_setopt($ch, CURLOPT_POST, 1);
  200. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  201. }
  202. $data = curl_exec($ch);
  203. if (curl_errno($ch)) {
  204. $err = sprintf("curl[%s] error[%s]", $url, curl_errno($ch) . ':' . curl_error($ch));
  205. $this->triggerError($err);
  206. }
  207. curl_close($ch);
  208. } else {
  209. if ($postdata) {
  210. $opts = array(
  211. 'http' => array(
  212. 'method' => 'POST',
  213. 'header' => "Content-type: application/x-www-form-urlencoded\r\n" . "Content-Length: " . strlen($data) . "\r\n",
  214. 'content' => $data,
  215. 'timeout' => self::$connectTimeout + self::$socketTimeout
  216. )
  217. );
  218. $context = stream_context_create($opts);
  219. $data = file_get_contents($url, false, $context);
  220. }
  221. }
  222. return $data;
  223. }
  224. /**
  225. * 解码随机参数
  226. *
  227. * @param $challenge
  228. * @param $string
  229. * @return int
  230. */
  231. private function decode_response($challenge, $string) {
  232. if (strlen($string) > 100) {
  233. return 0;
  234. }
  235. $key = array();
  236. $chongfu = array();
  237. $shuzi = array("0" => 1, "1" => 2, "2" => 5, "3" => 10, "4" => 50);
  238. $count = 0;
  239. $res = 0;
  240. $array_challenge = str_split($challenge);
  241. $array_value = str_split($string);
  242. for ($i = 0; $i < strlen($challenge); $i++) {
  243. $item = $array_challenge[$i];
  244. if (in_array($item, $chongfu)) {
  245. continue;
  246. } else {
  247. $value = $shuzi[$count % 5];
  248. array_push($chongfu, $item);
  249. $count++;
  250. $key[$item] = $value;
  251. }
  252. }
  253. for ($j = 0; $j < strlen($string); $j++) {
  254. $res += $key[$array_value[$j]];
  255. }
  256. $res = $res - $this->decodeRandBase($challenge);
  257. return $res;
  258. }
  259. /**
  260. * @param $x_str
  261. * @return int
  262. */
  263. private function get_x_pos_from_str($x_str) {
  264. if (strlen($x_str) != 5) {
  265. return 0;
  266. }
  267. $sum_val = 0;
  268. $x_pos_sup = 200;
  269. $sum_val = base_convert($x_str, 16, 10);
  270. $result = $sum_val % $x_pos_sup;
  271. $result = ($result < 40) ? 40 : $result;
  272. return $result;
  273. }
  274. /**
  275. * @param $full_bg_index
  276. * @param $img_grp_index
  277. * @return int
  278. */
  279. private function get_failback_pic_ans($full_bg_index, $img_grp_index) {
  280. $full_bg_name = substr(md5($full_bg_index), 0, 9);
  281. $bg_name = substr(md5($img_grp_index), 10, 9);
  282. $answer_decode = "";
  283. // 通过两个字符串奇数和偶数位拼接产生答案位
  284. for ($i = 0; $i < 9; $i++) {
  285. if ($i % 2 == 0) {
  286. $answer_decode = $answer_decode . $full_bg_name[$i];
  287. } elseif ($i % 2 == 1) {
  288. $answer_decode = $answer_decode . $bg_name[$i];
  289. }
  290. }
  291. $x_decode = substr($answer_decode, 4, 5);
  292. $x_pos = $this->get_x_pos_from_str($x_decode);
  293. return $x_pos;
  294. }
  295. /**
  296. * 输入的两位的随机数字,解码出偏移量
  297. *
  298. * @param $challenge
  299. * @return mixed
  300. */
  301. private function decodeRandBase($challenge) {
  302. $base = substr($challenge, 32, 2);
  303. $tempArray = array();
  304. for ($i = 0; $i < strlen($base); $i++) {
  305. $tempAscii = ord($base[$i]);
  306. $result = ($tempAscii > 57) ? ($tempAscii - 87) : ($tempAscii - 48);
  307. array_push($tempArray, $result);
  308. }
  309. $decodeRes = $tempArray['0'] * 36 + $tempArray['1'];
  310. return $decodeRes;
  311. }
  312. /**
  313. * @param $err
  314. */
  315. private function triggerError($err) {
  316. trigger_error($err);
  317. }
  318. }