Vue SSR - Router beforeEach guard












0















I'm trying to setup multiple middlewares on Vue Routes with beforeEach hooks.



Here's a middleware login which decodes the token from localStorage:



export default function login (router, store) {

router.beforeEach((to, from, next) => {

if(typeof localStorage === 'undefined')
next();

else {
let token = localStorage.getItem('token');

if (token) {
let user = parseJWT(token)

const stores = [
store.dispatch('user/userState', {token: token, userId: user.id}),
store.dispatch('userProfile/userProfile', {avatar: user.avatar, username: user.username}),
store.dispatch('userProfile/userEmail', user.email),
]

Promise.all(stores)
.then(() => {
next()
})
}
else
next()
}

})

}

function parseJWT (token) {
let base64Url = token.split('.')[1];
let base64 = base64Url.replace(/-/g, '+').replace(/_/g, '/');
return JSON.parse(window.atob(base64));
}


Here's the middleware which actually guards routes:



export default function authorizationRequired (router, store) {
router.beforeEach((to, from, next) => {

let requiresAuth = to.matched.some(record => record.meta.requiresAuth);

let noAuth = to.matched.some(record => record.meta.noAuth);

let login = store.getters['user/isLoggedIn'];

console.log('login: ', login)


if (requiresAuth) {

if (login) {
next();
}
else {
next({path: '/login'})
}
}
else if (noAuth) {

if(!login) {
next ();
}
else {
next({path: '/'})
}

}
else
next();

})
}


Here's my problem:



Whenever I login into my application, everything works fine except when I visit /login page directly, my Vuex states turns out to be undefined allowing me to access page despite having a token in localStorage.



This happens for all the noAuth guards.



After a lot of debugging efforts, I found out that it's because Vue won't execute middlewares again if visiting URL directly. And moreover, I was being redirected to and fro /login when trying to visit any requiresAuth page directly.



Since my code contains the following lines:



if(typeof localStorage === 'undefined') //localStorage won't work server side
next();


My server can't check for token and use it for Vuex states.



Is there any way to avoid unnecessary redirects and make Vuex work whenever I visit pages directly?



Suggestions will be appreciated!



Thanks in Advance










