2024-03-21 14:01:44 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace app\controllers;
|
|
|
|
|
2024-03-22 14:48:35 +08:00
|
|
|
use app\models\User;
|
|
|
|
use app\models\UserSearch;
|
2024-03-23 14:28:36 +08:00
|
|
|
use app\utils\AdminSword;
|
2024-03-22 14:48:35 +08:00
|
|
|
use Throwable;
|
2024-03-23 13:42:15 +08:00
|
|
|
use Yii;
|
2024-03-25 15:38:47 +08:00
|
|
|
use yii\base\Exception;
|
2024-03-22 14:48:35 +08:00
|
|
|
use yii\db\StaleObjectException;
|
2024-03-21 14:01:44 +08:00
|
|
|
use yii\filters\AccessControl;
|
|
|
|
use yii\filters\VerbFilter;
|
|
|
|
use yii\web\Controller;
|
2024-03-22 14:48:35 +08:00
|
|
|
use yii\web\NotFoundHttpException;
|
|
|
|
use yii\web\Response;
|
2024-03-21 14:01:44 +08:00
|
|
|
|
|
|
|
class AdminController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function behaviors(): array
|
|
|
|
{
|
|
|
|
return array_merge(
|
|
|
|
parent::behaviors(),
|
|
|
|
[
|
|
|
|
'access' => [
|
|
|
|
'class' => AccessControl::class,
|
|
|
|
'rules' => [
|
|
|
|
[
|
|
|
|
'allow' => true,
|
2024-03-22 14:48:35 +08:00
|
|
|
'actions' => ['index', 'system', 'user', 'info', 'user-view', 'user-create', 'user-update', 'user-delete'],
|
2024-03-21 14:01:44 +08:00
|
|
|
'roles' => ['admin'], // only admin can do these
|
|
|
|
]
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'verbs' => [
|
|
|
|
'class' => VerbFilter::class,
|
|
|
|
'actions' => [
|
|
|
|
'index' => ['GET'],
|
|
|
|
'system' => ['GET'],
|
|
|
|
'user' => ['GET'],
|
2024-03-25 15:38:47 +08:00
|
|
|
'user-view' => ['GET','POST'],
|
2024-03-22 14:48:35 +08:00
|
|
|
'user-create' => ['GET', 'POST'],
|
|
|
|
'user-update' => ['GET', 'POST'],
|
|
|
|
'user-delete' => ['POST'],
|
2024-03-21 14:01:44 +08:00
|
|
|
'info' => ['GET'],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function init(): void
|
|
|
|
{
|
|
|
|
parent::init();
|
|
|
|
$this->layout = 'admin_main';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function actionIndex(): string
|
|
|
|
{
|
|
|
|
return $this->render('index');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function actionSystem(): string
|
|
|
|
{
|
|
|
|
return $this->render('system');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-03-22 14:48:35 +08:00
|
|
|
* Lists all User.
|
|
|
|
*
|
2024-03-21 14:01:44 +08:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function actionUser(): string
|
|
|
|
{
|
2024-03-22 14:48:35 +08:00
|
|
|
$searchModel = new UserSearch();
|
|
|
|
$dataProvider = $searchModel->search($this->request->queryParams);
|
|
|
|
|
|
|
|
return $this->render('user', [
|
|
|
|
'searchModel' => $searchModel,
|
|
|
|
'dataProvider' => $dataProvider,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays a single User model.
|
|
|
|
* @param int $id ID
|
|
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
|
|
*/
|
2024-03-25 15:38:47 +08:00
|
|
|
public function actionUserView(int $id): array|string
|
2024-03-22 14:48:35 +08:00
|
|
|
{
|
2024-03-25 15:38:47 +08:00
|
|
|
$model = $this->findModel($id);
|
|
|
|
if (isset($_POST['hasEditable'])) {
|
|
|
|
Yii::$app->response->format = Response::FORMAT_JSON;
|
|
|
|
|
|
|
|
$oldValue = $model->name;
|
|
|
|
|
|
|
|
if ($model->load($_POST)) {
|
|
|
|
// read or convert your posted information
|
|
|
|
$value = $model->name;
|
|
|
|
|
|
|
|
// validate if any errors
|
|
|
|
if ($model->save(true,['name'])) {
|
|
|
|
// return JSON encoded output in the below format on success with an empty `message`
|
|
|
|
return ['output' => $value, 'message' => ''];
|
|
|
|
} else {
|
|
|
|
// alternatively you can return a validation error (by entering an error message in `message` key)
|
|
|
|
return ['output' => $oldValue, 'message' => 'Incorrect Value! Please reenter.'];
|
|
|
|
}
|
|
|
|
} // else if nothing to do always return an empty JSON encoded output
|
|
|
|
else {
|
|
|
|
return ['output' => '', 'message' => ''];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-22 14:48:35 +08:00
|
|
|
return $this->render('user_view', [
|
2024-03-25 15:38:47 +08:00
|
|
|
'model' => $model,
|
2024-03-22 14:48:35 +08:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new User model.
|
|
|
|
* If creation is successful, the browser will be redirected to the 'view' page.
|
|
|
|
* @return string|Response
|
2024-03-25 15:38:47 +08:00
|
|
|
* @throws Exception
|
2024-03-22 14:48:35 +08:00
|
|
|
*/
|
|
|
|
public function actionUserCreate(): Response|string
|
|
|
|
{
|
2024-03-23 13:42:15 +08:00
|
|
|
$model = new User(['scenario' => 'addUser']);
|
2024-03-22 14:48:35 +08:00
|
|
|
|
|
|
|
if ($this->request->isPost) {
|
2024-03-23 13:42:15 +08:00
|
|
|
if ($model->load($this->request->post()) && $model->validate()) {
|
|
|
|
$raw_password = $model->password;
|
|
|
|
$model->password = Yii::$app->security->generatePasswordHash($raw_password);
|
|
|
|
$model->auth_key = Yii::$app->security->generateRandomString();
|
|
|
|
$model->role = $this->request->post('User')['role'];
|
|
|
|
$model->created_at = date('Y-m-d H:i:s');
|
|
|
|
$model->name = $model->username; //用户默认昵称为用户名,后期可以修改
|
|
|
|
if ($model->save(false)) { // save without validation
|
2024-03-25 15:38:47 +08:00
|
|
|
if ($model->role == 'user') {
|
2024-03-23 13:42:15 +08:00
|
|
|
$userFolder = Yii::getAlias(Yii::$app->params['dataDirectory']) . '/' . $model->id;
|
|
|
|
if (!is_dir($userFolder)) {
|
|
|
|
mkdir($userFolder);
|
|
|
|
}
|
|
|
|
$secretFolder = Yii::getAlias(Yii::$app->params['dataDirectory']) . '/' . $model->id . '.secret';
|
|
|
|
if (!is_dir($secretFolder)) {
|
|
|
|
mkdir($secretFolder);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Yii::$app->session->setFlash('success', '用户添加成功');
|
|
|
|
return $this->redirect(['user-view', 'id' => $model->id]);
|
|
|
|
} else {
|
|
|
|
$model->loadDefaultValues();
|
|
|
|
$model->password = $raw_password;
|
|
|
|
Yii::$app->session->setFlash('error', '用户添加失败');
|
|
|
|
}
|
2024-03-22 14:48:35 +08:00
|
|
|
}
|
|
|
|
}
|
2024-03-23 13:42:15 +08:00
|
|
|
$model->loadDefaultValues(true);
|
2024-03-22 14:48:35 +08:00
|
|
|
return $this->render('user_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
|
|
|
|
* @return string|Response
|
|
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
|
|
*/
|
|
|
|
public function actionUserUpdate(int $id): Response|string
|
|
|
|
{
|
|
|
|
$model = $this->findModel($id);
|
|
|
|
|
|
|
|
if ($this->request->isPost && $model->load($this->request->post()) && $model->save()) {
|
|
|
|
return $this->redirect(['user_view', 'id' => $model->id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->render('user_update', [
|
|
|
|
'model' => $model,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $id ID
|
|
|
|
* @return Response
|
|
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
|
|
* @throws Throwable
|
|
|
|
* @throws StaleObjectException
|
|
|
|
*/
|
|
|
|
public function actionUserDelete(int $id): Response
|
|
|
|
{
|
2024-03-23 14:28:36 +08:00
|
|
|
$user = $this->findModel($id);
|
|
|
|
$alreadyDisabled = $user->status == 0;
|
|
|
|
$str = $alreadyDisabled ? '启用' : '禁用';
|
|
|
|
if ($user->deleteAccount($alreadyDisabled)) {
|
|
|
|
$logout_result = '';
|
2024-03-25 15:38:47 +08:00
|
|
|
if (!$alreadyDisabled) {
|
2024-03-23 14:28:36 +08:00
|
|
|
$logout_result = AdminSword::forceUserLogout($id);
|
|
|
|
}
|
2024-03-25 15:38:47 +08:00
|
|
|
Yii::$app->session->setFlash('success', '账户' . $str . '成功,' . $logout_result);
|
2024-03-23 14:28:36 +08:00
|
|
|
} else {
|
2024-03-25 15:38:47 +08:00
|
|
|
Yii::$app->session->setFlash('error', '账户' . $str . '失败');
|
2024-03-23 14:28:36 +08:00
|
|
|
}
|
|
|
|
return $this->redirect(['user-view', 'id' => $id]);
|
2024-03-22 14:48:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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(int $id): User
|
|
|
|
{
|
|
|
|
if (($model = User::findOne(['id' => $id])) !== null) {
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new NotFoundHttpException('The requested page does not exist.');
|
2024-03-21 14:01:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function actionInfo(): string
|
|
|
|
{
|
|
|
|
return $this->render('info');
|
|
|
|
}
|
|
|
|
}
|