// Licensed under the Apache License, Version 2.0 (the "License"); you may not // use this file except in compliance with the License. You may obtain a copy // of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the // License for the specific language governing permissions and limitations under // the License. // A simple class to represent a database. Uses XMLHttpRequest to interface with // the CouchDB server. function CouchDB(name) { this.name = name this.uri = "/" + encodeURIComponent(name) + "/"; request = CouchDB.request; // Creates the database on the server this.createDb = function() { var req = request("PUT", this.uri); var result = JSON.parse(req.responseText); if (req.status != 201) throw result; return result; } // Deletes the database on the server this.deleteDb = function() { var req = request("DELETE", this.uri); if (req.status == 404) return false; var result = JSON.parse(req.responseText); if (req.status != 200) throw result; return result; } // Save a document to the database this.save = function(doc, options) { var req; if (doc._id == undefined) doc._id = CouchDB.newUuids(1)[0]; req = request("PUT", this.uri + encodeURIComponent(doc._id) + encodeOptions(options), { body: JSON.stringify(doc) }); var result = JSON.parse(req.responseText); if (req.status != 201) throw result; doc._rev = result.rev; return result; } // Open a document from the database this.open = function(docId, options) { var req = request("GET", this.uri + encodeURIComponent(docId) + encodeOptions(options)); if (req.status == 404) return null; var result = JSON.parse(req.responseText); if (req.status != 200) throw result; return result; } // Deletes a document from the database this.deleteDoc = function(doc) { var req = request("DELETE", this.uri + encodeURIComponent(doc._id) + "?rev=" + doc._rev); var result = JSON.parse(req.responseText); if (req.status != 200) throw result; doc._rev = result.rev; //record rev in input document doc._deleted = true; return result; } // Deletes an attachment from a document this.deleteDocAttachment = function(doc, attachment_name) { var req = request("DELETE", this.uri + encodeURIComponent(doc._id) + "/" + attachment_name + "?rev=" + doc._rev); var result = JSON.parse(req.responseText); if (req.status != 200) throw result; doc._rev = result.rev; //record rev in input document return result; } this.bulkSave = function(docs, options) { // first prepoulate the UUIDs for new documents var newCount = 0 for (var i=0; i= n) { var uuids = CouchDB.uuids_cache.slice(CouchDB.uuids_cache.length - n); if(CouchDB.uuids_cache.length - n == 0) { CouchDB.uuids_cache = []; } else { CouchDB.uuids_cache = CouchDB.uuids_cache.slice(0, CouchDB.uuids_cache.length - n); } return uuids; } else { var req = CouchDB.request("POST", "/_uuids?count=" + (100 + n)); var result = JSON.parse(req.responseText); if (req.status != 200) throw result; CouchDB.uuids_cache = CouchDB.uuids_cache.concat(result.uuids.slice(0, 100)); return result.uuids.slice(100); } }