NetworkDetection.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. namespace App\Components;
  3. use Exception;
  4. use Log;
  5. class NetworkDetection {
  6. /**
  7. * 用api.50network.com进行节点阻断检测
  8. *
  9. * @param string $ip 被检测的IP
  10. * @param boolean $type TRUE 为ICMP,FALSE 为tcp
  11. * @param int $port 检测端口,默认为空
  12. *
  13. * @return bool|string
  14. */
  15. public static function networkCheck($ip, $type, $port = null) {
  16. $url = 'https://api.50network.com/china-firewall/check/ip/'.($type? 'icmp/' : ($port? 'tcp_port/' : 'tcp_ack/')).$ip.($port? '/'.$port : '');
  17. $checkName = $type? 'ICMP' : 'TCP';
  18. try{
  19. $ret = json_decode(Curl::send($url), true);
  20. if(!$ret){
  21. Log::warning("【".$checkName."阻断检测】检测".$ip."时,接口返回异常访问链接:".$url);
  22. return false;
  23. }elseif(!$ret['success']){
  24. if($ret['error'] == "execute timeout (3s)"){
  25. sleep(10);
  26. return self::networkCheck($ip, $type, $port);
  27. }else{
  28. Log::warning("【".$checkName."阻断检测】检测".$ip.($port?: '')."时,返回".json_encode($ret));
  29. }
  30. return false;
  31. }
  32. }catch(Exception $e){
  33. Log::warning("【".$checkName."阻断检测】检测".$ip."时,接口请求超时".$e);
  34. return false;
  35. }
  36. if($ret['firewall-enable'] && $ret['firewall-disable']){
  37. return "通讯正常"; // 正常
  38. }elseif($ret['firewall-enable'] && !$ret['firewall-disable']){
  39. return "海外阻断"; // 国外访问异常
  40. }elseif(!$ret['firewall-enable'] && $ret['firewall-disable']){
  41. return "国内阻断"; // 被墙
  42. }else{
  43. return "机器宕机"; // 服务器宕机
  44. }
  45. }
  46. /**
  47. * 用api.iiwl.cc进行Ping检测
  48. *
  49. * @param string $ip 被检测的IP或者域名
  50. *
  51. * @return bool|array
  52. */
  53. public static function ping($ip) {
  54. $url = 'https://api.iiwl.cc/api/ping.php?url='.$ip;
  55. try{
  56. $ret = json_decode(Curl::send($url), true);
  57. if(!$ret){
  58. Log::warning("【PING】检测".$ip."时,接口返回异常访问链接:".$url);
  59. return false;
  60. }elseif($ret['code'] != 1 || $ret['msg'] != "检测成功!"){
  61. Log::warning("【PING】检测".$ip."时,返回".json_encode($ret));
  62. return false;
  63. }
  64. }catch(Exception $e){
  65. Log::warning("【Ping】检测".$ip."时,接口请求超时".$e);
  66. return false;
  67. }
  68. return $ret['data']; // 服务器宕机
  69. }
  70. }