12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- # ============================================================================
- # This file is part of Pwman3.
- #
- # Pwman3 is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License, version 2
- # as published by the Free Software Foundation;
- #
- # Pwman3 is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with Pwman3; if not, write to the Free Software
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- # ============================================================================
- # Copyright (C) 2015 Oz Nahum Tiram <nahumoz@gmail.com>
- # ============================================================================
- from pwman.data.database import Database, __DB_FORMAT__
- import pymongo
- class MongoDB(Database):
- @classmethod
- def check_db_version(cls, dburi):
- pass
- def __init__(self, mongodb_uri, dbformat=__DB_FORMAT__):
- self.uri = mongodb_uri
- def _open(self):
- self._con = pymongo.Connection(self.uri)
- def getnodes(self, ids):
- pass
- def listnodes(self, filter=None):
- pass
- def add_node(self, node):
- pass
- def listtags(self):
- pass
- def editnode(self, nid, **kwargs):
- pass
- def removenodes(self, nid):
- pass
- def fetch_crypto_info(self):
- pass
- def savekey(self, key):
- pass
- def loadkey(self):
- pass
- def close(self):
- pass
|