UnicomGuangZhou.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <?php
  2. namespace app\service\mobile_get;
  3. use fast\Http;
  4. use think\Cache;
  5. use think\Env;
  6. class UnicomGuangZhou extends MobileGetService {
  7. public static $apiList=[
  8. 'api'=>'https://www.gzuni.com/apps/kingcard/api/num/select/v1/',
  9. 'login'=>'https://www.gzuni.com/apps/kingcard/api/v1/login/',
  10. 'areas'=>'https://www.gzuni.com/apps/kingcard/api/postInfo/qry/',
  11. ];
  12. use UnicomHelper;
  13. public $account=[
  14. 'source'=>'QiangWei',
  15. 'password'=>'7yevxl00',
  16. ];
  17. protected $areas=[];
  18. public function __construct()
  19. {
  20. $this->account['source']=Env::get('api_config.guangzhou_liantong_source','QiangWei');
  21. $this->account['password']=Env::get('api_config.guangzhou_liantong_password','7yevxl00');
  22. }
  23. // 广州
  24. public function selectNo(){
  25. // $area=json_decode(file_get_contents(__DIR__.'/unicom_henan.json'),true);
  26. $area=json_decode(file_get_contents(__DIR__.'/unicom_guangzhou.json'),true);
  27. foreach ($area as $item){
  28. if($item['PROVINCE_NAME']=='广东'){
  29. $body=$this->body([
  30. 'provinceCode'=>"51",
  31. 'cityCode'=>(string)$item['CITY_CODE'],
  32. 'qryType'=>'02',
  33. 'searchCategory'=>'3',
  34. 'goodsId'=>'512209297661',
  35. 'searchType'=>'',
  36. 'searchValue'=>'',
  37. 'amounts'=>'100',
  38. ]);
  39. // $list=$this->post(self::$apiList['api'],$body);
  40. $list=jsonPost(self::$apiList['api'],json_encode($body,320));
  41. $list = json_decode($list, true);
  42. $arr=$list['body']['numArray']??[];
  43. $make=array_chunk($arr,12);
  44. foreach ($make as $chunkArr){
  45. $this->addMobile([
  46. 'no'=>$chunkArr[0],
  47. 'city'=>$item['CITY_NAME'],
  48. 'brand'=>'中国联通',
  49. 'proxy_id'=>'90',
  50. 'describe'=>'29元/月,30G定向流量,0.1元每分钟,流量超出5元/G,短信0.1/条',
  51. 'api_goods_id'=>'512209297661',
  52. ]);
  53. }
  54. }
  55. }
  56. }
  57. // 联通王卡K计划
  58. public function selectNoK(){
  59. $redis_key = 'gzltk_area';
  60. $area_i=redis()->get($redis_key);
  61. if(!$area_i || $area_i==34){
  62. $area_i = 1;
  63. }
  64. // var_dump($area_i);
  65. $area=json_decode(file_get_contents(__DIR__.'/unicom_henan.json'),true);
  66. foreach ($area as $k=>$item){
  67. // 每次导入10个地区数据
  68. if( $k > (10*($area_i-1)) && (10*$area_i) < $k ){
  69. $body=$this->body([
  70. 'provinceCode'=>(string)$item['PROVINCE_CODE'],
  71. 'cityCode'=>(string)$item['CITY_CODE'],
  72. 'qryType'=>'02',
  73. 'searchCategory'=>'3',
  74. 'goodsId'=>'982203315714',
  75. 'searchType'=>'',
  76. 'searchValue'=>'',
  77. 'amounts'=>'100',
  78. ]);
  79. $list=jsonPost(self::$apiList['api'],json_encode($body,320));
  80. $list = json_decode($list, true);
  81. $arr=$list['body']['numArray']??[];
  82. $make=array_chunk($arr,12);
  83. foreach ($make as $chunkArr){
  84. $this->addMobile([
  85. 'no'=>$chunkArr[0],
  86. 'city'=>$item['CITY_NAME'],
  87. 'brand'=>'中国联通',
  88. 'proxy_id'=>'90',
  89. 'describe'=>'腾讯天王卡59元套餐包含10GB国内通用流量+300分钟语音,近200APP专属流量。套餐外资费:月租宝5元1GB(全国流量),0.1元/分钟全国语音,0.1元/条短信,含来电显示。',
  90. 'api_goods_id'=>'982203315714',
  91. ]);
  92. }
  93. usleep(200000);
  94. if( $k%10==0 && $k!=0 ){
  95. redis()->set($redis_key,$area_i+1);
  96. break;
  97. }
  98. }
  99. }
  100. }
  101. // 删除Api同步的手机号
  102. public function NoApiDel(){
  103. $this->delMobile(['512209297661','982203315714']);
  104. }
  105. protected function token(){
  106. return Cache::remember('gzlt_token',function (){
  107. /*$res=$this->post(self::$apiList['login'],[
  108. 'source'=>$this->account['source'],
  109. 'password'=>$this->account['password'],
  110. ]);*/
  111. /*var_dump(self::$apiList['login'],json_encode([
  112. 'source'=>$this->account['source'],
  113. 'password'=>$this->account['password'],
  114. ], 320));*/
  115. $res=jsonPost(self::$apiList['login'],json_encode([
  116. 'source'=>$this->account['source'],
  117. 'password'=>$this->account['password'],
  118. ], 320));
  119. $res = json_decode($res, true);
  120. //var_dump($res);exit();
  121. return $res['data'];
  122. },14*60);
  123. }
  124. public function noAreas(){
  125. $provinces=json_decode(file_get_contents(__DIR__.'/unicom_province.json'),true);
  126. foreach ($provinces as $province){
  127. $body=$this->body([
  128. 'provinceCode'=>(string)$province['code']
  129. ]);
  130. $data=$this->post(self::$apiList['areas'],$body);
  131. dd($data);
  132. }
  133. }
  134. protected function body($data=[]){
  135. return array_merge([
  136. 'source'=>$this->account['source'],
  137. 'token'=>$this->token(),
  138. ],$data);
  139. }
  140. }