| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410 | <?phpnamespace app\controllers;use Yii;use yii\filters\AccessControl;use yii\web\Controller;use yii\web\Response;use yii\filters\VerbFilter;use app\lib\GA;use app\models\ContentPage;use app\models\Trafficsource;use yii\data\Pagination;class IndexController extends \app\controllers\HomeController{       //首页数据    public function  actionIndex(){      $ga=new GA();      $request = Yii::$app->request;      $store=$request->get('store');      $store=3;      $start_day=$request->get('start', date('Y-m-d',time()-3600*24*8));      $end_day = $request->get('end', date('Y-m-d',time()-3600*24));      $res=[];      try{        $config=[          'dp'=>$store,          'metricArr'=>[            '销量'=>"ga:itemQuantity",            '订单量'=>"ga:transactions",            '订单金额'=>"ga:transactionRevenue",          ],          'dateRange'=>['start_at'=>$start_day,'end_at'=>$end_day]        ];                $storeData=$ga->getData($config);        $this->json(1,$storeData);        $res['storeData']=$storeData;              // $storeSellData=$ga->storeSellData($store,$start_day,$end_day,'week');        // $trafficsource=$ga->trafficsource_overview($store,$start_day,$end_day);        // $googleAds=$ga->googleAds($store,$start_day,$end_day);                                      // $product=$ga->product($store,$start_day,$end_day);        // $visitors=$ga->visitors_type($store,$start_day,$end_day);      }catch(\Exception $e){         $this->json(0,[],$e->getMessage());      }      $this->json(1,$res);    }    public function actionContentpage(){      $request = Yii::$app->request;      \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;      $store = $request->get('store', "supernova");        $limit = $request->get('limit', "10");        $page = $request->get('page', "1");             $page=$page-1>=0?$page-1:0;      $where=[];      if(!$store){        return ['status'=>false,'msg'=>"参数异常"];      }      $where['store']=$store;      $query=ContentPage::find()->where(["store"=>$where]);      $count = $query->count();      $pagination = new Pagination(['totalCount' => $count,'pageSize'=>$limit,'page'=>$page]);      $items = $query->offset($pagination->offset)          ->limit($pagination->limit)          ->orderBy([            'pageviews'=>SORT_DESC,            'id'=>SORT_DESC          ])          ->all();        foreach($items as $k=>$v){          $items[$k]['created_at']=date('Y-m-d H:i:s',$v['created_at']);        }      $data=[        'total'=>$count,        'items'=>$items,      ];            return [        'code' => 200,        'data'=>$data,        'status'=>true          ];    }    public function actionSource(){      $request = Yii::$app->request;      \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;      $store = $request->get('store', "supernova");        $limit = $request->get('limit', "10");        $page = $request->get('page', "1");             $page=$page-1>=0?$page-1:0;      $where=[];      if(!$store){        return ['status'=>false,'msg'=>"参数异常"];      }      $where['store']=$store;      $query=Trafficsource::find()->where(["store"=>$where]);      $count = $query->count();      $pagination = new Pagination(['totalCount' => $count,'pageSize'=>$limit,'page'=>$page]);      $items = $query->offset($pagination->offset)          ->limit($pagination->limit)          ->orderBy([            'date'=>SORT_DESC,            'users'=>SORT_DESC          ])          ->all();        foreach($items as $k=>$v){          $items[$k]['created_at']=date('Y-m-d H:i:s',$v['created_at']);        }      $data=[        'total'=>$count,        'items'=>$items,      ];            return [        'code' => 200,        'data'=>$data,        'status'=>true          ];    }    public function actionSynsdata(){      $ga=new GA();      $store="supernova";      $request = Yii::$app->request;      $start_day = $request->get('start', date('Y-m-d'),time()-24*3600);      $end_day=$start_day;      $query=ContentPage::find()->where(["store"=>$store,'date'=>$start_day]);      $count = $query->count();      if($count>0){        echo $start_day.$store." ContentPage"."已经执行过,请不要重复执行";      }else{        $contentpages=$ga->contentpages($store,$start_day,$end_day);        $this->addContentpages($contentpages,$store);      }      $query=Trafficsource::find()->where(["store"=>$store,'date'=>$start_day]);      $count = $query->count();      if($count>0){        echo $start_day.$store." Trafficsource"."已经执行过,请不要重复执行";      }else{        $contentpages=$ga->trafficsource($store,$start_day,$end_day);        $this->addSource($contentpages,$store);      }      echo $start_day." 任务完成"."<br/>";      exit;    }    public function addSource($data,$store){      $i=1;      $limit=200;      $modelKey=[        'date',        'store',        'source',        'channelGrouping',        'landingPagePath',        'keyword',        'socialNetwork',        'users',        'newUsers',        'sessions',        'bounceRate',        'pageviewsPerSession',        'avgSessionDuration',        'transactionsPerVisit',        'transactions',        'transactionRevenue',        'created_at',      ];      if(!empty($data)){        $list=[];        foreach($data as $k=>$v){          $item=[            date('Y-m-d',strtotime($v['date'])),            $store,            $v['source'],            $v['channelGrouping'],            $v['landingPagePath']!=="(not set)"?$v["landingPagePath"]:"",            $v['keyword']!=="(not set)"?$v['keyword']:"",            $v['socialNetwork']!=="(not set)"?$v['socialNetwork']:"",            $v['users'],            $v['newUsers'],            $v['sessions'],            $v['bounceRate'],            $v['pageviewsPerSession'],            $v['avgSessionDuration'],            $v['transactionsPerVisit'],            $v['transactions'],            $v['transactionRevenue'],            time(),          ];          $list[]=$item;          if($i%$limit==0||$i==count($data)){            \Yii::$app->db->createCommand()->batchInsert(Trafficsource::tableName(), $modelKey, $list)->execute();            $list=[];            echo  "addSource 任务完成".$i."个"."<br/>";          }          $i++;        }        echo "addSource 任务全部完成"."<br/>";      }    }        public function actionStatistic(){      $ga=new GA();      $request = Yii::$app->request;      $store=$request->get('store');      $start_day=$request->get('start', date('Y-m-d',time()-3600*24*8));      $end_day = $request->get('end', date('Y-m-d',time()-3600*24));      if(!$store){        $this->json(0,[],"缺少参数");      }       \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;           //销量      try{        $sells=$ga->visitors_geo($store,$start_day,$end_day);        $product=$ga->product($store,$start_day,$end_day);        $visitors=$ga->visitors_type($store,$start_day,$end_day);      }catch(\Exception $e){         $this->json(0,[],$e->getMessage());      }      $data=[        'sell'=>$sells,        'product'=>$product,        'visitor'=>$visitors,      ];      $this->json(1,$data);    }    public function actionProductinfo(){      $ga=new GA();      $request = Yii::$app->request;      $store=$request->get('store');      $productName=$request->get('productName');      $productName=urldecode($productName);      if(!$productName||!$store){         $this->json(0,[],'参数错误');      }      $start_day=$request->get('start', date('Y-m-d',time()-3600*24*8));      $end_day = $request->get('end', date('Y-m-d',time()-3600*24));      $productInfo=$ga->productInfo($productName,$store,$start_day,$end_day);      $this->json(1,$productInfo);          }            public function addContentpages($contentpages,$store){        $i=1;        $limit=20;        $modelKey=[          'pagePath',          'store',          'date',          'pageviews',          'uniquePageviews',          'avgTimeOnPage',          'entrances',          'bounceRate',          'exitRate',          'pageValue',          'created_at',        ];        if(!empty($contentpages)){          $list=[];          foreach($contentpages as $k=>$v){            $item=[              $v['pagePath'],              $store,              date('Y-m-d',strtotime($v['date'])),              $v['pageviews'],              $v['uniquePageviews'],              $v['avgTimeOnPage'],              $v['entrances'],              $v['bounceRate'],              $v['exitRate'],              $v['pageValue'],              time(),            ];            $list[]=$item;            if($i%$limit==0||$i==count($contentpages)){              \Yii::$app->db->createCommand()->batchInsert(ContentPage::tableName(), $modelKey, $list)->execute();              $list=[];              echo "addContentpages 任务完成".$i."个"."<br/>";            }            $i++;          }          echo "addContentpages 任务全部完成"."<br/>";        }    }    public function actionRegionProduct(){      $ga=new GA();      $request = Yii::$app->request;      $store=$request->get('store');      $region=$request->get('region');      if(!$region||!$store){         $this->json(0,[],'参数错误');      }      $start_day=$request->get('start', date('Y-m-d',time()-3600*24*8));      $end_day = $request->get('end', date('Y-m-d',time()-3600*24));      try{        $productInfo=$ga->regionProduct($region,$store,$start_day,$end_day);      }catch(\Exception $e){         $this->json(0,[],$e->getMessage());      }      $this->json(1,$productInfo);       }    public function actionGoals(){      $ga=new GA();      $request = Yii::$app->request;      $store=$request->get('store');      if(!$store){         $this->json(0,[],'参数错误');      }      $metricArr=[        'pageviews'=>"ga:pageviews",        'sessions'=>"ga:sessions",        'users'=>"ga:users",        'newUsers'=>"ga:newUsers",        'bounceRate'=>"ga:bounceRate",        // 'goal3Completions'=>"ga:goal3Completions",        // 'goal3ConversionRate'=>"ga:goal3ConversionRate",        // 'goal7Completions'=>"ga:goal7Completions",        // 'goal7ConversionRate'=>"ga:goal7ConversionRate",        'transactionRevenue'=>"ga:transactionRevenue",        'revenuePerTransaction'=>"ga:revenuePerTransaction",    ];      switch($store){        case "1"://supernovahair          $metricArr['cartCompletions']="ga:goal8Completions";          $metricArr['cartConversionRate']="ga:goal8ConversionRate";          $metricArr['orderCompletions']="ga:goal7Completions";          $metricArr['orderConversionRate']="ga:goal7ConversionRate";        break;        case "2"://asteriahair          $metricArr['cartCompletions']="ga:goal12Completions";          $metricArr['cartConversionRate']="ga:goal12ConversionRate";          $metricArr['orderCompletions']="ga:goal14Completions";          $metricArr['orderConversionRate']="ga:goal14ConversionRate";        break;        case "3"://alipearlhair          $metricArr['cartCompletions']="ga:goal3Completions";          $metricArr['cartConversionRate']="ga:goal3ConversionRate";          $metricArr['orderCompletions']="ga:goal7Completions";          $metricArr['orderConversionRate']="ga:goal7ConversionRate";        break;        case "4"://westkiss          $metricArr['cartCompletions']="ga:goal3Completions";          $metricArr['cartConversionRate']="ga:goal3ConversionRate";          $metricArr['orderCompletions']="ga:goal2Completions";          $metricArr['orderConversionRate']="ga:goal2ConversionRate";        break;        case "5"://yolissahair          $metricArr['cartCompletions']="ga:goal2Completions";          $metricArr['cartConversionRate']="ga:goal2ConversionRate";          $metricArr['orderCompletions']="ga:goal3Completions";          $metricArr['orderConversionRate']="ga:goal3ConversionRate";        break;        case "6"://wiggins          $metricArr['cartCompletions']="ga:goal1Completions";          $metricArr['cartConversionRate']="ga:goal1ConversionRate";          $metricArr['orderCompletions']="ga:goal3Completions";          $metricArr['orderConversionRate']="ga:goal3ConversionRate";        break;    }                $start_day=$request->get('start', date('Y-m-d',time()-3600*24*8));      $end_day = $request->get('end', date('Y-m-d',time()-3600*24));      $chunks=array_chunk($metricArr,6,1);            $data=[];      foreach($chunks as $arr){        $goals=$ga->goals($store,$arr,$start_day,$end_day);        $data= empty($data)?$goals[0]:array_merge_recursive($data,$goals[0]);      }      $this->json(1,$data);          }  }    
 |