slouch/scripts/attachment.js
urdeveloper 21c73ffb26 Encode database names and document Ids used n Urls (#55)
* Encode database names and document Ids used n Urls

* Encode viewDocId as well and add the corresponding test cases.

* Fix jshint errors
2017-12-06 16:44:06 -08:00

54 lines
1.4 KiB
JavaScript

'use strict';
var Attachment = function (slouch) {
this._slouch = slouch;
};
// TODO
// Attachment.prototype.create = function (dbName, docId, attachmentName, data, contentType, rev) {
// var formData = {
// custom_file: {
// value: data,
// options: {
// filename: attachmentName,
// contentType: contentType
// }
// }
// };
//
// return this._slouch._req({
// uri: this._slouch._url + '/' + dbName + '/' + docId + '/' + attachmentName +
// '?rev=' + encodeURIComponent(rev),
// method: 'PUT',
// // raw: true,
// // encoding: null,
// formData: formData
// }).then(function (response) {
// return response.body;
// });
// };
Attachment.prototype.get = function (dbName, docId, attachmentName) {
return this._slouch._req({
uri: this._slouch._url + '/' + encodeURIComponent(dbName) + '/' + encodeURIComponent(
docId) + '/' + encodeURIComponent(attachmentName),
method: 'GET',
raw: true,
encoding: null
}).then(function (response) {
return response.body;
});
};
Attachment.prototype.destroy = function (dbName, docId, attachmentName, rev) {
return this._slouch._req({
uri: this._slouch._url + '/' + encodeURIComponent(dbName) + '/' + encodeURIComponent(
docId) + '/' + encodeURIComponent(attachmentName),
method: 'DELETE',
qs: {
rev: rev
}
});
};
module.exports = Attachment;