Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8127265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T07:27:56+00:00 2026-06-06T07:27:56+00:00

I have the middleware that allows me to check user auth, here is: function

  • 0

I have the middleware that allows me to check user auth, here is:

function checkAuth(req, res, next) {
 if (!req.session.user_id) {
   res.redirect('/login');
 } else {
    next();
 } 
}

I have the two question about it;

  1. Is it strong user auth checking? or should I check user.id in DB like the follows:

    if (!req.session.user_id) {
       res.redirect('/login');
    } else {
      User.findById(req.session.user_id, function (err, user) {
        if (!user) return res.redirect('/login');
        else return next();
     })
    }
    
  2. If the checking is failed I do redirecting to login page:

     res.redirect('/login');
    

    but if I get an AJAX request I should to send the following (I think)

     res.send(403, 'Permission denied');
    

    so how can I check a type of request and send an appropriate type of response?
    Is it correct approach to do like above?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T07:28:01+00:00Added an answer on June 6, 2026 at 7:28 am

    Checking the session is enough. There is a mapping between the server’s session and the client’s, which is why it’s secure enough. Of course you’re using SSL if you want “absolute” security (but 100% security doesn’t exist).

    Here is how Django/RoR check if the request comes from an AJAX call (converted in node.js code):

    function isXHR( req, res ) {
        return !!req.header( 'HTTP_X_REQUESTED_WITH' ) === 'XMLHttpRequest';
    }
    

    However, that means that the XHR call must include this HTTP header. Most libraries do it (jQuery, Dojo, YUI, …), but if you’re doing manual XHR requests, you must not forget to include it.

    Another way which might suit your needs:

    function isJSON( req, res ) {
        return !!req.header( 'Content-Type' ) === 'application/json';
    }
    

    There, you’re checking for the Content-Type header. If it asks some JSON datas (like most of XHR requests), you send it some JSON datas.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have rack middleware that gets the path: path = env[PATH_INFO] I then check
I have a middleware that checks a session value and redirects depending that value.
I have WSGI middleware that needs to capture the HTTP status (e.g. 200 OK
I have developed middleware that provides RPC functionality to multiple client applications on multiple
I have a middleware that does some processing. On certain conditions it raises an
Using Apache Felix, I have an OSGi component I've authored that wraps some middleware
Here's my problem. I have a middleware web service used by several web clients.
I have some middleware which takes a tuple (of usernames... it only allows usernames
I have a gem that provides some rack middleware, the only way I can
We're using a third-party middleware product that allows us to write code in an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.