| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- <?php
- namespace App\Utils;
- /*
- * @author joyphper
- */
-
- class QQWry
- {
- private $fp;
-
- private $firstip;
-
- private $lastip;
-
- private $totalip;
-
-
- public function __construct()
- {
- $filename = BASE_PATH."/storage/qqwry.dat";
-
- $this->fp = 0;
- if (($this->fp = fopen($filename, 'rb')) !== false) {
- $this->firstip = $this->getlong();
- $this->lastip = $this->getlong();
- $this->totalip = ($this->lastip - $this->firstip) / 7;
- register_shutdown_function(array(&$this, '__destruct'));
- }
- }
-
- public function __destruct()
- {
- if ($this->fp) {
- fclose($this->fp);
- }
-
- $this->fp = 0;
- }
-
-
- private function getlong()
- {
- $result = unpack('Vlong', fread($this->fp, 4));
-
- return $result['long'];
- }
-
-
- private function getlong3()
- {
- $result = unpack('Vlong', fread($this->fp, 3).chr(0));
-
- return $result['long'];
- }
-
-
- private function packip($ip)
- {
- return pack('N', intval(ip2long($ip)));
- }
-
-
- private function getstring($data = "")
- {
- $char = fread($this->fp, 1);
-
- while (ord($char) > 0) {
- $data .= $char;
-
- $char = fread($this->fp, 1);
- }
-
- return $data;
- }
-
- private function getarea()
- {
- $byte = fread($this->fp, 1);
-
- switch (ord($byte)) {
-
- case 0:
-
- $area = "";
-
- break;
-
- case 1:
-
- case 2:
-
- fseek($this->fp, $this->getlong3());
-
- $area = $this->getstring();
-
- break;
-
- default:
-
- $area = $this->getstring($byte);
-
- break;
-
- }
-
- return $area;
- }
-
-
- public function getlocation($ip)
- {
- if (!$this->fp) {
- return null;
- }
-
- $location['ip'] = gethostbyname($ip);
-
- $ip = $this->packip($location['ip']);
-
-
-
-
-
- $l = 0;
-
- $u = $this->totalip;
-
- $findip = $this->lastip;
-
- while ($l <= $u) {
- $i = floor(($l + $u) / 2);
-
- fseek($this->fp, $this->firstip + $i * 7);
-
- $beginip = strrev(fread($this->fp, 4));
-
- if ($ip < $beginip) {
- $u = $i - 1;
- } else {
- fseek($this->fp, $this->getlong3());
-
- $endip = strrev(fread($this->fp, 4));
-
- if ($ip > $endip) {
- $l = $i + 1;
- } else {
- $findip = $this->firstip + $i * 7;
-
- break;
- }
- }
- }
-
-
-
- fseek($this->fp, $findip);
-
- $location['beginip'] = long2ip($this->getlong());
-
- $offset = $this->getlong3();
-
- fseek($this->fp, $offset);
-
- $location['endip'] = long2ip($this->getlong());
-
- $byte = fread($this->fp, 1);
-
- switch (ord($byte)) {
-
- case 1:
-
- $countryOffset = $this->getlong3();
-
- fseek($this->fp, $countryOffset);
-
- $byte = fread($this->fp, 1);
-
- switch (ord($byte)) {
-
- case 2:
-
- fseek($this->fp, $this->getlong3());
-
- $location['country'] = $this->getstring();
-
- fseek($this->fp, $countryOffset + 4);
-
- $location['area'] = $this->getarea();
-
- break;
-
- default:
-
- $location['country'] = $this->getstring($byte);
-
- $location['area'] = $this->getarea();
-
- break;
-
- }
-
- break;
-
- case 2:
-
- fseek($this->fp, $this->getlong3());
-
- $location['country'] = $this->getstring();
-
- fseek($this->fp, $offset + 8);
-
- $location['area'] = $this->getarea();
-
- break;
-
- default:
-
- $location['country'] = $this->getstring($byte);
-
- $location['area'] = $this->getarea();
-
- break;
-
- }
-
- if ($location['country'] == " CZ88.NET") {
- $location['country'] = "未知";
- }
-
- if ($location['area'] == " CZ88.NET") {
- $location['area'] = "";
- }
-
- return $location;
- }
- }
|