Giter Site home page Giter Site logo

Comments (4)

swill avatar swill commented on May 31, 2024

I was able to get this to work as needed by hacking the mongodb_backend.py file and changing it to this:

# added optional 'username' and 'password' in constructor
class MongoDBBackend(Backend):
    def __init__(self, db_name='cork', hostname='localhost', port=27017, initialize=False, username=None, password=None):
        """Initialize MongoDB Backend"""
        connection = MongoClient(host=hostname, port=port)
        db = connection[db_name]
        # if username and password are present than authenticate...
        if username and password:
            db.authenticate(username, password)
        self.users = MongoMultiValueTable('users', 'login', db.users)
        self.pending_registrations = MongoMultiValueTable(
            'pending_registrations',
            'pending_registration',
            db.pending_registrations
        )
        self.roles = MongoSingleValueTable('roles', 'role', db.roles)

        if initialize:
            self._initialize_storage()

from bottle-cork.

FedericoCeratto avatar FedericoCeratto commented on May 31, 2024

MongoDB supports URIs in the "host" parameter as in:
http://api.mongodb.org/python/current/examples/authentication.html

Given that the "hostname" parameter in MongoDBBackend is simply passed to MongoClient as "host", you should be already able to perform authentication.

Example:
uri = "mongodb://admin:admin@localhost/"
mb = MongoDBBackend(hostname=uri)

Does that work for you? Certainly "hostname" is a misleading name for an URI, I'll update it.

from bottle-cork.

swill avatar swill commented on May 31, 2024

That does not work. That results in the following:

Traceback (most recent call last):
File "server.py", line 94, in
port=auth_db_port
File "build/bdist.macosx-10.9-intel/egg/cork/mongodb_backend.py", line 141, in init
File "/Library/Python/2.7/site-packages/pymongo/mongo_client.py", line 369, in init
raise ConfigurationError(str(exc))
pymongo.errors.ConfigurationError: command SON([('authenticate', 1), ('user', u'user_admin'), ('nonce', u'2cbbb43173e169de'), ('key', u'4b8df11693f429caa4e3cd506e241470')]) failed: auth fails

from bottle-cork.

swill avatar swill commented on May 31, 2024

I will just stick with my two line modification for now because it works perfectly and has no other impact on the code.

from bottle-cork.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.