Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-31 | [bug] fix deprecated multibackend call | Kali Kaneko | |
2017-05-08 | [refactor] _database -> _db | Victor Shyba | |
2017-05-04 | [bug] remove enum dependency | drebs | |
2017-05-04 | [doc] add attachments documentation | drebs | |
2017-05-04 | [refactor] improve readability on _document | Victor Shyba | |
2017-05-04 | [refactor] use mkdir_p from leap.common instead | Victor Shyba | |
2017-05-02 | [feature] add and integrate DELETE to blobs server | Victor Shyba | |
Add a DELETE method for blobs server and integrate it into client's BlobManager. - Resolves: #8846 | |||
2017-05-01 | [feature] delete method on blob sqlcipher backend | Victor Shyba | |
- Related: #8846 | |||
2017-05-01 | [refactor] merge refactor from drebs | Victor Shyba | |
2017-05-01 | [bug] encode key before using it in local blobs storage | drebs | |
2017-05-01 | [refactor] create client _database module | drebs | |
2017-05-01 | [feat] add attachments api | drebs | |
2017-05-01 | [bug] fail locally if blob exists | Victor Shyba | |
We can't let the local DB try an isertion before making sure doc isn't already there. - Resolves: #8845 | |||
2017-04-24 | [bug] fix improper re-raising of exception | Kali Kaneko | |
it was passing way too many arguments in py2. - Resolves: #8843 | |||
2017-04-19 | [test] tune parameters for asynchronous sqlcipher access | drebs | |
When hundreds of concurrent document creations are spawned during tests, test runs in slower machines may fail with "db is locked" error. Increasing the timeout and number of retries in the sqlcipher adbapi level may help avoiding that. | |||
2017-04-19 | [bug] return empty local_list instead of None | Victor Shyba | |
2017-04-19 | [bug] local.put closes fd, return from local.get instead | Victor Shyba | |
2017-04-19 | [bug] adapt blob size to fake size from #8758 | Victor Shyba | |
Issue #8758 rounded doc size considering we would add some kind of padding to the document. Since we arent removing the pad, this commit makes the client discover the size from the decrypted amount. Proper padding and strip should be done in the future. - Related: #8758 - Related: #8814 | |||
2017-04-19 | [feature] fetch new blobs from server | Victor Shyba | |
Check what server has, what we have, compare, fetch missing. - Related: #8808 | |||
2017-04-19 | [feature] add send_missing to cli | Victor Shyba | |
- Related: #8807 | |||
2017-04-19 | [feature] add send_missing to send pending uploads | Victor Shyba | |
This method will gather a list of local docs and a list of remote docs, compare them and send docs which server doesn't have. - Related: #8807 | |||
2017-04-10 | [refactor] use fixed rev and remove doc_id (blobs) | Victor Shyba | |
doc_id wasn't being stored, loaded or used anywhere except for authentication. This commit removes it and uses a fixed value for rev since blobs is supposed to be immutable. - Resolves: #8813 | |||
2017-04-04 | [docs] add docstrings to _get_rounded_size | Victor Shyba | |
2017-04-04 | [style] fix wrong identation | Victor Shyba | |
2017-04-04 | [bug] use soledad_assert instead of assert | Victor Shyba | |
2017-04-04 | [docs] improve docstrings and comments from review | Victor Shyba | |
2017-04-04 | [feature] add list to _blobs cli | Victor Shyba | |
2017-04-04 | [refactor] list is remote_list, avoiding confusion | Victor Shyba | |
2017-04-04 | [feature] add listing to local blob db | Victor Shyba | |
2017-04-04 | [feature] add blobs listing | Victor Shyba | |
2017-04-04 | [refactor] adds a PreamblePipe for preamble download | Victor Shyba | |
Downloading until there is a space then splitting the content was a mess. Extracted this behaviour out of DecrypterBuffer into a new component so it eases testing by introducing a single responsibility class. | |||
2017-04-04 | [refactor] extracts tail logic into TruncatedTailPipe | Victor Shyba | |
2017-04-04 | [feature] use 409 status code for existing blob id | Victor Shyba | |
Raising was generating 500, which is a generic status code for server side errors. This commit adds proper status code of 409 while handling the error on client side by translating the code into a proper exception class. | |||
2017-04-04 | [refactor] simplify HTTPClient | Victor Shyba | |
2017-04-04 | [refactor] change size into a required parameter where it is necessary | Victor Shyba | |
2017-04-04 | [bug] copy returns a closed handle | Victor Shyba | |
copy call returns a closed file handler, instead we can query for the blob after insertion and use the returned file handle to be consumed for upload. A better solution would be to "pipe" the writes into the database into the upload, but that involves solving a larger set of issues to be done later. | |||
2017-04-04 | [feature] adds a close method for local blobs store | Victor Shyba | |
2017-04-04 | [feature] improve error messages on preamble check | Victor Shyba | |
2017-04-04 | [bug] check status code on upload | Victor Shyba | |
2017-04-04 | [feat] use pinned token agent in client blobs | drebs | |
2017-04-04 | [feature] add a treq-based http client to soledad client | drebs | |
2017-04-04 | [feature] add a tls-pinned, token-authenticated http agent | drebs | |
2017-04-04 | [feat] add token auth to blobs client | drebs | |
2017-04-04 | [doc] remove excessive signal doc from client api | drebs | |
2017-04-04 | [feat] improve blobs standalone testing options | drebs | |
2017-04-04 | [test] BlobManager encrypt test | Victor Shyba | |
2017-04-04 | [feature] unarmored incremental blobs decrypt | Victor Shyba | |
2017-04-04 | [feature] send tag header from server | Victor Shyba | |
2017-04-04 | [feature] incremental decrypter | Victor Shyba | |
2017-04-04 | [feature] ascii armor disable option | Victor Shyba | |