summaryrefslogtreecommitdiff
path: root/client
AgeCommit message (Collapse)Author
2015-02-11add soledad sync exampleKali Kaneko
2015-02-11working sync-threadpoolKali Kaneko
* Completed mapping of async dbpool * Fixed shared db initialization. Stuff To Be Fixed yet: [ ] All inserts have to be done from the sync threadpool. Right now we're reusing the connection from multiple threads in the syncer. I'm assuming the writes are automatically locking the file at the sqlite level, so this shouldn't pose a problem. [ ] Correctly handle the multiprocessing pool, and the callback execution.
2015-02-11Adapt sqlcipher tests to new api.drebs
2015-02-11Separate soledad interfacesKali Kaneko
* Separate local storage, syncers and shared_db * Comment out unused need_sync method * Use twisted LoopingCall * Create a threadpool for syncs * Return deferred from sync method * Do not pass crypto to SQLCipherDatabase * Pass replica_uid to u1db_syncer * Rename / reorganize some initialization methods
2015-02-11Refactor soledad api to use async dbKali Kaneko
* add examples and benchmarks * remove autocommit mode, allow wal disabling * lock initialization * make api use async calls
2015-02-11move public api to its own fileKali Kaneko
2015-02-11reorganize pragmas, stub SQLCipherOptions objectKali Kaneko
2015-02-11use max cpu_count workers on poolKali Kaneko
2015-02-11remove taskthread dependencyKali Kaneko
2015-02-11remove unused importsKali Kaneko
2014-12-09Fix incorrect ssl context setupKali Kaneko
The changes introduced in aafa79c0f5 having to do with the cert verification are incorrect, regarding the use of the newest ssl context api introduced in python 2.7.9. There the use of the server setup was taken, instead of the correct client options. I hereby apologize for the insuficient testing on that fix. It happens that I wrongly tested in an evironment that did the fallback to pre-2.7.9 interpreter.
2014-12-08Add encryption scheme, method and iv to symmetrically encrypted document MAC ↵drebs
(#6400).
2014-12-05Refactor client crypto for better code readability.drebs
2014-12-04fix ssl negotiationKali Kaneko
since ssl.SSLContext does not exist prior to python 2.7.9
2014-12-03Use SSL negotiation.Kali Kaneko
Although the API can be misleading, PROTOCOL_SSLv23 selects the highest protocol version that both the client and server support. Despite the name, this option can select “TLS” protocols as well as “SSL”. In this way, we can use TLSv1.2 (PROTOCOL_TLSv1 will *only* give us TLS v1.0) In the client side, we try to disable SSLv2 and SSLv3 options explicitely. The python version in wheezy does not offer PROTOCOL_TLSv1_2 nor OP_NO_SSLv2 or OP_NO_SSLv3 (It's new in 2.7.9)
2014-11-27force tls v1 in soledad client. Partially fixes #6437Kali Kaneko
2014-11-27Fix pep8 style.drebs
2014-11-27Add changes file for #5855.drebs
2014-11-27If the client loses and restores it connection we must reset the u1db ↵Duda Dornelles
sync_target connection for it to be able to sync again
2014-10-07Bump version of dep on soledad.common.drebs
2014-09-29Wait for last post request to finish before starting a new one during sync ↵drebs
(#5975).
2014-09-16comments + pep8Kali Kaneko
2014-08-28Do not depend on pysqlite2 (#2945).drebs
2014-08-12Fix bits from pullreq review.drebs
2014-08-08Delete the received docs from sync db before starting a new sync.drebs
2014-08-08Protect sync db with a password.drebs
2014-08-08Add salt for sync sb key derivation.drebs
2014-08-08Store decrypted storage secret in memory.drebs
2014-08-08Add instructions for closing SQLCipher db on docstrings.drebs
2014-08-08Fix tests after many changes in client.drebs
2014-08-08Refactor secrets out of main soledad client class.drebs
2014-08-08Make sync database multiprocessing-safe.drebs
2014-08-08Avoid deadlocks when cancelling failed sync threads.drebs
2014-08-08Allow deferred decryption without deferred encryption.drebs
2014-08-08On sync, fetch all docs before decrypting.drebs
2014-08-08Store all received docs in sync db (#5895).drebs
2014-08-08Insert received docs in sync db after decryption (#5895).drebs
2014-08-08Store non-encrypted docs in the sync db (#5895).drebs
2014-08-01Add encrypted field to sync db (#5895).drebs
2014-08-01Add changes file (#5895).drebs
2014-07-18Fold in changesTomás Touceda
2014-07-10Fix recovery from failed sync.drebs
2014-07-09Close all connections after syncing (#5518).drebs
2014-07-08Stop syncers when closing soledad.drebs
2014-07-08Fix common exception handling gotchas.drebs
2014-07-08Add doc for syncers dictionary.drebs
2014-07-08Stop the target when exceptions occur.drebs
2014-07-08Fix sqlcipher db syncing property.drebs
2014-07-08Update target sync with sequential info (#5869).drebs
2014-07-03Properly stop sync and cancel threads on fail.drebs