Skip to content
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

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open

Hw06 email #5463

wants to merge 12 commits into from

Conversation

WojD89
Copy link

@WojD89 WojD89 commented Aug 4, 2024

No description provided.

Copy link

@KamilMr KamilMr left a 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",
Copy link

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

Copy link

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ą.

Copy link

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 :)

Copy link

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();
Copy link

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) => {
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants