give option in connect_database_from_config to connect to a pymongo.Connection
This commit is contained in:
parent
dab0d24d98
commit
f92bea33c7
@ -14,24 +14,41 @@
|
|||||||
# You should have received a copy of the GNU Affero General Public License
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import pymongo
|
||||||
import mongokit
|
import mongokit
|
||||||
from paste.deploy.converters import asint
|
from paste.deploy.converters import asint
|
||||||
from mediagoblin.db import models
|
from mediagoblin.db import models
|
||||||
|
|
||||||
|
|
||||||
def connect_database_from_config(app_config):
|
def connect_database_from_config(app_config, use_pymongo=False):
|
||||||
"""Connect to the main database, take config from app_config"""
|
"""
|
||||||
|
Connect to the main database, take config from app_config
|
||||||
|
|
||||||
|
Optionally use pymongo instead of mongokit for the connection.
|
||||||
|
"""
|
||||||
port = app_config.get('db_port')
|
port = app_config.get('db_port')
|
||||||
if port:
|
if port:
|
||||||
port = asint(port)
|
port = asint(port)
|
||||||
connection = mongokit.Connection(
|
|
||||||
app_config.get('db_host'), port)
|
if use_pymongo:
|
||||||
|
connection = pymongo.Connection(
|
||||||
|
app_config.get('db_host'), port)
|
||||||
|
else:
|
||||||
|
connection = mongokit.Connection(
|
||||||
|
app_config.get('db_host'), port)
|
||||||
return connection
|
return connection
|
||||||
|
|
||||||
def setup_connection_and_db_from_config(app_config):
|
def setup_connection_and_db_from_config(app_config, use_pymongo=False):
|
||||||
connection = connect_database_from_config(app_config)
|
"""
|
||||||
|
Setup connection and database from config.
|
||||||
|
|
||||||
|
Optionally use pymongo instead of mongokit.
|
||||||
|
"""
|
||||||
|
connection = connect_database_from_config(app_config, use_pymongo)
|
||||||
database_path = app_config.get('db_name', 'mediagoblin')
|
database_path = app_config.get('db_name', 'mediagoblin')
|
||||||
db = connection[database_path]
|
db = connection[database_path]
|
||||||
models.register_models(connection)
|
|
||||||
# Could configure indexes here on db
|
if not use_pymongo:
|
||||||
|
models.register_models(connection)
|
||||||
|
|
||||||
return (connection, db)
|
return (connection, db)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user