1
0
Fork 0
mirror of synced 2024-09-19 18:59:06 +12:00
budibase/packages/server/src/api/controllers/client.js

37 lines
751 B
JavaScript
Raw Normal View History

2020-05-07 21:53:34 +12:00
const CouchDB = require("../../db")
exports.getClientId = async function(ctx) {
2020-05-07 21:53:34 +12:00
ctx.body = process.env.CLIENT_ID
}
2020-04-10 03:53:48 +12:00
exports.create = async function(ctx) {
2020-05-07 21:53:34 +12:00
const clientId = `client-${ctx.request.body.clientId}`
const db = new CouchDB(clientId)
2020-04-09 03:57:27 +12:00
await db.put({
_id: "_design/client",
2020-05-07 21:53:34 +12:00
views: {
by_type: {
map: function(doc) {
emit([doc.type], doc._id)
}.toString(),
},
},
})
2020-04-10 03:53:48 +12:00
ctx.body = {
2020-05-07 21:53:34 +12:00
message: `Client Database ${clientId} successfully provisioned.`,
2020-04-10 03:53:48 +12:00
}
2020-05-07 21:53:34 +12:00
}
2020-04-10 03:53:48 +12:00
exports.destroy = async function(ctx) {
2020-05-07 21:53:34 +12:00
const dbId = `client-${ctx.params.clientId}`
2020-05-07 21:53:34 +12:00
await new CouchDB(dbId).destroy()
2020-04-10 22:18:15 +12:00
ctx.body = {
status: 200,
2020-05-07 21:53:34 +12:00
message: `Client Database ${dbId} successfully deleted.`,
2020-04-10 22:18:15 +12:00
}
2020-05-07 21:53:34 +12:00
}