27 lines
525 B
JavaScript
27 lines
525 B
JavaScript
const CouchDB = require("./client")
|
|
|
|
exports.create = async clientId => {
|
|
const dbId = exports.name(clientId)
|
|
const db = new CouchDB(dbId)
|
|
await db.put({
|
|
_id: "_design/client",
|
|
views: {
|
|
by_type: {
|
|
map: `function(doc) {
|
|
emit([doc.type], doc._id)
|
|
}`,
|
|
},
|
|
},
|
|
})
|
|
return db
|
|
}
|
|
|
|
exports.destroy = async function(clientId) {
|
|
const dbId = exports.name(clientId)
|
|
await new CouchDB(dbId).destroy()
|
|
}
|
|
|
|
exports.name = function(clientId) {
|
|
return `client_${clientId}`
|
|
}
|