share|improve this question



























    0















    I'm trying to setup multiple middlewares on Vue Routes with beforeEach hooks.



    Here's a middleware login which decodes the token from localStorage:



    export default function login (router, store) {

    router.beforeEach((to, from, next) => {

    if(typeof localStorage === 'undefined')
    next();

    else {
    let token = localStorage.getItem('token');

    if (token) {
    let user = parseJWT(token)

    const stores = [
    store.dispatch('user/userState', {token: token, userId: user.id}),
    store.dispatch('userProfile/userProfile', {avatar: user.avatar, username: user.username}),
    store.dispatch('userProfile/userEmail', user.email),
    ]

    Promise.all(stores)
    .then(() => {
    next()
    })
    }
    else
    next()
    }

    })

    }

    function parseJWT (token) {
    let base64Url = token.split('.')[1];
    let base64 = base64Url.replace(/-/g, '+').replace(/_/g, '/');
    return JSON.parse(window.atob(base64));
    }


    Here's the middleware which actually guards routes:



    export default function authorizationRequired (router, store) {
    router.beforeEach((to, from, next) => {

    let requiresAuth = to.matched.some(record => record.meta.requiresAuth);

    let noAuth = to.matched.some(record => record.meta.noAuth);

    let login = store.getters['user/isLoggedIn'];

    console.log('login: ', login)


    if (requiresAuth) {

    if (login) {
    next();
    }
    else {
    next({path: '/login'})
    }
    }
    else if (noAuth) {

    if(!login) {
    next ();
    }
    else {
    next({path: '/'})
    }

    }
    else
    next();

    })
    }


    Here's my problem:



    Whenever I login into my application, everything works fine except when I visit /login page directly, my Vuex states turns out to be undefined allowing me to access page despite having a token in localStorage.



    This happens for all the noAuth guards.



    After a lot of debugging efforts, I found out that it's because Vue won't execute middlewares again if visiting URL directly. And moreover, I was being redirected to and fro /login when trying to visit any requiresAuth page directly.



    Since my code contains the following lines:



    if(typeof localStorage === 'undefined') //localStorage won't work server side
    next();


    My server can't check for token and use it for Vuex states.



    Is there any way to avoid unnecessary redirects and make Vuex work whenever I visit pages directly?



    Suggestions will be appreciated!



    Thanks in Advance










    share|improve this question

























      0












      0








      0








      I'm trying to setup multiple middlewares on Vue Routes with beforeEach hooks.



      Here's a middleware login which decodes the token from localStorage:



      export default function login (router, store) {

      router.beforeEach((to, from, next) => {

      if(typeof localStorage === 'undefined')
      next();

      else {
      let token = localStorage.getItem('token');

      if (token) {
      let user = parseJWT(token)

      const stores = [
      store.dispatch('user/userState', {token: token, userId: user.id}),
      store.dispatch('userProfile/userProfile', {avatar: user.avatar, username: user.username}),
      store.dispatch('userProfile/userEmail', user.email),
      ]

      Promise.all(stores)
      .then(() => {
      next()
      })
      }
      else
      next()
      }

      })

      }

      function parseJWT (token) {
      let base64Url = token.split('.')[1];
      let base64 = base64Url.replace(/-/g, '+').replace(/_/g, '/');
      return JSON.parse(window.atob(base64));
      }


      Here's the middleware which actually guards routes:



      export default function authorizationRequired (router, store) {
      router.beforeEach((to, from, next) => {

      let requiresAuth = to.matched.some(record => record.meta.requiresAuth);

      let noAuth = to.matched.some(record => record.meta.noAuth);

      let login = store.getters['user/isLoggedIn'];

      console.log('login: ', login)


      if (requiresAuth) {

      if (login) {
      next();
      }
      else {
      next({path: '/login'})
      }
      }
      else if (noAuth) {

      if(!login) {
      next ();
      }
      else {
      next({path: '/'})
      }

      }
      else
      next();

      })
      }


      Here's my problem:



      Whenever I login into my application, everything works fine except when I visit /login page directly, my Vuex states turns out to be undefined allowing me to access page despite having a token in localStorage.



      This happens for all the noAuth guards.



      After a lot of debugging efforts, I found out that it's because Vue won't execute middlewares again if visiting URL directly. And moreover, I was being redirected to and fro /login when trying to visit any requiresAuth page directly.



      Since my code contains the following lines:



      if(typeof localStorage === 'undefined') //localStorage won't work server side
      next();


      My server can't check for token and use it for Vuex states.



      Is there any way to avoid unnecessary redirects and make Vuex work whenever I visit pages directly?



      Suggestions will be appreciated!



      Thanks in Advance










      share|improve this question














      I'm trying to setup multiple middlewares on Vue Routes with beforeEach hooks.



      Here's a middleware login which decodes the token from localStorage:



      export default function login (router, store) {

      router.beforeEach((to, from, next) => {

      if(typeof localStorage === 'undefined')
      next();

      else {
      let token = localStorage.getItem('token');

      if (token) {
      let user = parseJWT(token)

      const stores = [
      store.dispatch('user/userState', {token: token, userId: user.id}),
      store.dispatch('userProfile/userProfile', {avatar: user.avatar, username: user.username}),
      store.dispatch('userProfile/userEmail', user.email),
      ]

      Promise.all(stores)
      .then(() => {
      next()
      })
      }
      else
      next()
      }

      })

      }

      function parseJWT (token) {
      let base64Url = token.split('.')[1];
      let base64 = base64Url.replace(/-/g, '+').replace(/_/g, '/');
      return JSON.parse(window.atob(base64));
      }


      Here's the middleware which actually guards routes:



      export default function authorizationRequired (router, store) {
      router.beforeEach((to, from, next) => {

      let requiresAuth = to.matched.some(record => record.meta.requiresAuth);

      let noAuth = to.matched.some(record => record.meta.noAuth);

      let login = store.getters['user/isLoggedIn'];

      console.log('login: ', login)


      if (requiresAuth) {

      if (login) {
      next();
      }
      else {
      next({path: '/login'})
      }
      }
      else if (noAuth) {

      if(!login) {
      next ();
      }
      else {
      next({path: '/'})
      }

      }
      else
      next();

      })
      }


      Here's my problem:



      Whenever I login into my application, everything works fine except when I visit /login page directly, my Vuex states turns out to be undefined allowing me to access page despite having a token in localStorage.



      This happens for all the noAuth guards.



      After a lot of debugging efforts, I found out that it's because Vue won't execute middlewares again if visiting URL directly. And moreover, I was being redirected to and fro /login when trying to visit any requiresAuth page directly.



      Since my code contains the following lines:



      if(typeof localStorage === 'undefined') //localStorage won't work server side
      next();


      My server can't check for token and use it for Vuex states.



      Is there any way to avoid unnecessary redirects and make Vuex work whenever I visit pages directly?



      Suggestions will be appreciated!



      Thanks in Advance







      vue.js vuejs2 vuex vue-router vue-ssr






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 '18 at 22:25









      Dev AggarwalDev Aggarwal

      127111




      127111
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53402516%2fvue-ssr-router-beforeeach-guard%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53402516%2fvue-ssr-router-beforeeach-guard%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How to change which sound is reproduced for terminal bell?

          Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

          Can I use Tabulator js library in my java Spring + Thymeleaf project?