Giter VIP home page Giter VIP logo

Comments (5)

amrnt avatar amrnt commented on July 22, 2024

You are right @3emad!


So the scenario of implementing this, IMO, is tracking when we get 401, save $location.path() in cookies _redierect_to just before redirect to the login page.

After login (or whatever), check $cookies._redirect_to if existed then redirect to that path.

@RashaHussein?

from manshar.

3emad avatar 3emad commented on July 22, 2024

@amrnt I noticed the script expects the backend to return a response having two properties that depends on which are redirecting to login and assigning previous path, referring to this script:

$q.reject({
              redirectTo: '/login',
              previous: $location.path()
            }) 

looking at this line, It seems we could just make sure the response object has the property of previous,maybe something like this:

'responseError': function(response) {
        if (response.status === 401) {
         if( typeof response.previous !== 'string')
            response.previous = $location.path();
          $location.path('/login');
          return $q.reject(response);
        }
        else {
          return $q.reject(response);
        }

on another thought if that works, even better:

'responseError': function(response) {
        if (response.status === 401) {
         if( typeof response.previous !== 'string')
            response.previous = $location.path();
          if( typeof response.redirectTo !== 'string')
            response.redirectTo = '/login';
          return $q.reject(response);
        }
        else {
          return $q.reject(response);
        }

Thoughts?

from manshar.

mkhatib avatar mkhatib commented on July 22, 2024

Great catch Emad.

I don't think this should rely on backend logic and the client should know where to go by itself.

The fix should be simple, in the resonseError part of the interceptor, we just need to set 'prev' search parameter on the location we're redirecting the user to ('/login'). LoginCtrl already knows what to do when a successful login happen when we have a prev parameter. So responseError becomes:

  'responseError': function(response) {
    if (response.status === 401) {
      var previous = $location.path();
      $location.path('/login').search('prev', previous);
      return $q.reject(response);
    }
    else {
      return $q.reject(response);
    }
  }

I don't think the method 3emad proposed would be caught by $routeChangeError listener as this wasn't a route change (in the Angular Route sense).

Wanna create a pull request?

from manshar.

3emad avatar 3emad commented on July 22, 2024

@mkhatib your correct, haven't used http interceptors before.

from manshar.

mkhatib avatar mkhatib commented on July 22, 2024

Wohoo! Thanks @3emad

from manshar.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.