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

MongoDB auth related issue in MONGO_URI #1478

Closed
smeng9 opened this issue Jul 13, 2022 · 10 comments
Closed

MongoDB auth related issue in MONGO_URI #1478

smeng9 opened this issue Jul 13, 2022 · 10 comments

Comments

@smeng9
Copy link
Contributor

smeng9 commented Jul 13, 2022

Actual Behavior

MONGO_URI's username, password, and authSource in uri are not parsed correctly

https://github.com/pyeve/eve/blob/master/eve/io/mongo/flask_pymongo.py#L76

It uses dbname as authSource, but the authSource should be parsed from options https://pymongo.readthedocs.io/en/stable/api/pymongo/uri_parser.html#pymongo.uri_parser.parse_uri

See URI format https://www.mongodb.com/docs/manual/reference/connection-string/

Environment

  • Python version: 3.10
  • Eve version: 2.0

I am willing to open a PR to resolve the issue. Thanks

@nicolaiarocci
Copy link
Member

hi @smeng9 I'll be happy to review your PR

@micheloe
Copy link

The same thing happens here when MONGO_DBNAME is different from what is specified in the URI via authSource=. The auth source from the URI gets overwritten by MONGO_DBNAME. Workaround is to not use MONGO_URI at all but use MONGO_HOST, MONGO_PORT & MONGO_AUTH_SOURCE with MONGO_USERNAME and MONGO_PASSWORD together with MONGO_DBNAME

@rafrafek
Copy link

rafrafek commented Sep 2, 2022

Hello All,

I'm using Atlas free and it requires srv in URI. Since there is a problem with URI in Eve, how can I stop using URI? Where should I put srv without the URI?

Thanks!

@rafrafek
Copy link

rafrafek commented Sep 2, 2022

I've ran into this issue today when learning Eve.

Eve changes authSource from default admin to eve. I've ran debugger and check step-by-step what is the difference between connecting with bare pymongo and connecting with Eve. There is only one difference: source set to eve. I don't know how it is being set. It is not set by my code and there is no authSource="eve" in Eve sources [1]. Eve changes connection parameters in a way it can no longer authenticate. There is no hint in the documentation that setting authSource in URI does not work.

URI below works without problems when using pymongo:

mongodb+srv://myName:myPassword@cluster.abcd123.mongodb.net/?authSource=admin

But Eve changes it under the hood to:

mongodb+srv://myName:myPassword@cluster.abcd123.mongodb.net/?authSource=eve

Edit:
[1] I found it is being set from __package__ variable value.

I've made some changes to make this comment look less offensive. Sorry guys for my bad attitude yesterday. I really appreciate this project and your hard work.

@micheloe
Copy link

micheloe commented Sep 2, 2022 via email

@rafrafek
Copy link

rafrafek commented Sep 2, 2022

I have an idea that maybe we could inject MongoClient instance into Eve. In that way we can move responsibility of handling mongodb connection from Eve to pymongo. It would fix this issue and perhaps prevent other connection issues in the future.

It could be used in settings.py like this:

from pymongo import MongoClient

MONGO_CLIENT = MongoClient("mongodb+srv://...")

@nicolaiarocci
Copy link
Member

Hi all, I just merged #1482. Can you please check current master and confirm if it fixes the problem for you?

@rafrafek
Copy link

rafrafek commented Sep 3, 2022

Hello Nicola,

Yes, it fixes the issue immediately. Now I can specify authSource and it is being recognized. The second amazing fact is, I don't need to specify authSource and it is set to admin. I think it is taken from DNS thanks to srv.

It looks like this old issue is resolved. Thanks!

Can somebody paste link to this solution here in discussion from 2018: https://groups.google.com/g/python-eve/c/9eJjCSy7wy0 ?

@micheloe
Copy link

micheloe commented Oct 11, 2022 via email

@rafrafek
Copy link

@micheloe I don't know if Eve supported srv or authSource taken from URI in the past, but I think the issue is now resolved thanks to #1482 and there is no need to downgrade to 1.1.5.

@smeng9 smeng9 closed this as completed Apr 24, 2023
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 a pull request may close this issue.

4 participants