We're a place where coders share, stay up-to-date and grow their careers.
Oh, thanks for the offer... in fact for the same reason, the register doesn´t work ( i will be working on that the next 3 hours).
You can check the public repo here: github
and the passport config
I am getting confused with the async function .save() from mongoose and the async login/logout with passport
you can check it in the user resolver
So far is working...
I have an other questions...
¿How do you know that the user is logged?. Can I check that in a resolver? where is that? in the context?.
With passport session, we had a collection for all those sessions and had access with something like this:
module.exports.isAuthenticated = (req, res, next) => { if (req.isAuthenticated()) { next(); } else { next(createError(401)); } }
a simpel middleware. Can I check for my user if is authenticated??
something like this: context.req.isAuthenticated()
context.req.isAuthenticated()
Yeap, it works, but it restart after changing anything (nodemon).
Btw, checking the context.req object we have something:
sessionStore: MemoryStore { _events: [Object: null prototype] { disconnect: [Function: ondisconnect], connect: [Function: onconnect] }, _eventsCount: 2, _maxListeners: undefined, sessions: [Object: null prototype] { 'cedef8ba-c26e-4995-832a-614e57c3f85c': '{"cookie":{"originalMaxAge":null,"expires":null,"httpOnly":true,"path":"/"},"passport":{"user":"5e557091952b47f3f126a0a5"}}' }, generate: [Function (anonymous)], [Symbol(kCapture)]: false }, sessionID: 'cedef8ba-c26e-4995-832a-614e57c3f85c', session: Session { cookie: { path: '/', _expires: null, originalMaxAge: null, httpOnly: true }, passport: { user: '5e557091952b47f3f126a0a5' } },
Can I store this in a database, like passport use to do with passport.session()
passport.session()
Oh, thanks for the offer... in fact for the same reason, the register doesn´t work ( i will be working on that the next 3 hours).
You can check the public repo here:
github
and the passport config
I am getting confused with the async function .save() from mongoose and the async login/logout with passport
you can check it in the user resolver
So far is working...
I have an other questions...
¿How do you know that the user is logged?. Can I check that in a resolver? where is that? in the context?.
With passport session, we had a collection for all those sessions and had access with something like this:
a simpel middleware.
Can I check for my user if is authenticated??
something like this:
context.req.isAuthenticated()
Yeap, it works, but it restart after changing anything (nodemon).
Btw, checking the context.req object we have something:
Can I store this in a database, like passport use to do with
passport.session()