123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <?php
- namespace common\modules\rbac\controllers;
- use common\modules\rbac\components\MenuHelper;
- use common\modules\rbac\models\AuthItem;
- use common\modules\rbac\models\searchs\AuthItem as AuthItemSearch;
- use Yii;
- use yii\filters\VerbFilter;
- use yii\helpers\ArrayHelper;
- use yii\rbac\Item;
- use yii\web\Controller;
- use yii\web\NotFoundHttpException;
- /**
- * AuthItemController implements the CRUD actions for AuthItem model.
- *
- * @author Misbahul D Munir <misbahuldmunir@gmail.com>
- *
- * @since 1.0
- */
- class RoleController extends Controller
- {
- /**
- * {@inheritdoc}
- */
- public function behaviors()
- {
- return [
- 'verbs' => [
- 'class' => VerbFilter::className(),
- 'actions' => [
- 'delete' => ['post'],
- ],
- ],
- ];
- }
- /**
- * Lists all AuthItem models.
- *
- * @return mixed
- */
- public function actionIndex()
- {
- $searchModel = new AuthItemSearch(['type' => Item::TYPE_ROLE]);
- $dataProvider = $searchModel->search(Yii::$app->request->getQueryParams());
- return $this->render('index', [
- 'dataProvider' => $dataProvider,
- 'searchModel' => $searchModel,
- ]);
- }
- /**
- * Displays a single AuthItem model.
- *
- * @param string $id
- *
- * @return mixed
- */
- public function actionView($id)
- {
- $model = $this->findModel($id);
- $permissions = Yii::$app->authManager->getPermissions();
- unset($permissions['/*']);
- $permissions = array_keys($permissions);
- $routeGroups = [];
- foreach ($permissions as $permission) {
- $pos = strrpos($permission, '/');
- $controller = substr($permission, 0, $pos);
- $action = substr($permission, $pos+1);
- $routeGroups[$controller][] = $action;
- }
- return $this->render('view', [
- 'model' => $model,
- 'routeGroups' => $routeGroups
- ]);
- }
- /**
- * Creates a new AuthItem model.
- * If creation is successful, the browser will be redirected to the 'view' page.
- *
- * @return mixed
- */
- public function actionCreate()
- {
- $model = new AuthItem(null);
- $model->type = Item::TYPE_ROLE;
- if ($model->load(Yii::$app->getRequest()->post()) && $model->save()) {
- MenuHelper::invalidate();
- return $this->redirect(['view', 'id' => $model->name]);
- } else {
- return $this->render('create', ['model' => $model]);
- }
- }
- /**
- * Updates an existing AuthItem model.
- * If update is successful, the browser will be redirected to the 'view' page.
- *
- * @param string $id
- *
- * @return mixed
- */
- public function actionUpdate($id)
- {
- $model = $this->findModel($id);
- if ($model->load(Yii::$app->getRequest()->post()) && $model->save()) {
- MenuHelper::invalidate();
- return $this->redirect(['index']);
- }
- return $this->render('update', ['model' => $model]);
- }
- /**
- * Deletes an existing AuthItem model.
- * If deletion is successful, the browser will be redirected to the 'index' page.
- *
- * @param string $id
- *
- * @return mixed
- */
- public function actionDelete($id)
- {
- $model = $this->findModel($id);
- Yii::$app->getAuthManager()->remove($model->item);
- MenuHelper::invalidate();
- return $this->redirect(['index']);
- }
- /**
- * Assign or remove items.
- *
- * @param string $id
- * @param string $action
- *
- * @return array
- */
- public function actionAssign()
- {
- $post = Yii::$app->getRequest()->post();
- $id = $post['id'];
- $action = $post['action'];
- $roles = $post['roles'];
- $manager = Yii::$app->getAuthManager();
- $parent = $manager->getRole($id);
- $error = [];
- if ($action == 'assign') {
- foreach ($roles as $role) {
- $child = $manager->getRole($role);
- $child = $child ?: $manager->getPermission($role);
- try {
- $manager->addChild($parent, $child);
- } catch (\Exception $e) {
- $error[] = $e->getMessage();
- }
- }
- } else {
- foreach ($roles as $role) {
- $child = $manager->getRole($role);
- $child = $child ?: $manager->getPermission($role);
- try {
- $manager->removeChild($parent, $child);
- } catch (\Exception $e) {
- $error[] = $e->getMessage();
- }
- }
- }
- MenuHelper::invalidate();
- Yii::$app->response->format = 'json';
- return[
- 'type' => 'S',
- 'errors' => $error,
- ];
- }
- /**
- * Search role.
- *
- * @param string $id
- * @param string $target
- * @param string $term
- *
- * @return array
- */
- public function actionSearch($id, $target, $term = '')
- {
- $result = [
- 'Roles' => [],
- 'Permissions' => [],
- 'Routes' => [],
- ];
- $authManager = Yii::$app->authManager;
- if ($target == 'avaliable') {
- $children = array_keys($authManager->getChildren($id));
- $children[] = $id;
- foreach ($authManager->getRoles() as $name => $role) {
- if (in_array($name, $children)) {
- continue;
- }
- if (empty($term) or strpos($name, $term) !== false) {
- $result['Roles'][$name] = $name;
- }
- }
- foreach ($authManager->getPermissions() as $name => $role) {
- if (in_array($name, $children)) {
- continue;
- }
- if (empty($term) or strpos($name, $term) !== false) {
- $result[$name[0] === '/' ? 'Routes' : 'Permissions'][$name] = $name;
- }
- }
- } else {
- foreach ($authManager->getChildren($id) as $name => $child) {
- if (empty($term) or strpos($name, $term) !== false) {
- if ($child->type == Item::TYPE_ROLE) {
- $result['Roles'][$name] = $name;
- } else {
- $result[$name[0] === '/' ? 'Routes' : 'Permissions'][$name] = $name;
- }
- }
- }
- }
- Yii::$app->response->format = 'json';
- return array_filter($result);
- }
- /**
- * Finds the AuthItem model based on its primary key value.
- * If the model is not found, a 404 HTTP exception will be thrown.
- *
- * @param string $id
- *
- * @return AuthItem the loaded model
- *
- * @throws HttpException if the model cannot be found
- */
- protected function findModel($id)
- {
- $item = Yii::$app->getAuthManager()->getRole($id);
- if ($item) {
- return new AuthItem($item);
- } else {
- throw new NotFoundHttpException('The requested page does not exist.');
- }
- }
- }
|