Trova l'oggetto documento secondario in un altro db

Aug 15 2020

Sto cercando di controllare ogni e-mail dei partecipanti e vedere se sono un utente registrato. In caso contrario, invierò loro un'e-mail (non ancora codificata, lo farò in seguito).

Ecco lo schema dell'evento e dell'utente:

const UserSchema = new Schema({
    name: {
        type: String,
        required: true
    },
    email: {
        type: String,
        required: true
    },
    password: {
        type: String,
        required: true
    },
    date: {
        type: Date,
        default: Date.now
    }
});
     
const Event = new Schema({
    title: {
        type: String,
        required: true
    },
    user: {
        type: mongoose.Schema.Types.ObjectId,
        ref: 'users'
    },
    attendees:[
     {email: {
        type: String,
        required: true
     },
     name: {
        type: String,
        required: true
     },
     status: {
     type: String
     }}
   ]
}); 

router.post('/', auth, async (req, res) => {
  const {title,
    attendees
  } = req.body

  if (!title) {
    return res.status(400).json({ msg: 'Please enter a title' });
  }

  try{  
    const newEvent = new Event({
        title,
        user: req.user.id,
        attendees:  attendees.map(x => ({
          email: x.email,
          name: x.name,
          status: x.status,
        })),
    });

const attendeeExists = await User.findOne({"attendees.email":email});
if (!attendeeExists) throw Error("User doesn't exist. Send email");

Le ultime due righe mi danno un errore: l'email non è definita. Non sono sicuro di cosa mi sto perdendo.

Funziona nelle rotte utente:

const user = await User.findOne({ email });

Risposte

morethan1 Aug 18 2020 at 15:09

Grazie @ambianBeing, la tua soluzione mi ha aiutato a ottenere un modello funzionante.

const email = attendees.map((a) => a.email);
const attendeesFound = await User.find({email});
ambianBeing Aug 17 2020 at 22:15

Per il controllo qualsiasi di found-mail del partecipante, .find()con $inpuò essere utilizzato which'll restituire gli hanno trovato con una qualsiasi delle identificazioni del email.

/*collect all emails to test*/
const emails = attendees.map((a) => a.email);
const attendeesFound = await User.find({ "email": { $in: emails } });

Un'altra sintassi di Mongoose che fa la stessa cosa di cui sopra:

/*collect all emails to test*/
const emails = attendees.map((a) => a.email);
const attendeesFound = await User.find({}).where("email").in(emails);