From 7f168cca09b9e45c2a96e5411ad5deae7de23fd4 Mon Sep 17 00:00:00 2001 From: zhaoxiang Date: Tue, 16 Jul 2019 17:02:33 +0800 Subject: [PATCH] =?UTF-8?q?modified=20=E5=A2=9E=E5=8A=A0=E7=BA=BF=E4=B8=8A?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/controller/Phone.php | 101 ++++++++++++++++++++++++++- application/model/LibPhone.php | 15 ++++ 2 files changed, 113 insertions(+), 3 deletions(-) create mode 100644 application/model/LibPhone.php diff --git a/application/api/controller/Phone.php b/application/api/controller/Phone.php index 8b210cc..2962308 100644 --- a/application/api/controller/Phone.php +++ b/application/api/controller/Phone.php @@ -8,10 +8,105 @@ namespace app\api\controller; -use think\Controller; +use app\model\LibPhone; +use Curl\Curl; + +class Phone extends Base { -class Phone extends Controller { public function area() { - + $phone = $this->request->param('phone'); + + $return = [ + 'isp' => '无法识别归属地', + 'isp_city' => '无法识别归属地', + 'isp_province' => '无法识别归属地', + 'isMobile' => false + ]; + if ($phone) { + $isMobile = true; + $newPhone = substr(trim($phone), -11); + $newPhoneArr = str_split($newPhone); + if ($newPhoneArr[0] != 1) { + $isMobile = false; + if ($newPhoneArr[0] != 0) { + $newPhone = substr($phone, -12); + } + } + + if ($isMobile) { + $pre = substr($newPhone, 0, 7); + $ispInfo = LibPhone::get(['phone' => $pre]); + } else { + $preThree = substr($newPhone, 0, 3); + if ($preThree <= '030') { + $ispInfo = LibPhone::get(['city_code' => $preThree]); + } else { + $preFour = substr($newPhone, 0, 4); + $ispInfo = LibPhone::get(['city_code' => $preFour]); + } + } + + if ($ispInfo) { + $return = [ + 'isp' => $ispInfo['isp'], + 'isp_city' => $ispInfo['city'], + 'isp_province' => $ispInfo['province'], + 'post_code' => $ispInfo['post_code'], + 'city_code' => $ispInfo['city_code'], + 'area_code' => $ispInfo['area_code'], + 'isMobile' => $isMobile + ]; + } else { + $curl = new Curl(); + $curl->get('http://mobsec-dianhua.baidu.com/dianhua_api/open/location?tel=' . $newPhone); + + if (!$curl->error) { + if ($curl->response->response && $curl->response->response->$newPhone) { + $detail = $curl->response->response->$newPhone; + + $return = [ + 'isp' => $detail->detail->operator, + 'isp_city' => $detail->detail->area[0]->city, + 'isp_province' => $detail->detail->province, + 'isMobile' => $isMobile + ]; + + $hasInfo = LibPhone::get([ + 'province' => $return['isp_province'], + 'city' => $return['isp_city'] + ]); + if ($hasInfo) { + LibPhone::create([ + 'phone' => substr($newPhone, 0, 7), + 'pref' => substr($newPhone, 0, 3), + 'province' => $return['isp_province'], + 'city' => $return['isp_city'], + 'isp' => $return['isp'], + 'post_code' => $hasInfo->post_code, + 'city_code' => $hasInfo->city_code, + 'area_code' => $hasInfo->area_code + ]); + $return['post_code'] = $hasInfo->post_code; + $return['city_code'] = $hasInfo->city_code; + $return['area_code'] = $hasInfo->area_code; + } else { + LibPhone::create([ + 'phone' => substr($newPhone, 0, 7), + 'pref' => substr($newPhone, 0, 3), + 'province' => $return['isp_province'], + 'city' => $return['isp_city'], + 'isp' => $return['isp'], + 'post_code' => '', + 'city_code' => '', + 'area_code' => '' + ]); + } + } + } + } + } + + return $this->buildSuccess($return); } + } diff --git a/application/model/LibPhone.php b/application/model/LibPhone.php new file mode 100644 index 0000000..cde8b0b --- /dev/null +++ b/application/model/LibPhone.php @@ -0,0 +1,15 @@ + + */ + +namespace app\model; + + +use think\Model; + +class LibPhone extends Model { + +}