Показать сообщение отдельно
  #3 (permalink)  
Старый 05.08.2015, 18:53
Аспирант
Отправить личное сообщение для Boogie1989 Посмотреть профиль Найти все сообщения от Boogie1989
 
Регистрация: 21.10.2014
Сообщений: 37

если закоментировать вот эту часть кода в файле app.js

$urlRouterProvider.rule(function ($injector, $location)
    {
      
        if($location.protocol() === 'file')
            return;

        var path = $location.path()
       
        // Note: misnomer. This returns a query object, not a search string
            , search = $location.search()
            , params
     
            ;

        // check to see if the path already ends in '/'
        if (path[path.length - 1] === '/') {
            return;
        }

        // If there was no search string / query params, return with a `/`
        if (Object.keys(search).length === 0) {
            return path + '/';
        }

        // Otherwise build the search string and return a `/?` prefix
        params = [];
        angular.forEach(search, function(v, k){
            params.push(k + '=' + v);
        });
        return path + '/?' + params.join('&');
    });

    $locationProvider.html5Mode(true);

    $httpProvider.interceptors.push(function($q, $location) {
        return {
            'responseError': function(response) {
                if(response.status === 401 || response.status === 403) {
                    $location.path('/login');
                }
                return $q.reject(response);
            }
        };
    });

}])

.run(['$rootScope', '$state', 'Auth', function ($rootScope, $state, Auth) {

    $rootScope.$on("$stateChangeStart", function (event, toState, toParams, fromState, fromParams) {
        
        if(!('data' in toState) || !('access' in toState.data)){
            $rootScope.error = "Access undefined for this state";
            event.preventDefault();
        }
        else if (!Auth.authorize(toState.data.access)) {
            $rootScope.error = "Seems like you tried accessing a route you don't have access to...";
            event.preventDefault();

            if(fromState.url === '^') {
                if(Auth.isLoggedIn()) {
                    $state.go('user.home');
                } else {
                    $rootScope.error = null;
                    $state.go('anon.login');
                }
            }
        }
    });

то начинает работать почти что нормально
Ответить с цитированием