yii2-netdisk/controllers/SiteController.php

95 lines
1.6 KiB
PHP
Raw Normal View History

2013-05-24 22:14:49 +08:00
<?php
namespace app\controllers;
use Yii;
use yii\web\AccessControl;
2013-05-24 22:14:49 +08:00
use yii\web\Controller;
use yii\web\VerbFilter;
2013-05-24 22:14:49 +08:00
use app\models\LoginForm;
use app\models\ContactForm;
class SiteController extends Controller
{
public function behaviors()
{
2013-10-18 17:48:27 +08:00
return [
'access' => [
'class' => AccessControl::className(),
'only' => ['logout'],
2013-10-18 17:48:27 +08:00
'rules' => [
[
'actions' => ['logout'],
'allow' => true,
2013-10-18 17:48:27 +08:00
'roles' => ['@'],
],
],
],
'verbs' => [
'class' => VerbFilter::className(),
2013-10-18 17:48:27 +08:00
'actions' => [
'logout' => ['post'],
],
],
];
}
2013-05-24 22:14:49 +08:00
public function actions()
{
2013-10-18 17:48:27 +08:00
return [
'error' => [
2013-08-10 19:33:24 +08:00
'class' => 'yii\web\ErrorAction',
2013-10-18 17:48:27 +08:00
],
'captcha' => [
2013-08-03 19:20:39 +08:00
'class' => 'yii\captcha\CaptchaAction',
2013-08-10 19:33:24 +08:00
'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
2013-10-18 17:48:27 +08:00
],
];
2013-05-24 22:14:49 +08:00
}
public function actionIndex()
2013-07-08 18:47:10 +08:00
{
return $this->render('index');
2013-05-24 22:14:49 +08:00
}
public function actionLogin()
{
if (!\Yii::$app->user->isGuest) {
$this->goHome();
}
2013-05-24 22:14:49 +08:00
$model = new LoginForm();
if ($model->load($_POST) && $model->login()) {
return $this->goBack();
2013-05-24 22:14:49 +08:00
} else {
2013-10-18 17:48:27 +08:00
return $this->render('login', [
2013-05-24 22:14:49 +08:00
'model' => $model,
2013-10-18 17:48:27 +08:00
]);
2013-05-24 22:14:49 +08:00
}
}
public function actionLogout()
{
Yii::$app->user->logout();
2013-08-13 01:19:37 +08:00
return $this->goHome();
2013-05-24 22:14:49 +08:00
}
public function actionContact()
{
$model = new ContactForm;
if ($model->load($_POST) && $model->contact(Yii::$app->params['adminEmail'])) {
2013-05-24 22:14:49 +08:00
Yii::$app->session->setFlash('contactFormSubmitted');
return $this->refresh();
2013-05-24 22:14:49 +08:00
} else {
2013-10-18 17:48:27 +08:00
return $this->render('contact', [
2013-05-24 22:14:49 +08:00
'model' => $model,
2013-10-18 17:48:27 +08:00
]);
2013-05-24 22:14:49 +08:00
}
}
public function actionAbout()
{
return $this->render('about');
2013-05-24 22:14:49 +08:00
}
}