2024-03-21 14:01:44 +08:00
|
|
|
<?php
|
2024-03-22 14:48:35 +08:00
|
|
|
|
2024-03-23 13:42:15 +08:00
|
|
|
use app\models\PublicKeyCredentialSourceRepository;
|
2024-03-22 14:48:35 +08:00
|
|
|
use app\models\User;
|
|
|
|
use app\utils\FileSizeHelper;
|
|
|
|
use yii\grid\ActionColumn;
|
|
|
|
use yii\grid\GridView;
|
|
|
|
use yii\helpers\Html;
|
|
|
|
use yii\helpers\Url;
|
|
|
|
use yii\widgets\Pjax;
|
|
|
|
|
2024-03-21 14:01:44 +08:00
|
|
|
/** @var yii\web\View $this */
|
2024-03-22 14:48:35 +08:00
|
|
|
/** @var app\models\UserSearch $searchModel */
|
|
|
|
/** @var yii\data\ActiveDataProvider $dataProvider */
|
|
|
|
$this->title = '用户管理';
|
|
|
|
$this->params['breadcrumbs'][] = $this->title;
|
2024-03-21 14:01:44 +08:00
|
|
|
?>
|
2024-03-22 14:48:35 +08:00
|
|
|
<div class="user-index">
|
|
|
|
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
|
|
|
|
<p>
|
2024-03-23 13:42:15 +08:00
|
|
|
<?= Html::a('添加用户', ['user-create'], ['class' => 'btn btn-success']) ?>
|
2024-03-22 14:48:35 +08:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<?php Pjax::begin(); ?>
|
|
|
|
<div class="table-responsive">
|
|
|
|
<?= GridView::widget([
|
|
|
|
'dataProvider' => $dataProvider,
|
|
|
|
'columns' => [
|
|
|
|
['attribute' => 'id', 'label' => 'ID'],
|
|
|
|
['attribute' => 'username', 'label' => '用户名'],
|
|
|
|
['attribute' => 'name', 'label' => '昵称'],
|
|
|
|
['attribute' => 'email', 'format' => 'email', 'label' => '电子邮箱'],
|
|
|
|
['attribute' => 'status', 'label' => '账户启用', 'value' => function ($model) {
|
|
|
|
return $model->status == 0 ? '禁用' : '启用';
|
|
|
|
}, 'filter' => ['0' => '禁用', '1' => '启用']],
|
|
|
|
['attribute' => 'created_at', 'label' => '账户创建时间', 'filter' => false],
|
|
|
|
['attribute' => 'last_login', 'label' => '上次登陆时间', 'filter' => false],
|
2024-03-25 15:38:47 +08:00
|
|
|
['attribute' => 'last_login_ip', 'label' => '上次登录IP'],
|
2024-03-22 14:48:35 +08:00
|
|
|
['attribute' => 'role', 'label' => '用户身份', 'value' => function ($model) {
|
|
|
|
return $model->role == 'user' ? '用户' : '管理员';
|
|
|
|
}, 'filter' => ['user' => '用户', 'admin' => '管理员']],
|
|
|
|
['attribute' => 'is_otp_enabled', 'label' => '多因素登录', 'value' => function ($model) {
|
|
|
|
return $model->is_otp_enabled == 0 ? '禁用' : '启用';
|
|
|
|
}, 'filter' => ['0' => '禁用', '1' => '启用']],
|
2024-03-25 15:38:47 +08:00
|
|
|
['label' => 'Passkey', 'value' => function ($Model) {
|
|
|
|
$PKCSR = new PublicKeyCredentialSourceRepository();
|
2024-03-23 13:42:15 +08:00
|
|
|
$UserEntitys = $PKCSR->findAllForUserEntity($Model);
|
|
|
|
if (empty($UserEntitys)) {
|
|
|
|
return '禁用';
|
|
|
|
}else{
|
|
|
|
return '启用';
|
|
|
|
}
|
|
|
|
}],
|
2024-03-22 14:48:35 +08:00
|
|
|
['attribute' => 'storage_limit', 'label' => '空间使用情况', 'value' => function ($model) {
|
|
|
|
if ($model->role == 'user') {
|
|
|
|
return FileSizeHelper::getFormatUserAllDirSize($model->id) . ' / ' . FileSizeHelper::formatMegaBytes($model->storage_limit);
|
|
|
|
} else {
|
|
|
|
return '不可用';
|
|
|
|
}
|
|
|
|
}, 'filter' => false],
|
|
|
|
[
|
|
|
|
'class' => ActionColumn::class,
|
|
|
|
'header' => '操作',
|
2024-03-23 14:28:36 +08:00
|
|
|
'template' => '{view}',
|
2024-03-22 14:48:35 +08:00
|
|
|
'urlCreator' => function ($action, User $model, $key, $index, $column) {
|
|
|
|
return Url::toRoute(['user-' . $action, 'id' => $model->id]);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
],
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php Pjax::end(); ?>
|
2024-03-21 14:01:44 +08:00
|
|
|
|
2024-03-22 14:48:35 +08:00
|
|
|
</div>
|