-
Notifications
You must be signed in to change notification settings - Fork 31
Add a replication route #94
Comments
+1 for that feature request. One more use case: write client-only apps based on Pouch that syncs with the Couch. |
@frankrousseau this is already possible through the device API and wont be possible using this approach. To put it simply, it is already possible to replicate to & from the cozy's couchdb if the replication is managed from the outside (see cozy-mobile & cozy-desktop) So from my point of view, it would make more sense for this to be an API of the DS rather than the proxy. So a cozy app could say : "OK cozy, do a replication to/from this remote" (where the remote could be another cozy). Of course @Gara64 , this depends of the architecture of the solution (ie. is there an app in the cozy ?). |
@aenario I don't think. There is an authentication process specific to devices that allows it. For an app, it would mean to register as a device. I agree it should be part of the DS to manage properly authentication and filters. |
Yes that would definitely be better as an API in the DS. However in a first step, maybe it would be simplier and faster to do it in the proxy? |
For now it is not possible for an app to request its proxy for a replication with a remote target.
External clients like cozy-desktop or cozy-mobile can request a replication on a local database, e.g. PouchDB and establish the sync with cozy through the device interface. But a cozy app cannot access the CouchDB replication.
Adding a replication route would enable at least 2 things :
_ the possibility for an app to share data with a remote cozy
_ the possibility to create backup apps
The proxy should check that the request is correctly authenticated before routing the request to CouchDB. The remote authentication on the other hand is probably an other issue (User/Sharer doctype with specific rights?).
The text was updated successfully, but these errors were encountered: