-
Notifications
You must be signed in to change notification settings - Fork 7.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hw06 email #5463
base: master
Are you sure you want to change the base?
Hw06 email #5463
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Zatwierdzam bo kod który masz spełnia oczekiwania. Kilka uwag też napisałem. Wygląda to dobrze. To nad czym musisz popracować trochę to nad gitem, mergowaniem itp. Bo np w tym pr masz zmiany w wielu zadań a powinienem widzieć tylko te które dotyczą wysyłania email.
Więc to na przyszłość :)
secure: false, | ||
auth: { | ||
user: "postmaster@sandbox9cab1fdc00254a859bf4b329af9215b1.mailgun.org", | ||
pass: "dec8cecc1a727f073dc6b092162d0b88-afce6020-884407cb", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To przenieś sobie do .env
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mailgun moze Ci zablokować możliwość wysyłania emails jeśli to są prawdziwe dane. Spotkałem się z tym że tak robią.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tu coś jest nie tak, zobacz to nie jest contacts.js schema ale userSchema :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Zrobiłeś tutaj sobie duplikat. Moze usun jeden i zobacz czy masz contact schema.
|
||
const newUser = new User({ email, avatarURL, verificationToken }); | ||
await newUser.setPassword(password); | ||
await newUser.save(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
W sytuacji, zapisanie użytkownika powinno nastąpić dopiero po wysłaniu emaila, kolejność operacji jest kluczowa. Pierwszeństwo wysłania wiadomości email przed zapisem do bazy danych zapewnia, że użytkownik zostanie zapisany tylko wtedy, gdy email zostanie pomyślnie wysłany. Taka kolejność może być wymagana np. w sytuacjach, gdzie wysłanie emaila jest krytyczne i niepowodzenie powinno zatrzymać proces rejestracji.
W tym przypadku najpierw powinniśmy zadbać o poprawność wysłania wiadomości, a następnie przystąpić do zapisu użytkownika. Taka kolejność minimalizuje ryzyko, że użytkownik zostanie zapisany bez powiadomienia go o tym przez email.
} | ||
}); | ||
|
||
router.post("/login", async (req, res) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tu jeszcze powinieneś sprawdzić czy user.verify jest true czy nie. I jeśli true to powiedzieć że nie można się zalogować bo trzeba zweryfikować email.
No description provided.