diff options
author | drebs <drebs@leap.se> | 2012-12-24 13:02:47 -0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2012-12-24 13:02:47 -0200 |
commit | 408436837d5768444566f69205127a815bca699b (patch) | |
tree | 1c8eb49469f125dfe35e9443932b393e2a0703a0 /__init__.py | |
parent | f47ae5cef2cbf5b0654b158ed02a621e9c9d1127 (diff) |
Add basic doc methods mapping for local encrypted storage.
Diffstat (limited to '__init__.py')
-rw-r--r-- | __init__.py | 48 |
1 files changed, 41 insertions, 7 deletions
diff --git a/__init__.py b/__init__.py index f0d1cbb9..3ed82ca7 100644 --- a/__init__.py +++ b/__init__.py @@ -146,20 +146,54 @@ class Soledad(object): # Document storage/retrieval and sync #------------------------------------------------------------------------- - def put(self, doc_id, data): + def put_doc(self, doc): """ - Store a document in the local encrypted database. + Update a document in the local encrypted database. """ - pass + return self._db.put_doc(doc) - def get(self, doc_id): + def delete_doc(self, doc): + """ + Delete a document from the local encrypted database. + """ + return self._db.delete_doc(doc) + + def get_doc(self, doc_id, include_deleted=False): """ Retrieve a document from the local encrypted database. """ - pass + return self._db.get_doc(doc_id, include_deleted=include_deleted) + + def get_docs(self, doc_ids, check_for_conflicts=True, + include_deleted=False): + """ + Get the content for many documents. + """ + return self._db.get_docs(doc_ids, + check_for_conflicts=check_for_conflicts, + include_deleted=include_deleted) + + def create_doc(self, content, doc_id=None): + """ + Create a new document in the local encrypted database. + """ + return self._db.create_doc(content, doc_id=doc_id) + + def get_doc_conflicts(self, doc_id): + """ + Get the list of conflicts for the given document. + """ + return self._db.get_doc_conflicts(doc_id) - def sync(self): + def resolve_doc(self, doc, conflicted_doc_revs): + """ + Mark a document as no longer conflicted. + """ + return self._db.resolve_doc(doc, conflicted_doc_revs) + + def sync(self, url): """ Synchronize the local encrypted database with LEAP server. """ - pass + # TODO: create authentication scheme for sync with server. + return self._db.sync(url, creds=None, autocreate=True) |