eventman/backend.py

200 lines
6.5 KiB
Python
Raw Normal View History

2015-03-22 08:58:25 +01:00
"""Event Man(ager) database backend
2015-03-15 23:08:50 +01:00
2015-03-22 11:07:08 +01:00
Classes and functions used to manage events and attendees database.
2015-03-22 09:36:32 +01:00
Copyright 2015 Davide Alberani <da@erlug.linux.it>
RaspiBO <info@raspibo.org>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
2015-03-15 23:08:50 +01:00
"""
2015-03-21 09:29:01 +01:00
import pymongo
2015-03-21 20:33:23 +01:00
from bson.objectid import ObjectId
2015-03-21 09:29:01 +01:00
class EventManDB(object):
2015-03-22 08:58:25 +01:00
"""MongoDB connector."""
2015-03-21 18:29:19 +01:00
db = None
2015-03-21 09:29:01 +01:00
connection = None
def __init__(self, url=None, dbName='eventman'):
2015-03-22 08:58:25 +01:00
"""Initialize the instance, connecting to the database.
:param url: URL of the database
:type url: str (or None to connect to localhost)
"""
2015-03-21 09:29:01 +01:00
self._url = url
self._dbName = dbName
self.connect(url)
def connect(self, url=None, dbName=None):
2015-03-22 08:58:25 +01:00
"""Connect to the database.
:param url: URL of the database
:type url: str (or None to connect to localhost)
:return: the database we're connected to
:rtype: :class:`~pymongo.database.Database`
"""
2015-03-21 18:29:19 +01:00
if self.db is not None:
return self.db
2015-03-21 09:29:01 +01:00
if url:
self._url = url
if dbName:
self._dbName = dbName
self.connection = pymongo.MongoClient(self._url)
self.db = self.connection[self._dbName]
return self.db
def toID(self, _id):
"""Convert a string to a MongoDB ID.
:param _id: string to convert to :class:`~bson.objectid.ObjectId`
:type _id: str
:return: MongoDB ID
:rtype: :class:`~bson.objectid.ObjectId`
"""
if not isinstance(_id, ObjectId):
_id = ObjectId(_id)
return _id
2015-03-21 20:33:23 +01:00
def get(self, collection, _id):
2015-03-22 08:58:25 +01:00
"""Get a single document with the specified `_id`.
:param collection: search the document in this collection
:type collection: str
:param _id: unique ID of the document
:type _id: str or :class:`~bson.objectid.ObjectId`
:return: the document with the given `_id`
:rtype: dict
"""
_id = self.toID(_id)
2015-03-21 20:33:23 +01:00
results = self.query(collection, {'_id': _id})
2015-03-21 18:29:19 +01:00
return results and results[0] or {}
def query(self, collection, query=None):
2015-03-22 08:58:25 +01:00
"""Get multiple documents matching a query.
:param collection: search for documents in this collection
:type collection: str
:param query: search for documents with those attributes
:type query: dict or None
:return: list of matching documents
:rtype: list
"""
2015-03-21 18:29:19 +01:00
db = self.connect()
2015-03-21 20:33:23 +01:00
query = query or {}
if'_id' in query:
query['_id'] = self.toID(query['_id'])
2015-03-21 20:33:23 +01:00
results = list(db[collection].find(query))
2015-03-21 18:29:19 +01:00
for result in results:
result['_id'] = str(result['_id'])
return results
def add(self, collection, data):
2015-03-22 08:58:25 +01:00
"""Insert a new document.
:param collection: insert the document in this collection
:type collection: str
:param data: the document to store
:type data: dict
:return: the document, as created in the database
:rtype: dict
"""
2015-03-21 18:29:19 +01:00
db = self.connect()
_id = db[collection].insert(data)
2015-03-21 20:33:23 +01:00
return self.get(collection, _id)
2015-03-21 18:29:19 +01:00
def insertOne(self, collection, data):
"""Insert a document, avoiding duplicates.
:param collection: update a document in this collection
:type collection: str
:param data: the document information to store
:type data: dict
:return: True if the document was already present
:rtype: bool
"""
db = self.connect()
ret = db[collection].update(data, {'$set': data}, upsert=True)
return ret['updatedExisting']
2015-03-21 20:33:23 +01:00
def update(self, collection, _id, data):
2015-03-22 08:58:25 +01:00
"""Update an existing document.
:param collection: update a document in this collection
:type collection: str
:param _id: unique ID of the document to be updatd
:type _id: str or :class:`~bson.objectid.ObjectId`
:param data: the updated information to store
:type data: dict
:return: the document, after the update
:rtype: dict
"""
2015-03-21 09:29:01 +01:00
db = self.connect()
2015-03-21 20:33:23 +01:00
data = data or {}
if '_id' in data:
del data['_id']
db[collection].update({'_id': self.toID(_id)}, {'$set': data})
2015-03-21 20:33:23 +01:00
return self.get(collection, _id)
2015-03-15 23:08:50 +01:00
2015-03-29 23:47:59 +02:00
def merge(self, collection, data, searchBy):
2015-03-30 21:31:09 +02:00
"""Update an existing document.
:param collection: update a document in this collection
:type collection: str
:param data: the document to store or merge with an existing one
:type data: dict
:return: a tuple with a boolean (True if an existing document was updated, and the _id of the document)
:rtype: tuple
"""
2015-03-29 23:47:59 +02:00
db = self.connect()
_or = []
for searchPattern in searchBy:
try:
_or.append(dict([(k, data[k]) for k in searchPattern]))
except KeyError:
continue
if not _or:
2015-03-30 21:31:09 +02:00
return False, None
ret = db[collection].update({'$or': _or}, {'$set': data}, upsert=True)
_id = ret.get('upserted')
if _id is None:
newDoc = db[collection].find_one(data)
if newDoc:
_id = newDoc['_id']
return ret['updatedExisting'], _id
2015-03-29 23:47:59 +02:00
2015-03-22 08:58:25 +01:00
def delete(self, collection, _id_or_query=None, force=False):
"""Remove one or more documents from a collection.
:param collection: search the documents in this collection
:type collection: str
:param _id_or_query: unique ID of the document or query to match multiple documents
:type _id_or_query: str or :class:`~bson.objectid.ObjectId` or dict
:param force: force the deletion of all documents, when `_id_or_query` is empty
:type force: bool
"""
if not _id_or_query and not force:
return
db = self.connect()
if not isinstance(_id_or_query, dict):
_id_or_query = self.toID(_id_or_query)
2015-03-22 08:58:25 +01:00
db[collection].remove(_id_or_query)