RoleController.php
7.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
<?php
namespace app\ht\modules\system\controllers;
use Yii;
use yii\base\Exception;
use yii\data\Pagination;
use yii\db\Query;
use app\ht\controllers\BaseController;
use app\ht\exts\rbac\DbManager;
use domain\system\AuthPermRepository;
use function implode;
use function trim;
/**
* 角色管理控制器
*/
class RoleController extends BaseController
{
/**
* 列表
*/
public function actionIndex()
{
$request = Yii::$app->request;
/**
* 组织SQL
*/
$roleQuery = new Query();
$roleQuery->select(['auth_role.*']);
$roleQuery->from('auth_role');
/**
* 过滤
*/
$get = [];
$keyword = $request->get("keyword");
if ($keyword) {
$roleQuery->FilterWhere(['or',
['like','name', $keyword],
]);
}
$get['keyword'] = $keyword;
/**
* 分页处理
*/
$pageSize = $request->get("pageSize") ? (int) $request->get("pageSize") : 20;
$pages = new Pagination(['totalCount' => $roleQuery->count(), 'pageSize' => $pageSize]);
$roles = $roleQuery->offset($pages->offset)->limit($pages->limit)->all();
/**
* 数据整理
*/
$data = [];
$auth = Yii::$app->authManager;
foreach ($roles as $role) {
$perms = [];
foreach ($auth->getPermsByRole($role['role_id']) as $perm) {
$perms[] = $perm->name;
}
$perms = implode(',', $perms);
$data[] = [
'id' => $role['role_id'],
'name' => $role['name'],
'description' => $role['description'],
'perms' => $perms,
];
}
/**
* 渲染模板
*/
return $this->render('index', [
'roles' => $data,
'pages' => $pages,
'get' => $get,
]);
}
/**
* 新增界面
*/
public function actionCreate()
{
return $this->render('create');
}
/**
* 新增执行动作
*/
public function actionDoAdd()
{
$post = Yii::$app->request->post();
if (empty($post)) {
return;
}
$roleName = isset($post['name']) ? $post['name'] : '';
$description = isset($post['description']) ? $post['description'] : '';
$roleName = trim($roleName);
$description = trim($description);
$transaction = Yii::$app->db->beginTransaction();
try {
$auth = Yii::$app->authManager;
$role = $auth->createRole($roleName);
$role->description = $description;
$addResult = $auth->addRole($role);
if ($addResult) {
$transaction->commit();
Yii::$app->session->setFlash('success', '角色添加完成');
// 重置缓存
Yii::$app->authManager->invalidateCache();
} else {
$transaction->rollBack();
Yii::$app->session->setFlash('danger', '角色添加失败,可能重名');
}
} catch (Exception $e) {
Yii::$app->session->setFlash('danger', '数据保存失败,请重新操作');
$transaction->rollBack();
return $this->redirect(['/mall/role/create']);
}
return $this->redirect(['index']);
}
/**
* 更新界面
*/
public function actionUpdate($id)
{
$role = Yii::$app->authManager->getRole($id);
$supperRoleName = DbManager::SUPPER_ADMIN_NAME;
return $this->render('update', [
'role' => $role,
'supperRoleName' => $supperRoleName
]);
}
/**
* 更新执行动作
*/
public function actionDoUpdate($id)
{
$post = Yii::$app->request->post();
if (empty($post)) {
return;
}
$roleName = isset($post['name']) ? $post['name'] : '';
$description = isset($post['description']) ? $post['description'] : '';
$roleName = trim($roleName);
$description = trim($description);
$authManager = Yii::$app->authManager;
$role = $authManager->getRole($id);
$existRole = $authManager->getRoleByName($roleName);
if ($role && $existRole && $role->roleId != $existRole->roleId) {
Yii::$app->session->setFlash('danger', '角色名称已存在,请改其他名称');
return $this->redirect(['index']);
}
$transaction = Yii::$app->db->beginTransaction();
try {
$role->name = $roleName;
$role->description = $description;
$authManager->updateRole($id, $role);
$transaction->commit();
} catch (Exception $e) {
Yii::$app->session->setFlash('danger', '数据保存失败,请重新操作');
$transaction->rollBack();
return $this->redirect(['index']);
}
Yii::$app->session->setFlash('success', '角色更新完成');
return $this->redirect(['index']);
}
/**
* 更新执行动作
*/
public function actionDelete($id)
{
$role = Yii::$app->authManager->getRole($id);
Yii::$app->authManager->removeRole($role);
Yii::$app->session->setFlash('success', '角色删除完成');
return $this->redirect(['index']);
}
/**
* 分配权限界面
*/
public function actionSetPermission($id)
{
$auth = Yii::$app->authManager;
$role = $auth->getRole($id);
$selected = $auth->getPermsByRole($id);
$modules = Yii::$app->modules;
$permission = [];
foreach ($modules as $name => $class) {
$module = Yii::$app->getModule($name);
if (!empty($module->params['perm'])) {
$permission[$name] = $module->params['perm'];
}
}
return $this->render('set_permission', [
'role' => $role,
'permission' => $permission,
'selected' => $selected
]);
}
/**
* 执行分配权限动作
*/
public function actionDoSetPermission($id)
{
$post = Yii::$app->request->post();
$auth = Yii::$app->authManager;
$role = $auth->getRole($id);
if (empty($post['permission'])) {
// 删除角色所有权限
$auth->setRolePerms($id);
Yii::$app->session->setFlash('success', '权限设置完成');
return $this->redirect(['index']);
}
$transaction = Yii::$app->db->beginTransaction();
try {
$perms = implode(',', $post['permission']);
$auth->setRolePerms($id, $perms);
$transaction->commit();
} catch (Exception $e) {
Yii::$app->session->setFlash('danger', '数据保存失败,请重新操作');
$transaction->rollBack();
return $this->redirect(['index']);
}
Yii::$app->session->setFlash('success', '权限设置完成');
return $this->redirect(['index']);
}
/**
* @param $id
* @return string
*/
public function actionAssignPermission($id)
{
$auth = Yii::$app->authManager;
$role = $auth->getRole($id);
$selected = $auth->getPermsByRole($id);
$confirmRouters = AuthPermRepository::getPermsRouters('perm_id >0');
$modulesArr = AuthPermRepository::getGroupPermsRouters($confirmRouters);
return $this->render('assign_permission', [
'role' => $role,
'permission' => $modulesArr,
'selected' => $selected
]);
}
}