Yii::$app->params['daysDiff']]); } /** * 获取广告 * @return mixed * @throws \yii\web\HttpException */ public function actionAd(){ $lid = Yii::$app->request->get('lid'); $adLocation = AdLocation::findUseSlaves()->where('ID=:ID', [':ID'=>$lid])->asArray()->one(); $query = Ad::findUseSlaves()->select('ID,IMAGE,LID,TITLE,CONTENT,TYPE')->where('LID=:LID AND STATUS=1', [':LID'=>$lid])->orderBy('SORT ASC')->asArray(); $data = []; if($adLocation['TYPE'] == AdLocation::TYPE_SLIDE){ $data = $query->all(); } elseif($adLocation['TYPE'] == AdLocation::TYPE_IMAGE) { $data = $query->one(); } return static::notice($data); } /** * 请求手机基础信息 * @return array */ public function actionMobileBaseInfo(){ // 会员级别 $decLevels = Cache::getDecLevelConfig(); // 聘级 $empLevels = Cache::getEmpLevelConfig(); // 时间差 $daysDiff = Yii::$app->params['daysDiff']; // 钱包 $shopWalletType = Tool::paramConvert(Yii::$app->params['shopWalletType']); return [ 'decLevels' => $decLevels, 'empLevels' => $empLevels, 'daysDiff' => $daysDiff, 'shopWalletType' => $shopWalletType, ]; } public function actions() { $actions = parent::actions(); $actions['captcha'] = [ 'class' => 'common\helpers\CaptchaAction', 'width' => 120, 'height' => 40, 'padding' => 0, 'minLength' => 4, 'maxLength' => 4, 'offset'=>8, //设置字符偏移量 有效果 'testLimit'=>1, ]; return $actions; } /** * 请求页面数据 * @return mixed * @throws \yii\web\HttpException */ public function actionPageData() { $pageId = PageSnowFake::instance()->generateId(); return static::notice(['pageId'=>$pageId]); } /** * 请求基础信息 * @return array */ public function actionBaseInfo(){ // 会员级别 $decLevels = Cache::getDecLevelConfig(); // 聘级 $empLevels = Cache::getEmpLevelConfig(); // Elite级别 $eliteLevels = Cache::getEliteLevelConfig(); // 菜单 $menu = require Yii::getAlias('@frontendApi/config/menu.php'); $menu = $this->_childMenu($menu); // 时间差 $daysDiff = Yii::$app->params['daysDiff']; // 钱包 $shopWalletType = Tool::paramConvert(Yii::$app->params['shopWalletType']); //期数显示 $periodNum = Period::instance()->getNowPeriodNum(); $curYM = Period::find()->select("CALC_YEAR,CALC_MONTH")->where('PERIOD_NUM=:PERIOD_NUM', [':PERIOD_NUM' => $periodNum])->asArray()->one(); $plist = Period::find()->select("PERIOD_NUM")->where('CALC_YEAR=:CALC_YEAR AND CALC_MONTH=:CALC_MONTH', [':CALC_YEAR' => $curYM['CALC_YEAR'],':CALC_MONTH'=>$curYM['CALC_MONTH']])->orderBy('PERIOD_NUM ASC')->asArray()->all(); $wkrd = ''; foreach ($plist as $k=>$v){ if($v['PERIOD_NUM']==$periodNum){ $wkrd =$k+1;break; } } if($wkrd==1){ $wkrd.='st'; }else{ $wkrd.='nd'; } $monthArray = [ 1 => 'Jan', 2 => 'Feb', 3 => 'Mar', 4 => 'Apr', 5 => 'May', 6 => 'Jun', 7 => 'Jul', 8 => 'Aug', 9 => 'Sep', 10 => 'Oct', 11 => 'Nov', 12 => 'Dec', ]; return [ 'decLevels' => $decLevels, 'empLevels' => $empLevels, 'eliteLevels' => $eliteLevels, 'menu' => $menu, 'daysDiff' => $daysDiff, 'periodNum' => $periodNum . ',' . $wkrd . ' PC of ' . $monthArray[$curYM['CALC_MONTH']], 'shopWalletType' => $shopWalletType, 'whetherBA' => false, ]; } private function _childMenu($parentArray){ $menuResult = []; foreach($parentArray as $key => $parentMenu){ if($key !== 'article'){ // 菜单是否显示 if(isset($parentMenu['show']) && !$parentMenu['show']){ continue; } if($this->_teamworkChkMenu($parentMenu)){ continue; } if($this->_decChkMenu($parentMenu)){ continue; } // 查看是否有该控制器的权限 if(isset($parentMenu['controller']) && $parentMenu['controller']){ if(!Yii::$app->user->validateUserController($parentMenu['controller'])) continue; } // 查看是否有权限 if(isset($parentMenu['action']) && $parentMenu['action']){ if(!Yii::$app->user->validateUserAction($parentMenu['controller'], $parentMenu['action'])) continue; } // 子菜单同样设置 if(isset($parentMenu['child']) && !empty($parentMenu['child'])){ $parentMenu['child'] = $this->_childMenu($parentMenu['child']); } } $menuResult[] = $parentMenu; } return $menuResult; } /** * 虚拟会员hz解决暂写死 * @param $menu * @return bool */ private function _teamworkChkMenu($menu){ if (User::getEnCodeInfo(\Yii::$app->user->id)['IS_UNION']==1) { if(in_array($menu['routePath'],['dashboard/index','user','user/index','finance','finance/index','finance/period','finance/flow-bonus','finance/withdraw'])) return true; } return false; } /** * 报单中心显示菜单 * @param $menu * @return bool */ private function _decChkMenu($menu) { if(!isset($menu['allow'])){ return false; } if($menu['allow']=='studio'){ $isStudio = User::getEnCodeInfo(\Yii::$app->user->id)['IS_STUDIO']; if($isStudio==1){ return false; } } if($menu['allow']=='declarer'){ $isDecReg = Cache::getSystemConfig()['isDecReg']['VALUE']; if($isDecReg) return false; $isDec = User::getEnCodeInfo(\Yii::$app->user->id)['IS_DEC']; if($isDec==1){ return false; } } if($menu['allow']=='transferRecordSwitch'){ $transferRecordSwitch = isset(Cache::getSystemConfig()['transferRecordSwitch']) ? Cache::getSystemConfig()['transferRecordSwitch']['VALUE'] : ''; if($transferRecordSwitch) return false; } if($menu['allow']=='transferSwitch'){ $transferSwitch = isset(Cache::getSystemConfig()['transferSwitch']) ? Cache::getSystemConfig()['transferSwitch']['VALUE'] : ''; if($transferSwitch) return false; } if($menu['allow']=='pastBonusSwitch'){ $pastBonusSwitch = isset(Cache::getSystemConfig()['pastBonusSwitch']) ? Cache::getSystemConfig()['pastBonusSwitch']['VALUE'] : ''; if($pastBonusSwitch) return false; } if($menu['allow']=='newBonusSwitch'){ // ??? $newBonusSwitch = isset(Cache::getSystemConfig()['newBonusSwitch']) ? Cache::getSystemConfig()['newBonusSwitch']['VALUE'] : ''; if($newBonusSwitch) return false; } return true; } public function actionDoc(){ $docCssPath = \Yii::$app->basePath.'/libs/doc/markdown.css'; $treeCssPath = \Yii::$app->basePath.'/libs/doc/tree.css'; $treeJsPath = \Yii::$app->basePath.'/libs/doc/tree.js'; $docfilePath = \Yii::$app->basePath.'/libs/doc/shopApiReadMe.md'; $docCssStyle = file_get_contents($docCssPath); $docContent = file_get_contents($docfilePath); $treeCssStyle= file_get_contents($treeCssPath); $treeJsPath= file_get_contents($treeJsPath); $parsedown = Parsedown::instance(); $result = '
'; $result .= ''; $result .= ""; $result .= ""; $result .= ""; $result .= '