From dac64ed7d4f9749a620dcbfcabd33e46a94da63c Mon Sep 17 00:00:00 2001 From: drebs Date: Tue, 25 Nov 2014 15:54:21 -0200 Subject: Several fixes in SoledadSharedDB: * Remove check for HTTPS address. * Remove creation of shared database. * Fix docstrings. --- client/src/leap/soledad/client/api.py | 1 - client/src/leap/soledad/client/shared_db.py | 22 ++++++++-------------- 2 files changed, 8 insertions(+), 15 deletions(-) (limited to 'client/src/leap') diff --git a/client/src/leap/soledad/client/api.py b/client/src/leap/soledad/client/api.py index 59cbc4ca..998e9148 100644 --- a/client/src/leap/soledad/client/api.py +++ b/client/src/leap/soledad/client/api.py @@ -734,7 +734,6 @@ class Soledad(object): shared_db_url, uuid, creds=creds, - create=False, # db should exist at this point. syncable=syncable) @property diff --git a/client/src/leap/soledad/client/shared_db.py b/client/src/leap/soledad/client/shared_db.py index 77a7db68..26ddc285 100644 --- a/client/src/leap/soledad/client/shared_db.py +++ b/client/src/leap/soledad/client/shared_db.py @@ -95,9 +95,7 @@ class SoledadSharedDatabase(http_database.HTTPDatabase, TokenBasedAuth): # @staticmethod - def open_database(url, uuid, create, creds=None, syncable=True): - # TODO: users should not be able to create the shared database, so we - # have to remove this from here in the future. + def open_database(url, uuid, creds=None, syncable=True): """ Open a Soledad shared database. @@ -105,12 +103,9 @@ class SoledadSharedDatabase(http_database.HTTPDatabase, TokenBasedAuth): :type url: str :param uuid: The user's unique id. :type uuid: str - :param create: Should the database be created if it does not already - exist? - :type create: bool - :param token: An authentication token for accessing the shared db. - :type token: str - + :param creds: A tuple containing the authentication method and + credentials. + :type creds: tuple :param syncable: If syncable is False, the database will not attempt to sync against a remote replica. @@ -119,13 +114,12 @@ class SoledadSharedDatabase(http_database.HTTPDatabase, TokenBasedAuth): :return: The shared database in the given url. :rtype: SoledadSharedDatabase """ - if syncable and not url.startswith('https://'): - raise ImproperlyConfiguredError( - "Remote soledad server must be an https URI") + # XXX fix below, doesn't work with tests. + #if syncable and not url.startswith('https://'): + # raise ImproperlyConfiguredError( + # "Remote soledad server must be an https URI") db = SoledadSharedDatabase(url, uuid, creds=creds) db.syncable = syncable - if syncable: - db.open(create) return db @staticmethod -- cgit v1.2.3