Commit 449a68ae authored by Tristan Cavelier's avatar Tristan Cavelier

replicatestorage some commands added

Commands: post, put, get, remove, putAttachment, getAttachment, removeAttachment
and allDocs
parent 0e50ac01
......@@ -834,23 +834,109 @@
// JIO Commands
/**
* Post a document to all sub storages, returns the first received.
* A generic command to just delegate the commands to the sub storages and
* end.
*
* @method post
* @param {String} method The JIO method
* @param {Command} command The JIO command
*/
that.post = function (command) {
that.delegateToSubStorage = function (method, command) {
that.sendToAllAndGetFirstResolved(
'post',
method,
command.cloneDoc(),
command.cloneOption()
).done(that.success).fail(function (err) {
err.message = "Unable to post";
err.message = "Unable to " + method;
that.error(err);
});
that.end();
};
/**
* Post a document to all sub storages, returns the first received response.
*
* @method post
* @param {Command} command The JIO command
*/
that.post = function (command) {
that.delegateToSubStorage('post', command);
};
/**
* Put a document to all sub storages, returns the first received response.
*
* @method put
* @param {Command} command The JIO command
*/
that.put = function (command) {
that.delegateToSubStorage('put', command);
};
/**
* Get a document from one of the sub storages, returns the first received.
*
* @method get
* @param {Command} command The JIO command
*/
that.get = function (command) {
that.delegateToSubStorage('get', command);
};
/**
* Remove a document from all the sub storages, returns the first received
* response.
*
* @method remove
* @param {Command} command The JIO command
*/
that.remove = function (command) {
that.delegateToSubStorage('remove', command);
};
/**
* Put an attachment to all the sub storages, returns the first received
* response.
*
* @method putAttachment
* @param {Command} command The JIO command
*/
that.putAttachment = function (command) {
that.delegateToSubStorage('putAttachment', command);
};
/**
* Get an attachment from one of the sub storages, returns the first
* received.
*
* @method getAttachment
* @param {Command} command The JIO command
*/
that.getAttachment = function (command) {
that.delegateToSubStorage('getAttachment', command);
};
/**
* Remove an attachment from all the sub storages, returns the first
* received response.
*
* @method removeAttachment
* @param {Command} command The JIO command
*/
that.removeAttachment = function (command) {
that.delegateToSubStorage('removeAttachment', command);
};
/**
* Retrieve a list of document from all the sub storages, returns the first
* received response.
*
* @method allDocs
* @param {Command} command The JIO command
*/
that.allDocs = function (command) {
that.delegateToSubStorage('allDocs', command);
};
return that;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment