2024-02-09 12:15:09 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace app\controllers;
|
|
|
|
|
|
|
|
use app\models\User;
|
|
|
|
use app\models\UserSearch;
|
|
|
|
use Yii;
|
2024-02-09 12:47:48 +08:00
|
|
|
use yii\base\Exception;
|
2024-02-09 12:15:09 +08:00
|
|
|
use yii\web\Controller;
|
|
|
|
use yii\web\NotFoundHttpException;
|
|
|
|
use yii\filters\VerbFilter;
|
2024-02-09 12:47:48 +08:00
|
|
|
use yii\web\Response;
|
2024-02-09 12:15:09 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* UserController implements the CRUD actions for User model.
|
|
|
|
*/
|
|
|
|
class UserController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function behaviors()
|
|
|
|
{
|
|
|
|
return array_merge(
|
|
|
|
parent::behaviors(),
|
|
|
|
[
|
|
|
|
'verbs' => [
|
|
|
|
'class' => VerbFilter::className(),
|
|
|
|
'actions' => [
|
|
|
|
'delete' => ['POST'],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lists all User models.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function actionIndex()
|
|
|
|
{
|
|
|
|
$searchModel = new UserSearch();
|
|
|
|
$dataProvider = $searchModel->search($this->request->queryParams);
|
|
|
|
|
|
|
|
return $this->render('index', [
|
|
|
|
'searchModel' => $searchModel,
|
|
|
|
'dataProvider' => $dataProvider,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays a single User model.
|
|
|
|
* @param int $id ID
|
|
|
|
* @return string
|
|
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
|
|
*/
|
|
|
|
public function actionView($id)
|
|
|
|
{
|
|
|
|
return $this->render('view', [
|
|
|
|
'model' => $this->findModel($id),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new User model.
|
|
|
|
* If creation is successful, the browser will be redirected to the 'view' page.
|
2024-02-16 13:59:54 +08:00
|
|
|
* @return string|Response
|
2024-02-09 12:15:09 +08:00
|
|
|
*/
|
|
|
|
public function actionCreate()
|
|
|
|
{
|
|
|
|
$model = new User();
|
|
|
|
|
|
|
|
if ($this->request->isPost) {
|
|
|
|
if ($model->load($this->request->post()) && $model->save()) {
|
|
|
|
return $this->redirect(['view', 'id' => $model->id]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$model->loadDefaultValues();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->render('create', [
|
|
|
|
'model' => $model,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates an existing User model.
|
|
|
|
* If update is successful, the browser will be redirected to the 'view' page.
|
|
|
|
* @param int $id ID
|
2024-02-16 13:59:54 +08:00
|
|
|
* @return string|Response
|
2024-02-09 12:15:09 +08:00
|
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
|
|
*/
|
|
|
|
public function actionUpdate($id)
|
|
|
|
{
|
|
|
|
$model = $this->findModel($id);
|
|
|
|
|
|
|
|
if ($this->request->isPost && $model->load($this->request->post()) && $model->save()) {
|
|
|
|
return $this->redirect(['view', 'id' => $model->id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->render('update', [
|
|
|
|
'model' => $model,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes an existing User model.
|
|
|
|
* If deletion is successful, the browser will be redirected to the 'index' page.
|
|
|
|
* @param int $id ID
|
2024-02-16 13:59:54 +08:00
|
|
|
* @return Response
|
2024-02-09 12:15:09 +08:00
|
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
|
|
*/
|
|
|
|
public function actionDelete($id)
|
|
|
|
{
|
|
|
|
$this->findModel($id)->delete();
|
|
|
|
|
|
|
|
return $this->redirect(['index']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds the User model based on its primary key value.
|
|
|
|
* If the model is not found, a 404 HTTP exception will be thrown.
|
|
|
|
* @param int $id ID
|
|
|
|
* @return User the loaded model
|
|
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
|
|
*/
|
|
|
|
protected function findModel($id)
|
|
|
|
{
|
|
|
|
if (($model = User::findOne(['id' => $id])) !== null) {
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new NotFoundHttpException('The requested page does not exist.');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays the login page.
|
2024-02-09 12:47:48 +08:00
|
|
|
* visit via https://devs.chenx221.cyou:8081/index.php?r=user%2Flogin
|
|
|
|
*
|
2024-02-16 13:59:54 +08:00
|
|
|
* @return string|Response
|
2024-02-09 12:15:09 +08:00
|
|
|
*/
|
|
|
|
public function actionLogin()
|
|
|
|
{
|
|
|
|
if (!Yii::$app->user->isGuest) {
|
|
|
|
return $this->goHome();
|
|
|
|
}
|
|
|
|
|
2024-02-09 12:47:48 +08:00
|
|
|
$model = new User(['scenario' => 'login']);
|
2024-02-09 12:15:09 +08:00
|
|
|
|
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
|
|
|
|
if ($model->login()) {
|
|
|
|
return $this->goBack();
|
|
|
|
} else {
|
|
|
|
Yii::$app->session->setFlash('error', 'Invalid username or password.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $this->render('login', [
|
|
|
|
'model' => $model,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Logs out the current user.
|
2024-02-16 13:59:54 +08:00
|
|
|
* @return Response
|
2024-02-09 12:15:09 +08:00
|
|
|
*/
|
|
|
|
public function actionLogout()
|
|
|
|
{
|
|
|
|
Yii::$app->user->logout();
|
|
|
|
|
|
|
|
return $this->goHome();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays the registration page.
|
2024-02-09 12:47:48 +08:00
|
|
|
* visit via https://devs.chenx221.cyou:8081/index.php?r=user%2Fregister
|
|
|
|
* @return string|Response
|
|
|
|
* @throws Exception
|
2024-02-09 12:15:09 +08:00
|
|
|
*/
|
|
|
|
public function actionRegister()
|
|
|
|
{
|
2024-02-09 12:47:48 +08:00
|
|
|
$model = new User(['scenario' => 'register']);
|
2024-02-09 12:15:09 +08:00
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
|
2024-02-10 12:02:29 +08:00
|
|
|
$raw_password = $model->password;
|
|
|
|
$model->password = Yii::$app->security->generatePasswordHash($raw_password);
|
2024-02-09 12:15:09 +08:00
|
|
|
$model->auth_key = Yii::$app->security->generateRandomString();
|
2024-02-10 12:02:29 +08:00
|
|
|
if ($model->save(false)) { // save without validation
|
2024-02-09 12:15:09 +08:00
|
|
|
Yii::$app->session->setFlash('success', 'Registration successful. You can now log in.');
|
|
|
|
return $this->redirect(['login']);
|
|
|
|
} else {
|
2024-02-10 12:02:29 +08:00
|
|
|
$model->password = $raw_password;
|
2024-02-09 12:15:09 +08:00
|
|
|
Yii::$app->session->setFlash('error', 'Failed to register user.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->render('register', [
|
|
|
|
'model' => $model,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|