[ 'class' => AccessControl::className(), 'rules' => [ [ 'actions' => [ 'login', 'error', ], 'allow' => true, ], [ 'actions' => [ 'logout', 'index', 'analytic', ], 'allow' => true, 'roles' => [ '@' ], ], ], ], 'verbs' => [ 'class' => VerbFilter::className(), 'actions' => [ 'logout' => [ 'post' ], ], ], ]; } /** * @inheritdoc */ public function actions() { return [ 'error' => [ 'class' => 'yii\web\ErrorAction', ], ]; } /** * Displays homepage. * * @return string */ public function actionIndex() { $settings = Settings::getInstance(); if (empty($settings->analytics_key)) { return $this->render('index'); } else { $analytics = new Analytics( [ 'viewId' => $settings->analytics_key, ] ); $data = $analytics->generateData(); $browsers = $data[ 'table' ][ 0 ]; arsort($browsers); $cityes = $data[ 'table' ][ 1 ]; arsort($cityes); $countries = $data[ 'table' ][ 2 ]; arsort($countries); return $this->render( 'analytics', [ 'data' => $data, 'browsers' => $browsers, 'cityes' => $cityes, 'countries' => $countries, ] ); } } /** * Login action. * * @return string */ public function actionLogin() { if (!Yii::$app->user->isGuest) { return $this->goHome(); } $model = new LoginForm(); if ($model->load(Yii::$app->request->post()) && $model->login()) { return $this->goBack(); } else { return $this->renderPartial( 'login', [ 'model' => $model, ] ); } } /** * Logout action. * * @return string */ public function actionLogout() { Yii::$app->user->logout(); return $this->goHome(); } public function actionAnalytic() { return $this->render('analytic'); } }