You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
think-library/src/service/Ip/IpIpService.php

89 lines
2.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
// +----------------------------------------------------------------------
// | ThinkLibrary 6.0 for ThinkPhP 6.0
// +----------------------------------------------------------------------
// | 版权所有 2017~2020 [ https://www.dtapp.net ]
// +----------------------------------------------------------------------
// | 官方网站: https://gitee.com/liguangchun/ThinkLibrary
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/liguangchun/ThinkLibrary
// | github 仓库地址 https://github.com/GC0202/ThinkLibrary
// | Packagist 地址 https://packagist.org/packages/liguangchun/think-library
// +----------------------------------------------------------------------
namespace DtApp\ThinkLibrary\service\Ip;
use DtApp\ThinkLibrary\Service;
use Exception;
use think\App;
/**
* IP - IPIP
* Class IpIpService
* @package DtApp\ThinkLibrary\service\ip
*/
class IpIpService extends Service
{
/**
* @var IpIpReader|null
*/
public $reader;
/**
* IpIpService constructor.
* @param App $app
* @throws Exception
*/
public function __construct(App $app)
{
$this->reader = new IpIpReader(__DIR__ . '../bin/ipipfree.ipdb');
parent::__construct($app);
}
/**
* @param $ip
* @param $language
* @return array|NULL
*/
public function getFind(string $ip = '', string $language = 'CN')
{
if (empty($ip)) {
$ip = get_ip();
}
return $this->reader->find($ip, $language);
}
/**
* @param $ip
* @param $language
* @return array|false|null
*/
public function getFindMap(string $ip = '', string $language = 'CN')
{
if (empty($ip)) {
$ip = get_ip();
}
return $this->reader->findMap($ip, $language);
}
/**
* @param $ip
* @param $language
* @return IpIpDistrictInfo|null
*/
public function getFindInfo(string $ip = '', string $language = 'CN')
{
if (empty($ip)) {
$ip = get_ip();
}
$map = $this->getFindMap($ip, $language);
if (NULL === $map) {
return NUll;
}
return new IpIpDistrictInfo($map);
}
}