123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340 |
- <?php
- namespace common\modules\rbac\controllers;
- use Exception;
- use common\modules\rbac\components\Configs;
- use common\modules\rbac\components\MenuHelper;
- use common\modules\rbac\components\RouteRule;
- use common\modules\rbac\models\Route;
- use Yii;
- use yii\caching\TagDependency;
- use yii\helpers\Inflector;
- use yii\helpers\VarDumper;
- use yii\web\Response;
- /**
- * Description of RuleController.
- *
- * @author Misbahul D Munir <misbahuldmunir@gmail.com>
- *
- * @since 1.0
- */
- class RouteController extends \yii\web\Controller
- {
- const CACHE_TAG = 'mdm.admin.route';
- /**
- * Lists all Route models.
- *
- * @return mixed
- */
- public function actionIndex()
- {
- return $this->render('index');
- }
- /**
- * 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 Route();
- if ($model->load(Yii::$app->getRequest()->post())) {
- if ($model->validate()) {
- $routes = preg_split('/\s*,\s*/', trim($model->route), -1, PREG_SPLIT_NO_EMPTY);
- $this->saveNew($routes);
- MenuHelper::invalidate();
- $this->redirect(['index']);
- }
- }
- return $this->render('create', ['model' => $model]);
- }
- /**
- * Assign or remove items.
- *
- * @param string $action
- *
- * @return array
- */
- public function actionAssign()
- {
- $post = Yii::$app->getRequest()->post();
- $action = $post['action'];
- $routes = $post['routes'];
- $manager = Yii::$app->getAuthManager();
- $error = [];
- if ($action == 'assign') {
- $this->saveNew($routes);
- } else {
- foreach ($routes as $route) {
- $child = $manager->getPermission($route);
- try {
- $manager->remove($child);
- } catch (Exception $exc) {
- $error[] = $exc->getMessage();
- }
- }
- }
- MenuHelper::invalidate();
- Yii::$app->getResponse()->format = Response::FORMAT_JSON;
- return[
- 'type' => 'S',
- 'errors' => $error,
- ];
- }
- /**
- * Search Route.
- *
- * @param string $target
- * @param string $term
- * @param string $refresh
- *
- * @return array
- */
- public function actionSearch($target, $term = '', $refresh = '0')
- {
- if ($refresh == '1') {
- $this->invalidate();
- }
- $result = [];
- $manager = Yii::$app->getAuthManager();
- $exists = array_keys($manager->getPermissions());
- $routes = $this->getAppRoutes();
- if ($target == 'avaliable') {
- foreach ($routes as $route) {
- if (in_array($route, $exists)) {
- continue;
- }
- if (empty($term) or strpos($route, $term) !== false) {
- $result[$route] = true;
- }
- }
- } else {
- foreach ($exists as $name) {
- if ($name[0] !== '/') {
- continue;
- }
- if (empty($term) or strpos($name, $term) !== false) {
- $r = explode('&', $name);
- $result[$name] = !empty($r[0]) && in_array($r[0], $routes);
- }
- }
- }
- Yii::$app->response->format = 'json';
- return $result;
- }
- /**
- * Save one or more route(s).
- *
- * @param array $routes
- */
- private function saveNew($routes)
- {
- $manager = Yii::$app->getAuthManager();
- foreach ($routes as $route) {
- try {
- $r = explode('&', $route);
- $item = $manager->createPermission('/'.trim($route, '/'));
- if (count($r) > 1) {
- $action = '/'.trim($r[0], '/');
- if (($itemAction = $manager->getPermission($action)) === null) {
- $itemAction = $manager->createPermission($action);
- $manager->add($itemAction);
- }
- unset($r[0]);
- foreach ($r as $part) {
- $part = explode('=', $part);
- $item->data['params'][$part[0]] = isset($part[1]) ? $part[1] : '';
- }
- $this->setDefaultRule();
- $item->ruleName = RouteRule::RULE_NAME;
- $manager->add($item);
- $manager->addChild($item, $itemAction);
- } else {
- $manager->add($item);
- }
- } catch (Exception $e) {
- }
- }
- }
- /**
- * Get list of application routes.
- *
- * @return array
- */
- public function getAppRoutes()
- {
- $key = __METHOD__;
- $cache = Configs::instance()->cache;
- $cache = null;
- if ($cache === null || ($result = $cache->get($key)) === false) {
- $result = [];
- $this->getRouteRecrusive(Yii::$app, $result);
- if ($cache !== null) {
- $cache->set($key, $result, Configs::instance()->cacheDuration, new TagDependency([
- 'tags' => self::CACHE_TAG,
- ]));
- }
- }
- return $result;
- }
- /**
- * Get route(s) recrusive.
- *
- * @param \yii\base\Module $module
- * @param array $result
- */
- private function getRouteRecrusive($module, &$result)
- {
- $token = "Get Route of '".get_class($module)."' with id '".$module->uniqueId."'";
- Yii::beginProfile($token, __METHOD__);
- try {
- foreach ($module->getModules() as $id => $child) {
- if (($child = $module->getModule($id)) !== null) {
- $this->getRouteRecrusive($child, $result);
- }
- }
- foreach ($module->controllerMap as $id => $type) {
- $this->getControllerActions($type, $id, $module, $result);
- }
- $namespace = trim($module->controllerNamespace, '\\').'\\';
- $this->getControllerFiles($module, $namespace, '', $result);
- if ($module->uniqueId === '') {
- $result[] = '/*';
- }
- } catch (\Exception $exc) {
- Yii::error($exc->getMessage(), __METHOD__);
- }
- Yii::endProfile($token, __METHOD__);
- }
- /**
- * Get list controller under module.
- *
- * @param \yii\base\Module $module
- * @param string $namespace
- * @param string $prefix
- * @param mixed $result
- *
- * @return mixed
- */
- private function getControllerFiles($module, $namespace, $prefix, &$result)
- {
- $path = @Yii::getAlias('@'.str_replace('\\', '/', $namespace));
- $token = "Get controllers from '$path'";
- Yii::beginProfile($token, __METHOD__);
- try {
- if (!is_dir($path)) {
- return;
- }
- foreach (scandir($path) as $file) {
- if ($file == '.' || $file == '..') {
- continue;
- }
- if (is_dir($path.'/'.$file)) {
- $this->getControllerFiles($module, $namespace.$file.'\\', $prefix.$file.'/', $result);
- } elseif (strcmp(substr($file, -14), 'Controller.php') === 0) {
- $id = Inflector::camel2id(substr(basename($file), 0, -14));
- $className = $namespace.Inflector::id2camel($id).'Controller';
- if (strpos($className, '-') === false && class_exists($className) && is_subclass_of($className, 'yii\base\Controller')) {
- $this->getControllerActions($className, $prefix.$id, $module, $result);
- }
- }
- }
- } catch (\Exception $exc) {
- Yii::error($exc->getMessage(), __METHOD__);
- }
- Yii::endProfile($token, __METHOD__);
- }
- /**
- * Get list action of controller.
- *
- * @param mixed $type
- * @param string $id
- * @param \yii\base\Module $module
- * @param string $result
- */
- private function getControllerActions($type, $id, $module, &$result)
- {
- $token = 'Create controller with cofig='.VarDumper::dumpAsString($type)." and id='$id'";
- Yii::beginProfile($token, __METHOD__);
- try {
- /* @var $controller \yii\base\Controller */
- $controller = Yii::createObject($type, [$id, $module]);
- $this->getActionRoutes($controller, $result);
- // $result[] = '/'.$controller->uniqueId.'/*';
- } catch (\Exception $exc) {
- Yii::error($exc->getMessage(), __METHOD__);
- }
- Yii::endProfile($token, __METHOD__);
- }
- /**
- * Get route of action.
- *
- * @param \yii\base\Controller $controller
- * @param array $result all controller action.
- */
- private function getActionRoutes($controller, &$result)
- {
- $token = "Get actions of controller '".$controller->uniqueId."'";
- Yii::beginProfile($token, __METHOD__);
- try {
- $prefix = '/'.$controller->uniqueId.'/';
- foreach ($controller->actions() as $id => $value) {
- $result[] = $prefix.$id;
- }
- $class = new \ReflectionClass($controller);
- foreach ($class->getMethods() as $method) {
- $name = $method->getName();
- if ($method->isPublic() && !$method->isStatic() && strpos($name, 'action') === 0 && $name !== 'actions') {
- $result[] = $prefix.Inflector::camel2id(substr($name, 6));
- }
- }
- } catch (\Exception $exc) {
- Yii::error($exc->getMessage(), __METHOD__);
- }
- Yii::endProfile($token, __METHOD__);
- }
- /**
- * Ivalidate cache.
- */
- protected function invalidate()
- {
- if (Configs::instance()->cache !== null) {
- TagDependency::invalidate(Configs::instance()->cache, self::CACHE_TAG);
- }
- }
- /**
- * Set default rule of parameterize route.
- */
- protected function setDefaultRule()
- {
- if (Yii::$app->authManager->getRule(RouteRule::RULE_NAME) === null) {
- Yii::$app->authManager->add(Yii::createObject([
- 'class' => RouteRule::className(),
- 'name' => RouteRule::RULE_NAME, ]
- ));
- }
- }
- }
|