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 = 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(); // 菜单 $menu = require Yii::getAlias('@frontendApi/config/menu.php'); // 获取全部文章分类 $allArticleCategory = ArticleCategory::getAllCategory(); foreach($allArticleCategory as $category){ $menu['article']['child'][] = ['name'=>$category['CATE_NAME'], 'class'=>'', 'icon'=>'', 'controller'=>'article', 'action'=>'list', 'routePath'=>'article/list/'.$category['ID'], 'show'=>1,]; } $menu = $this->_childMenu($menu); // 时间差 $daysDiff = Yii::$app->params['daysDiff']; // 钱包 $shopWalletType = Yii::$app->params['shopWalletType']; return [ 'decLevels' => $decLevels, 'empLevels' => $empLevels, 'menu' => $menu, 'daysDiff' => $daysDiff, '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 .= '
'; $result .= $parsedown->text($docContent); $result .= '
'; print_r($result); exit(); } /** * 站点设置 * @return mixed * @throws \yii\web\HttpException */ public function actionConfig() { $systemConfig = Cache::getSystemConfig(); if ($systemConfig['siteClose']['VALUE']) { $siteCloseInfo = $systemConfig['siteCloseInfo']['VALUE']; return static::notice(['siteClose' => true, 'siteCloseInfo' => $siteCloseInfo]); } $siteTitle = $systemConfig['siteTitle']['VALUE']; return static::notice(['siteClose' => false, 'siteTitle' => $siteTitle]); } /** * 请求基础信息 * @return array */ public function actionBaBaseInfo(){ // 菜单 $menu = require Yii::getAlias('@frontendApi/config/menuBA.php'); // 获取全部文章分类 $allArticleCategory = ArticleCategory::getAllCategory(); foreach($allArticleCategory as $category){ $menu['article']['child'][] = ['name'=>$category['CATE_NAME'], 'class'=>'', 'icon'=>'', 'controller'=>'article', 'action'=>'list', 'routePath'=>'article/list/'.$category['ID'], 'show'=>1,]; } $menu = $this->_childBaMenu($menu); // 时间差 $daysDiff = Yii::$app->params['daysDiff']; // 钱包 $shopWalletType = Yii::$app->params['shopWalletType']; return [ 'decLevels' => '', 'empLevels' => '', 'menu' => $menu, 'daysDiff' => $daysDiff, 'shopWalletType' => $shopWalletType, 'whetherBA' => true, ]; } private function _childBaMenu($parentArray) { $menuResult = []; foreach ($parentArray as $key => $parentMenu) { if ($key !== 'article'){ // 菜单是否显示 if (isset($parentMenu['show']) && !$parentMenu['show']) { 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->_childBaMenu($parentMenu['child']); } } $menuResult[] = $parentMenu; } return $menuResult; } }