Question

I'm just trying to get this to work:

 .....
   .when('/channel/:id/:slug',{
            templateUrl:'views/channel/index.html',
            controller:'Channel',
            publicAccess:true,
            sessionAccess:true
          })
   .....
    app.controller('Channel', ['$scope','$routeParams', function ($scope,$routeParams) {

    }]);


    app.run(function($rootScope, $location, $route) {

      var routesOpenToSession = [];

      angular.forEach($route.routes, function(route, path) {
        console.log(path);
        console.log(route);
        route.sessionAccess && (routesOpenToSession.push(path));
      });

      $rootScope.$on('$routeChangeStart', function(event, nextLoc, currentLoc) {

        var closedToSession = (-1 === routesOpenToSession.indexOf($location.path()));

        if(closedToSession && $rootScope.session.id_user) {
          $location.path('/');
        }
      });
    });

why i can't access the page via site.com/channel/9/my-slug also if $rootScope.session.id_user exists and sessionAccess:true ?

i get redirected to / , while any other static url are ok using sessionAccess:true for example channel/staticparam is ok but with dynamic params it won't work

this is the console log result :

enter image description here

Was it helpful?

Solution

fixed sorry for the stupid question:

/*Not logged redirects*/
app.run(['$rootScope','$location','$route', function ($rootScope, $location,$route) {

   var routesOpenToPublic = [];

    angular.forEach($route.routes, function (route, path) {

      if(route.publicAccess){ routesOpenToPublic.push(route.regexp); }

    });

    $rootScope.$on('$routeChangeStart', function (event, nextLoc, currentLoc) {

     var next_url_regexp = nextLoc.$$route.regexp;
    //redirect for not logged users users
     if(routesOpenToPublic.indexOf(next_url_regexp) < 0){

      $location.path('/auth/login');

     }

    });
}]);
/*Logged redirects*/
app.run(['$rootScope','$location','$route', function ($rootScope, $location, $route) {

  if($rootScope.session && $rootScope.session.id_user){

    var routesOpenToSession = [];

    angular.forEach($route.routes, function (route, path) {

      if(route.sessionAccess){ routesOpenToSession.push( route.regexp);}

    });

    $rootScope.$on('$routeChangeStart', function (event, nextLoc, currentLoc) {

     var next_url_regexp = nextLoc.$$route.regexp;
    //redirect for not allowed session users
     if(routesOpenToSession.indexOf(next_url_regexp) < 0){

      $location.path('/');

     }

    });
  }

 }]);

i needed to check the route regexp and not the static url path

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top