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

Custom MongoDB Document Storage #604

Closed
anishanne opened this issue Aug 26, 2020 · 6 comments
Closed

Custom MongoDB Document Storage #604

anishanne opened this issue Aug 26, 2020 · 6 comments
Labels
question Ask how to do something or how something works stale Did not receive any activity for 60 days

Comments

@anishanne
Copy link
Contributor

Your question
How do I store custom data with the MongoDB document?

What are you trying to do
I'm trying to store custom data with the document in the users collection

@anishanne anishanne added the question Ask how to do something or how something works label Aug 26, 2020
@IRediTOTO
Copy link

:D Me too, many people ask for this. Keep watching here for a time

@anishanne
Copy link
Contributor Author

Mmh alright. I was experimenting with callbacks and such but that isn't getting too far. Only solution I have so far I sis to get the csrf token (or however its spelled), making a requesting using that, and having the DB find the user document, get the ID and then match that to another document in the "data" collection.

@iaincollins
Copy link
Member

You can use the MongoDB API to access the database.

If you want to extend the built-in models used with the default adapter, there is a tutorial on how to do that.

Note: Additional fields cannot currently be captured at login, they can only be captured after an account has been created.

This is something that might change in future - I'm considering something like returning a user object from the signIn callback (e.g. Promise.resolve(user)) which could be used to extend or customise the user object when it is created.

If you want to capture additional fields after sign in, you can use the newUser page or add client logic to force a modal or redirect to provide this information after sign up, before the user can use the site. If it's part of their profile, you could also automatically persist it to another table using a database call in the signIn callback or from an event.

@anishanne
Copy link
Contributor Author

What would be the best way to query the DB for a user? I've seen we can access the access token (from getSession()) and csrfToken (from getcCsrfToken). However, I can't find where the csrfToken is stored in the DB. Would it be safe to just stick with the access token?

@stale
Copy link

stale bot commented Dec 5, 2020

Hi there! It looks like this issue hasn't had any activity for a while. It will be closed if no further activity occurs. If you think your issue is still relevant, feel free to comment on it to keep ot open. Thanks!

@stale stale bot added the wontfix This will not be worked on label Dec 5, 2020
@balazsorban44 balazsorban44 added stale Did not receive any activity for 60 days and removed wontfix This will not be worked on labels Dec 5, 2020
@stale
Copy link

stale bot commented Dec 12, 2020

Hi there! It looks like this issue hasn't had any activity for a while. To keep things tidy, I am going to close this issue for now. If you think your issue is still relevant, just leave a comment and I will reopen it. (Read more at #912) Thanks!

@stale stale bot closed this as completed Dec 12, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Ask how to do something or how something works stale Did not receive any activity for 60 days
Projects
None yet
Development

No branches or pull requests

4 participants