1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00
budibase/packages/server/middleware/controllers/client.js

31 lines
682 B
JavaScript
Raw Normal View History

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