2020-04-08 12:18:30 +02:00
|
|
|
const couchdb = require("../../db");
|
|
|
|
|
2020-04-09 17:53:48 +02:00
|
|
|
exports.create = async function(ctx) {
|
|
|
|
const clientId = `client-${ctx.request.body.clientId}`;
|
|
|
|
await couchdb.db.create(clientId);
|
2020-04-08 17:57:27 +02:00
|
|
|
|
2020-04-09 17:53:48 +02:00
|
|
|
await couchdb.db.use(clientId).insert({
|
|
|
|
views: {
|
|
|
|
by_type: {
|
|
|
|
map: function(doc) {
|
|
|
|
emit([doc.type], doc._id);
|
2020-04-08 17:57:27 +02:00
|
|
|
}
|
2020-04-09 17:53:48 +02:00
|
|
|
}
|
2020-04-08 17:57:27 +02:00
|
|
|
}
|
2020-04-09 17:53:48 +02:00
|
|
|
}, '_design/client');
|
|
|
|
ctx.body = {
|
|
|
|
message: `Client Database ${clientId} successfully provisioned.`
|
|
|
|
}
|
|
|
|
};
|
2020-04-08 12:18:30 +02:00
|
|
|
|
2020-04-09 17:53:48 +02:00
|
|
|
exports.destroy = async function(ctx) {
|
2020-04-10 12:18:15 +02:00
|
|
|
const dbId = `client-${ctx.params.clientId}`;
|
|
|
|
await couchdb.db.destroy(dbId);
|
|
|
|
ctx.body = {
|
|
|
|
status: 200,
|
|
|
|
message: `Client Database ${dbId} successfully deleted.`
|
|
|
|
}
|
2020-04-09 17:53:48 +02:00
|
|
|
};
|