DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
View Events Video Library
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Integrating PostgreSQL Databases with ANF: Join this workshop to learn how to create a PostgreSQL server using Instaclustr’s managed service

Mobile Database Essentials: Assess data needs, storage requirements, and more when leveraging databases for cloud and edge applications.

Monitoring and Observability for LLMs: Datadog and Google Cloud discuss how to achieve optimal AI model performance.

Automated Testing: The latest on architecture, TDD, and the benefits of AI and low-code tools.

Related

  • How To Create a Resource Chart in JavaScript
  • TypeScript: Useful Features
  • Tracking Bugs Made Easy With React.js Bug Tracking Tools
  • What Is useContext in React?

Trending

  • A Complete Guide to Open-Source LLMs
  • Understanding Europe's Cyber Resilience Act and What It Means for You
  • Development of Custom Web Applications Within SAP Business Technology Platform
  • Edge Data Platforms, Real-Time Services, and Modern Data Trends
  1. DZone
  2. Coding
  3. JavaScript
  4. Detecting Location Redirects from JavaScript

Detecting Location Redirects from JavaScript

Juri Strumpflohner user avatar by
Juri Strumpflohner
·
Jun. 06, 12 · Interview
Like (0)
Save
Tweet
Share
27.76K Views

Join the DZone community and get the full member experience.

Join For Free
A common scenario for using the HTTP Location response header is during an authentication process where some kind of filter redirects to a login page in case when the user is not or no more authenticated. Handling such redirects from JavaScript turned out to be not so simple as it might initially seem. Stackoverflow has already a post on that and here (or on SO) is how I solved it in the end.

My scenario is basically the following. I have an ISA server which intercepts all of the requests and verifies the user's authentication. In case when the user isn't logged in it responds with a 302 and adds the location header to my login page.

The Initial Approach

In the case of a rich JavaScript client you would then have something like
$(document).ajaxComplete(function(e, xhr, settings){
    if(xhr.status === 302){
        //check for location header and redirect...
    }
});


But unfortunately the browser handles location redirects completely himself, wherefore the ajaxComplete callback won't fire with the 302 status code, but instead it will fire on the location redirect target (when that redirect already happened successfully). As a result, the approach before obviously won't work.

The Solution

The solution is a bit hacky but it works and I didn't found a better one so far (comment if I'm wrong). Basically what you do is to inject a custom header in your Login page for which you then listen on your client-side. The trick is to inject a header like
LoginPage: http://www.mydomain.com/Login
where the url is the one of the invoked Login page due to the location redirect. On the client side you can now check for the presence of the header like
if(xhr.status === 200){
    var loginPageHeader = xhr.getResponseHeader("LoginPage");
    if(loginPageHeader && loginPageHeader !== ""){
        window.location.replace(loginPageHeader);
    }
}

You might wonder why I included the url directly in the header value. The problem is that you have no way of detecting the URL of the redirected request in the ajaxComplete callback. You just get the initial one you started, that is, when you execute a GET /person/1 and you're no more logged in (because the session expired) and the server sends you a 302 redirect to /login, then you'll see the /person/1 as the url in your ajaxComplete callback although the content of the response is the one of your login page. That's why I directly included the url in my custom header.

Here's my explanation on SO: http://stackoverflow.com/a/10717647/50109




 

JavaScript

Published at DZone with permission of Juri Strumpflohner. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • How To Create a Resource Chart in JavaScript
  • TypeScript: Useful Features
  • Tracking Bugs Made Easy With React.js Bug Tracking Tools
  • What Is useContext in React?

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: