budibase/packages/server/api/controllers/client.js

36 lines
763 B
JavaScript
Raw Normal View History

const CouchDB = require("../../db");
exports.getClientId = async function(ctx) {
ctx.body = process.env.CLIENT_ID;
};
2020-04-09 17:53:48 +02:00
exports.create = async function(ctx) {
const clientId = `client-${ctx.request.body.clientId}`;
const db = new CouchDB(clientId);
2020-04-08 17:57:27 +02:00
await db.put({
_id: "_design/client",
2020-04-09 17:53:48 +02:00
views: {
by_type: {
map: function(doc) {
emit([doc.type], doc._id);
2020-04-24 19:02:51 +02:00
}.toString()
2020-04-09 17:53:48 +02:00
}
2020-04-08 17:57:27 +02:00
}
});
2020-04-09 17:53:48 +02:00
ctx.body = {
message: `Client Database ${clientId} successfully provisioned.`
}
};
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}`;
2020-04-24 18:28:32 +02:00
await new CouchDB(dbId).destroy();
2020-04-10 12:18:15 +02:00
ctx.body = {
status: 200,
message: `Client Database ${dbId} successfully deleted.`
}
2020-04-09 17:53:48 +02:00
};