Giter VIP home page Giter VIP logo

Comments (5)

saintedlama avatar saintedlama commented on May 24, 2024 1

You could try the new 0.2.1 version that was just published (with undocumented features). This version adds a "createStrategy" static model method that can be used to create a configured LocalStrategy instance.

From 0.2.1 on you can use this code to configure passport

var Account = require('./models/account');

passport.use(Account.createStrategy());

passport.serializeUser(Account.serializeUser());
passport.deserializeUser(Account.deserializeUser());

Passing options to passport-local strategy is done in the createStrategy static method.

from passport-local-mongoose.

impronunciable avatar impronunciable commented on May 24, 2024

+1

from passport-local-mongoose.

saintedlama avatar saintedlama commented on May 24, 2024

Hi,

passport-local-mongoose does only care about the model side of authorization. So when you configure passport-local-mongoose with a field "email" as usernameField then passport-local-mongoose takes care that this field is used when for example authorize() get's called by passport. The mapping part of the form input from req.body to the authorize() method is done by passport-local. And passport-local has no knowledge about the model mapping. So you have two choices to solve this issue:

  1. Configure passport-local's LocalStrategy to the same usernameField as configured in the passport-local-mongoose model
  2. Use the name "username" in your login form as input name

The current situation a bit to complicated and confusing. I'm thinking about a solution to integrate passport-local and passport-local-mongoose a bit better...

from passport-local-mongoose.

impronunciable avatar impronunciable commented on May 24, 2024

I took a look at the code and figured out. Thanks!

from passport-local-mongoose.

saintedlama avatar saintedlama commented on May 24, 2024

Fixed in 0.2.1

from passport-local-mongoose.

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.