123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <?php
- namespace app\service\mobile_get;
- use fast\Http;
- use think\Cache;
- use think\Env;
- class UnicomGuangZhou extends MobileGetService {
- public static $apiList=[
- 'api'=>'https://www.gzuni.com/apps/kingcard/api/num/select/v1/',
- 'login'=>'https://www.gzuni.com/apps/kingcard/api/v1/login/',
- 'areas'=>'https://www.gzuni.com/apps/kingcard/api/postInfo/qry/',
- ];
- use UnicomHelper;
- public $account=[
- 'source'=>'QiangWei',
- 'password'=>'7yevxl00',
- ];
- protected $areas=[];
- public function __construct()
- {
- $this->account['source']=Env::get('api_config.guangzhou_liantong_source','QiangWei');
- $this->account['password']=Env::get('api_config.guangzhou_liantong_password','7yevxl00');
- }
- // 广州
- public function selectNo(){
- // $area=json_decode(file_get_contents(__DIR__.'/unicom_henan.json'),true);
- $area=json_decode(file_get_contents(__DIR__.'/unicom_guangzhou.json'),true);
- foreach ($area as $item){
- if($item['PROVINCE_NAME']=='广东'){
- $body=$this->body([
- 'provinceCode'=>"51",
- 'cityCode'=>(string)$item['CITY_CODE'],
- 'qryType'=>'02',
- 'searchCategory'=>'3',
- 'goodsId'=>'512209297661',
- 'searchType'=>'',
- 'searchValue'=>'',
- 'amounts'=>'100',
- ]);
- // $list=$this->post(self::$apiList['api'],$body);
- $list=jsonPost(self::$apiList['api'],json_encode($body,320));
- $list = json_decode($list, true);
- $arr=$list['body']['numArray']??[];
- $make=array_chunk($arr,12);
- foreach ($make as $chunkArr){
- $this->addMobile([
- 'no'=>$chunkArr[0],
- 'city'=>$item['CITY_NAME'],
- 'brand'=>'中国联通',
- 'proxy_id'=>'90',
- 'describe'=>'29元/月,30G定向流量,0.1元每分钟,流量超出5元/G,短信0.1/条',
- 'api_goods_id'=>'512209297661',
- ]);
- }
- }
- }
- }
- // 联通王卡K计划
- public function selectNoK(){
- $redis_key = 'gzltk_area';
- $area_i=redis()->get($redis_key);
- if(!$area_i || $area_i==34){
- $area_i = 1;
- }
- // var_dump($area_i);
- $area=json_decode(file_get_contents(__DIR__.'/unicom_henan.json'),true);
- foreach ($area as $k=>$item){
- // 每次导入10个地区数据
- if( $k > (10*($area_i-1)) && (10*$area_i) < $k ){
- $body=$this->body([
- 'provinceCode'=>(string)$item['PROVINCE_CODE'],
- 'cityCode'=>(string)$item['CITY_CODE'],
- 'qryType'=>'02',
- 'searchCategory'=>'3',
- 'goodsId'=>'982203315714',
- 'searchType'=>'',
- 'searchValue'=>'',
- 'amounts'=>'100',
- ]);
- $list=jsonPost(self::$apiList['api'],json_encode($body,320));
- $list = json_decode($list, true);
- $arr=$list['body']['numArray']??[];
- $make=array_chunk($arr,12);
- foreach ($make as $chunkArr){
- $this->addMobile([
- 'no'=>$chunkArr[0],
- 'city'=>$item['CITY_NAME'],
- 'brand'=>'中国联通',
- 'proxy_id'=>'90',
- 'describe'=>'腾讯天王卡59元套餐包含10GB国内通用流量+300分钟语音,近200APP专属流量。套餐外资费:月租宝5元1GB(全国流量),0.1元/分钟全国语音,0.1元/条短信,含来电显示。',
- 'api_goods_id'=>'982203315714',
- ]);
- }
- usleep(200000);
- if( $k%10==0 && $k!=0 ){
- redis()->set($redis_key,$area_i+1);
- break;
- }
- }
- }
- }
- // 删除Api同步的手机号
- public function NoApiDel(){
- $this->delMobile(['512209297661','982203315714']);
- }
- protected function token(){
- return Cache::remember('gzlt_token',function (){
- /*$res=$this->post(self::$apiList['login'],[
- 'source'=>$this->account['source'],
- 'password'=>$this->account['password'],
- ]);*/
- /*var_dump(self::$apiList['login'],json_encode([
- 'source'=>$this->account['source'],
- 'password'=>$this->account['password'],
- ], 320));*/
- $res=jsonPost(self::$apiList['login'],json_encode([
- 'source'=>$this->account['source'],
- 'password'=>$this->account['password'],
- ], 320));
- $res = json_decode($res, true);
- //var_dump($res);exit();
- return $res['data'];
- },14*60);
- }
- public function noAreas(){
- $provinces=json_decode(file_get_contents(__DIR__.'/unicom_province.json'),true);
- foreach ($provinces as $province){
- $body=$this->body([
- 'provinceCode'=>(string)$province['code']
- ]);
- $data=$this->post(self::$apiList['areas'],$body);
- dd($data);
- }
- }
- protected function body($data=[]){
- return array_merge([
- 'source'=>$this->account['source'],
- 'token'=>$this->token(),
- ],$data);
- }
- }
|