Cherry преди 1 година
родител
ревизия
e1e8442a3a
променени са 3 файла, в които са добавени 87 реда и са изтрити 0 реда
  1. 1 0
      application/command.php
  2. 38 0
      application/common/command/NoGzltk.php
  3. 48 0
      application/service/mobile_get/UnicomGuangZhou.php

+ 1 - 0
application/command.php

@@ -30,4 +30,5 @@ return [
     \app\common\command\NoGd::class,
     \app\common\command\OrderSettleCommand::class,
     \app\common\command\NoGzlt::class,
+    \app\common\command\NoGzltk::class,
 ];

+ 38 - 0
application/common/command/NoGzltk.php

@@ -0,0 +1,38 @@
+<?php
+namespace app\common\command;
+
+use app\service\mobile_get\Gdian;
+use app\service\mobile_get\UnicomGuangZhou;
+use think\console\Command;
+use think\console\Input;
+use think\console\Output;
+
+class NoGzltk extends Command{
+    protected function configure()
+    {
+        $this->setName('no:gzltk')->setDescription('广州联通同步号码');
+    }
+
+    protected function execute(Input $input, Output $output)
+    {
+        $name='command:'.$this->getName();
+        try {
+            $has=redis()->get($name);
+            if($has){
+                //return;
+            }
+            redis()->set($name,time());
+            $class=new UnicomGuangZhou();
+            $class->selectNoK();
+        }catch (\Exception $e){
+            $output->error($e->getMessage());
+            user_log('Nogzltk',[
+                'e'=>$e->getMessage(),
+                'file'=>$e->getFile(),
+                'line'=>$e->getLine(),
+                'trace'=>$e->getTrace(),
+            ]);
+        }
+        redis()->del($name);
+    }
+}

+ 48 - 0
application/service/mobile_get/UnicomGuangZhou.php

@@ -23,6 +23,7 @@ class UnicomGuangZhou extends MobileGetService {
         $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);
@@ -56,6 +57,53 @@ class UnicomGuangZhou extends MobileGetService {
             }
         }
     }
+
+    // 联通王卡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'=>'29元/月,30G定向流量,0.1元每分钟,流量超出5元/G,短信0.1/条',
+                        'api_goods_id'=>'982203315714',
+                    ]);
+                }
+                usleep(200000);
+                if( $k%10==0 && $k!=0 ){
+                    redis()->set($redis_key,$area_i+1);
+                    break;
+                }
+            }
+        }
+    }
+
     protected function token(){
         return Cache::remember('gzlt_token',function (){
             /*$res=$this->post(self::$apiList['login'],[